pub trait LLMProvider:
ChatProvider
+ CompletionProvider
+ EmbeddingProvider
+ ModelsProvider
+ Send
+ Sync
+ 'static { }Expand description
Core trait that all LLM providers must implement, combining chat, completion and embedding capabilities into a unified interface