diff --git a/crates/common/src/configuration.rs b/crates/common/src/configuration.rs index 4b4162eb..93f4fd38 100644 --- a/crates/common/src/configuration.rs +++ b/crates/common/src/configuration.rs @@ -13,42 +13,11 @@ pub struct Routing { pub model: Option, } -#[derive(Debug, Clone, Serialize, Deserialize)] -pub struct Tool { - pub name: String, - pub protocol: String, - pub endpoint: String, -} - -#[derive(Debug, Clone, Serialize, Deserialize)] -pub struct Listener { - pub port: u16, - pub protocol: String, - pub path: String, -} - -#[derive(Debug, Clone, Serialize, Deserialize)] -pub struct Agent { - pub name: String, - pub description: Option, - pub instructions: Option, - pub tools: Vec, - pub listener: Listener, - pub model: String, -} - -#[derive(Debug, Clone, Serialize, Deserialize)] -pub struct LlmProviderV2 { - pub listener: Listener, - pub providers: Vec, -} - #[derive(Debug, Clone, Serialize, Deserialize)] pub struct Configuration { pub version: String, pub endpoints: Option>, pub llm_providers: Vec, - pub llm_providers_v2: Option>, pub overrides: Option, pub system_prompt: Option, pub prompt_guards: Option, @@ -58,7 +27,6 @@ pub struct Configuration { pub tracing: Option, pub mode: Option, pub routing: Option, - pub agents: Option, } #[derive(Debug, Clone, Serialize, Deserialize, Default)] diff --git a/demos/use_cases/travel_assistant/src/agents/flight_search_agent.py b/demos/use_cases/travel_assistant/src/agents/flight_search_agent.py deleted file mode 100644 index e69de29b..00000000 diff --git a/demos/use_cases/travel_assistant_uv/src/travel_assistant_uv/__init__.py b/demos/use_cases/travel_assistant_uv/src/travel_assistant_uv/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/demos/use_cases/travel_assistant_uv/weather.py b/demos/use_cases/travel_assistant_uv/weather.py deleted file mode 100644 index e69de29b..00000000