mirror of
https://github.com/katanemo/plano.git
synced 2026-06-23 15:38:07 +02:00
9 lines
149 B
Rust
9 lines
149 B
Rust
pub mod openai;
|
|
pub mod groq;
|
|
|
|
/// Supported LLM providers.
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
pub enum Provider {
|
|
Grok,
|
|
OpenAI,
|
|
}
|