LLMConfig

class LLMConfig(BaseModel)

Configuration for a Language Model (LLM) model. This object specifies all the information necessary to access an LLM model to usage with Letta, except for secret keys.

Attributes:

  • model str - The name of the LLM model.
  • model_endpoint_type str - The endpoint type for the model.
  • model_endpoint str - The endpoint for the model.
  • model_wrapper str - The wrapper for the model.
  • context_window int - The context window size for the model.