pub struct AgentProviderInfo {
pub organization: String,
pub url: String,
}Expand description
Information about the organization providing this agent.
This is metadata about the provider, not configuration for calling AI
providers. For AI provider configuration, see
crates/modules/ai/src/services/providers/provider_factory. rs::AiProviderConfig.
Fields§
§organization: String§url: StringTrait Implementations§
Source§impl Clone for AgentProviderInfo
impl Clone for AgentProviderInfo
Source§fn clone(&self) -> AgentProviderInfo
fn clone(&self) -> AgentProviderInfo
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 AgentProviderInfo
impl Debug for AgentProviderInfo
Source§impl<'de> Deserialize<'de> for AgentProviderInfo
impl<'de> Deserialize<'de> for AgentProviderInfo
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 AgentProviderInfo
impl RefUnwindSafe for AgentProviderInfo
impl Send for AgentProviderInfo
impl Sync for AgentProviderInfo
impl Unpin for AgentProviderInfo
impl UnwindSafe for AgentProviderInfo
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