Current section

Files

Jump to
gpt_agent lib gpt_agent events run_completed.ex
Raw

lib/gpt_agent/events/run_completed.ex

defmodule GptAgent.Events.RunCompleted do
@moduledoc """
An OpenAI Assistants run was completed
"""
use TypedStruct
typedstruct do
field :id, binary(), enforce: true
field :thread_id, binary(), enforce: true
field :assistant_id, binary(), enforce: true
end
end