more changes

This commit is contained in:
Adil Hafeez 2025-03-13 18:05:58 -07:00
parent 1d314c8cb7
commit 2179b5a162
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
14 changed files with 467 additions and 56 deletions

View file

@ -160,7 +160,7 @@ pub struct LlmProvider {
pub name: String,
pub provider_interface: LlmProviderType,
pub access_key: Option<String>,
pub model: String,
pub model: Option<String>,
pub default: Option<bool>,
pub stream: Option<bool>,
pub endpoint: Option<String>,
@ -177,6 +177,7 @@ impl Display for LlmProvider {
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Endpoint {
pub endpoint: Option<String>,
pub agent_orchestrator: Option<bool>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]