pub struct LlmProviderInfo {
pub id: String,
pub description: String,
pub capabilities: Vec<String>,
}Expand description
Information about an available LLM provider.
Fields§
§id: StringThe model ID (e.g. "claude-3-5-sonnet-20241022").
description: StringHuman-readable description.
capabilities: Vec<String>Capabilities (e.g. ["text", "vision", "tools"]).
Trait Implementations§
Source§impl Clone for LlmProviderInfo
impl Clone for LlmProviderInfo
Source§fn clone(&self) -> LlmProviderInfo
fn clone(&self) -> LlmProviderInfo
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 LlmProviderInfo
impl Debug for LlmProviderInfo
Source§impl<'de> Deserialize<'de> for LlmProviderInfo
impl<'de> Deserialize<'de> for LlmProviderInfo
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 LlmProviderInfo
impl RefUnwindSafe for LlmProviderInfo
impl Send for LlmProviderInfo
impl Sync for LlmProviderInfo
impl Unpin for LlmProviderInfo
impl UnsafeUnpin for LlmProviderInfo
impl UnwindSafe for LlmProviderInfo
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