Current section

Files

Jump to
oapi_open_ai lib schemas thread tool_resources code_interpreter.ex
Raw

lib/schemas/thread/tool_resources/code_interpreter.ex

defmodule OpenAi.Thread.ToolResources.CodeInterpreter do
@moduledoc """
Provides struct and type for a Thread.ToolResources.CodeInterpreter
"""
@type t :: %__MODULE__{file_ids: [String.t()] | nil}
defstruct [:file_ids]
@doc false
@spec __fields__(atom) :: keyword
def __fields__(type \\ :t)
def __fields__(:t) do
[file_ids: [string: :generic]]
end
end