LettaAPI.Model.Source (letta_api v1.0.0)

Representation of a source, which is a collection of files and passages. Parameters: id (str): The ID of the source name (str): The name of the source. embedding_config (EmbeddingConfig): The embedding configuration used by the source. user_id (str): The ID of the user that created the source. metadata (dict): Metadata associated with the source. description (str): The description of the source.

Summary

Types

t()

@type t() :: %LettaAPI.Model.Source{
  created_at: DateTime.t() | nil,
  created_by_id: String.t() | nil,
  description: String.t() | nil,
  embedding_config: LettaAPI.Model.EmbeddingConfig.t(),
  id: String.t() | nil,
  last_updated_by_id: String.t() | nil,
  metadata: %{optional(String.t()) => any()} | nil,
  name: String.t(),
  organization_id: String.t() | nil,
  updated_at: DateTime.t() | nil
}

Functions

decode(value)