Crates.io | anthropic |
lib.rs | anthropic |
version | 0.0.8 |
source | src |
created_at | 2023-05-15 15:54:09.397767 |
updated_at | 2024-09-03 10:55:22.366153 |
description | Anthropic Rust SDK. |
homepage | https://github.com/abdelhamidbakhta/anthropic-rs |
repository | https://github.com/abdelhamidbakhta/antrhopic-rs |
max_upload_size | |
id | 865156 |
size | 35,045 |
anthropic-rs
is an unofficial Rust library to interact with Anthropic REST API, with async support.
Wanna play with Claude in Rust? This is the place to be!
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
// Load the environment variables from the .env file.
dotenv().ok();
// Build from configuration.
let cfg = AnthropicConfig::new()?;
let client = Client::try_from(cfg)?;
let complete_request = CompleteRequestBuilder::default()
.prompt(format!("{HUMAN_PROMPT}How many toes do dogs have?{AI_PROMPT}"))
.model("claude-instant-1".to_string())
.stream_response(false)
.stop_sequences(vec![HUMAN_PROMPT.to_string()])
.build()?;
// Send a completion request.
let complete_response = client.complete(complete_request).await?;
println!("completion response: {complete_response:?}");
Ok(())
}
You can find full working examples in the examples directory.
anthropic-rs uses dotenv
to automatically load environment variables from a .env
file. You can also set these variables manually in your environment. Here is an example of the configuration variables used:
ANTHROPIC_API_KEY="..."
ANTHROPIC_DEFAULT_MODEL="claude-v1"
Replace the "..." with your actual tokens and preferences.
You can also set these variables manually when you crate a new Client
instance, see more details in usage section.
/v1/complete
)Contributions to anthropic-rs
are welcomed! Feel free to submit a pull request or create an issue.
anthropic-rs is licensed under the MIT License.