Packages

Elixir client library for the Letta AI API, providing comprehensive access to AI agent functionality including memory management, conversation handling, and tool integration.

Current section

Files

Jump to
letta_api lib letta_api model user_create.ex
Raw

lib/letta_api/model/user_create.ex

# NOTE: This file is auto generated by OpenAPI Generator 7.13.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule LettaAPI.Model.UserCreate do
@moduledoc """
"""
@derive JSON.Encoder
defstruct [
:name,
:organization_id
]
@type t :: %__MODULE__{
:name => String.t,
:organization_id => String.t
}
def decode(value) do
value
end
end