pub enum ProviderFamily {
OpenAI,
Anthropic,
Gemini,
Groq,
Cohere,
XAI,
DeepSeek,
Ollama,
Unknown,
}Expand description
Provider family for diagnostics and telemetry.
Does not affect extraction semantics — all providers go through the same normalization pipeline.
Variants§
Implementations§
Source§impl ProviderFamily
impl ProviderFamily
Sourcepub fn from_model_name(model: &str) -> Self
pub fn from_model_name(model: &str) -> Self
Classify a provider family from a model name string.
Uses prefix heuristics; returns Unknown when the model name does not
match any known pattern.
Trait Implementations§
Source§impl Clone for ProviderFamily
impl Clone for ProviderFamily
Source§fn clone(&self) -> ProviderFamily
fn clone(&self) -> ProviderFamily
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 ProviderFamily
impl Debug for ProviderFamily
Source§impl Display for ProviderFamily
impl Display for ProviderFamily
Source§impl PartialEq for ProviderFamily
impl PartialEq for ProviderFamily
impl Copy for ProviderFamily
impl Eq for ProviderFamily
impl StructuralPartialEq for ProviderFamily
Auto Trait Implementations§
impl Freeze for ProviderFamily
impl RefUnwindSafe for ProviderFamily
impl Send for ProviderFamily
impl Sync for ProviderFamily
impl Unpin for ProviderFamily
impl UnsafeUnpin for ProviderFamily
impl UnwindSafe for ProviderFamily
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.