orch 0.0.16

Language model orchestration library
Documentation
1
2
3
4
5
6
7
8
9
#![allow(dead_code)]

/// Convenience constants for the Anthropic models.
pub mod anthropic_model {
    pub const CLAUDE_3_5_SONNET: &str = "claude-3-5-sonnet-20240620";
    pub const CLAUDE_3_OPUS: &str = "claude-3-opus-20240229";
    pub const CLAUDE_3_SONNET: &str = "claude-3-sonnet-20240229";
    pub const CLAUDE_3_HAIKU: &str = "claude-3-haiku-20240307";
}