more pr feedback changes

This commit is contained in:
Adil Hafeez 2025-10-13 15:23:01 -07:00
parent e498b41e5b
commit 07bb26c1d9
6 changed files with 24 additions and 24 deletions

View file

@ -26,7 +26,7 @@ pub struct Agent {
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AgentPipeline {
pub struct AgentFilterChain {
pub id: String,
pub default: Option<bool>,
pub description: Option<String>,
@ -37,7 +37,7 @@ pub struct AgentPipeline {
pub struct Listener {
pub name: String,
pub router: Option<String>,
pub agents: Option<Vec<AgentPipeline>>,
pub agents: Option<Vec<AgentFilterChain>>,
pub port: u16,
}