rag-toolchain 0.1.9

is a Rust native library designed to empower developers with seamless access to common Gen AI workflows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(feature = "anthropic")]
mod anthropic_core;
#[cfg(feature = "anthropic")]
mod anthropic_messages;
#[cfg(feature = "anthropic")]
mod model;

#[cfg(feature = "anthropic")]
pub use anthropic_messages::AnthropicChatCompletionClient;

#[cfg(feature = "anthropic")]
pub use model::{chat_completions::AnthropicModel, errors::AnthropicError};