Understanding LLM providers and how they integrate with Agenite
LLMProvider
interface that connect your agents to specific large language model services. They translate the standardized Agenite messaging format into specific API calls and handle the response processing back into the Agenite format.
This provider abstraction allows your agents to:
LLMProvider
interface. This allows you to:
BaseLLMProvider
, you only need to implement the generate
and stream
methods - the iterate
method will be handled for you.