opi-ai 0.1.0

Unified multi-provider LLM API with streaming support
Documentation
1
2
3
4
5
6
7
8
9
10
//! Model discovery and configuration.

use crate::provider::ProviderKind;

#[derive(Debug, Clone)]
pub struct Model {
    pub id: String,
    pub provider: ProviderKind,
    pub context_window: u32,
}