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

Action type "find_in_page": Searches for a pattern within a loaded page.

Fields

  • :pattern - required - String.t()
    The pattern or text to search for within the page.

  • :type - required - :find_in_page
    The action type.
    Allowed values: "find_in_page"

  • :url - required - String.t()
    The URL of the page searched for the pattern.
    Format: uri

Summary

Types

@type t() :: %ExOpenAI.Components.WebSearchActionFind{
  pattern: String.t(),
  type: :find_in_page,
  url: String.t()
}