View Source ExOpenAI.Components.ListFilesResponse (ex_openai.ex v2.0.0-beta2)
Module for representing the OpenAI schema ListFilesResponse.
Fields
:data- required -[ExOpenAI.Components.OpenAIFile.t()]:first_id- required -String.t():has_more- required -boolean():last_id- required -String.t():object- required -String.t()
Summary
Types
@type t() :: %ExOpenAI.Components.ListFilesResponse{ data: [ExOpenAI.Components.OpenAIFile.t()], first_id: String.t(), has_more: boolean(), last_id: String.t(), object: String.t() }