LettaAPI.Model.EmbeddingConfig (letta_api v1.0.0)
Embedding model configuration. This object specifies all the information necessary to access an embedding model to usage with Letta, except for secret keys. Attributes: embedding_endpoint_type (str): The endpoint type for the model. embedding_endpoint (str): The endpoint for the model. embedding_model (str): The model for the embedding. embedding_dim (int): The dimension of the embedding. embedding_chunk_size (int): The chunk size of the embedding. azure_endpoint (:obj:str
, optional): The Azure endpoint for the model (Azure only). azure_version (str): The Azure version for the model (Azure only). azure_deployment (str): The Azure deployment for the model (Azure only).
Summary
Types
@type t() :: %LettaAPI.Model.EmbeddingConfig{ azure_deployment: String.t() | nil, azure_endpoint: String.t() | nil, azure_version: String.t() | nil, embedding_chunk_size: integer() | nil, embedding_dim: integer(), embedding_endpoint: String.t() | nil, embedding_endpoint_type: String.t(), embedding_model: String.t(), handle: String.t() | nil }