Current section
Files
Jump to
Current section
Files
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