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 update_reasoning_message.ex
Raw

lib/letta_api/model/update_reasoning_message.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.UpdateReasoningMessage do
@moduledoc """
"""
@derive JSON.Encoder
defstruct [
:reasoning,
:message_type
]
@type t :: %__MODULE__{
:reasoning => String.t,
:message_type => String.t | nil
}
def decode(value) do
value
end
end