Current section

Files

Jump to
llm_composer lib llm_composer function_call.ex
Raw

lib/llm_composer/function_call.ex

defmodule LlmComposer.FunctionCall do
@moduledoc """
Helper struct for function call actions.
"""
@type t() :: %__MODULE__{
arguments: binary(),
id: binary(),
metadata: map(),
name: binary,
result: term,
type: binary() | nil
}
defstruct [
:arguments,
:id,
:metadata,
:name,
:result,
:type
]
end