Current section
Files
Jump to
Current section
Files
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