pub struct CustomAgentConfig {
pub name: String,
pub display_name: Option<String>,
pub description: Option<String>,
pub tools: Option<Vec<String>>,
pub prompt: String,
pub mcp_servers: Option<HashMap<String, McpServerConfig>>,
pub infer: Option<bool>,
}Expand description
Configuration for a custom agent.
Fields§
§name: String§display_name: Option<String>§description: Option<String>§tools: Option<Vec<String>>§prompt: String§mcp_servers: Option<HashMap<String, McpServerConfig>>§infer: Option<bool>Trait Implementations§
Source§impl Clone for CustomAgentConfig
impl Clone for CustomAgentConfig
Source§fn clone(&self) -> CustomAgentConfig
fn clone(&self) -> CustomAgentConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CustomAgentConfig
impl Debug for CustomAgentConfig
Source§impl<'de> Deserialize<'de> for CustomAgentConfig
impl<'de> Deserialize<'de> for CustomAgentConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CustomAgentConfig
impl RefUnwindSafe for CustomAgentConfig
impl Send for CustomAgentConfig
impl Sync for CustomAgentConfig
impl Unpin for CustomAgentConfig
impl UnwindSafe for CustomAgentConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more