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

A mouse move action.

Fields

  • :keys - optional - [String.t()] | any()

  • :type - required - :move
    Specifies the event type. For a move action, this property is always set to move.
    Allowed values: "move"
    Default: "move"

  • :x - required - integer()
    The x-coordinate to move to.

  • :y - required - integer()
    The y-coordinate to move to.

Summary

Types

@type t() :: %ExOpenAI.Components.MoveParam{
  keys: ([String.t()] | any()) | nil,
  type: :move,
  x: integer(),
  y: integer()
}