Toolnexus.Translate.ToolCall (toolnexus v0.12.0)

Copy Markdown View Source

One tool call the model asked for, in OpenAI shape (§11).

  • :id — the tool-call id the caller must echo on its tool result message
  • :name — the function name
  • :arguments — arguments as a JSON string, the OpenAI wire form, echoable byte-for-byte

Summary

Types

t()

@type t() :: %Toolnexus.Translate.ToolCall{
  arguments: String.t(),
  id: String.t(),
  name: String.t()
}