OpenaiEx.Beta.Threads.Runs (openai_ex v0.9.4)
View SourceThis module provides an implementation of the OpenAI run API. The API reference can be found at https://platform.openai.com/docs/api-reference/runs.
Summary
Functions
Calls the run create endpoint.
Returns a list of runs objects.
Creates a new run request
Creates a new list runs request
Calls the run retrieve endpoint.
Calls the run update endpoint.
Functions
Calls the run create endpoint.
See https://platform.openai.com/docs/api-reference/runs/createRun for more information.
Returns a list of runs objects.
https://platform.openai.com/docs/api-reference/runs/listRuns
Creates a new run request
Example usage:
iex> _request = OpenaiEx.Beta.Threads.Runs.new(thread_id: "thread_foo", assistant_id: "assistant_bar")
%{assistant_id: "assistant_bar", thread_id: "thread_foo"}
Creates a new list runs request
Calls the run retrieve endpoint.
Calls the run update endpoint.
See https://platform.openai.com/docs/api-reference/assistants/modifyAssistant for more information.