View Source ExOpenAI.Components.VectorStoreSearchResultContentObject (ex_openai.ex v2.0.0-beta2)

Module for representing the OpenAI schema VectorStoreSearchResultContentObject.

Fields

  • :text - required - String.t()
    The text content returned from search.

  • :type - required - :text
    The type of content.
    Allowed values: "text"

Summary

Types

@type t() :: %ExOpenAI.Components.VectorStoreSearchResultContentObject{
  text: String.t(),
  type: :text
}