mentra 0.6.0

An agent runtime for tool-using LLM applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod client;
mod credential;
mod store;

pub use client::{
    DEFAULT_AUTH_URL, DEFAULT_CLIENT_ID, DEFAULT_SCOPE, DEFAULT_TOKEN_URL, OpenAIOAuthClient,
    OpenAIOAuthError, OpenAITokenSet, PendingAuthorization,
};
pub use credential::OpenAIOAuthCredentialSource;
pub use store::{
    FileTokenStore, KeychainTokenStore, MemoryTokenStore, PersistentTokenStoreKind, TokenStore,
    persistent_token_store, selected_store_kind,
};