Skip to content

Llm manager

LLMManager

Bases: ComponentManagerBase

The LLMManager class, which is used to manage the LLMs.

Source code in agentuniverse/llm/llm_manager.py
Python
@singleton
class LLMManager(ComponentManagerBase):
    """The LLMManager class, which is used to manage the LLMs."""

    def __init__(self):
        """Initialize the LLMManager."""
        super().__init__(ComponentEnum.LLM)

__init__()

Initialize the LLMManager.

Source code in agentuniverse/llm/llm_manager.py
Python
def __init__(self):
    """Initialize the LLMManager."""
    super().__init__(ComponentEnum.LLM)