View Source ExOpenAI.Components.FunctionShellCallOutputExitOutcome (ex_openai.ex v2.0.0-beta2)

Indicates that the shell commands finished and returned an exit code.

Fields

  • :exit_code - required - integer()
    Exit code from the shell process.

  • :type - required - :exit
    The outcome type. Always exit.
    Allowed values: "exit"
    Default: "exit"

Summary

Types

@type t() :: %ExOpenAI.Components.FunctionShellCallOutputExitOutcome{
  exit_code: integer(),
  type: :exit
}