> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mobilerun.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Task Trajectory

> Get the trajectory of a task.



## OpenAPI

````yaml /api-reference/tasks.yaml get /tasks/{task_id}/trajectory
openapi: 3.1.0
info:
  title: Tasks
  version: v1
servers:
  - url: https://api.mobilerun.ai
    description: Droidrun Cloud API
security:
  - bearerAuth: []
paths:
  /tasks/{task_id}/trajectory:
    get:
      tags:
        - Tasks
      summary: Get Task Trajectory
      description: Get the trajectory of a task.
      operationId: get_task_trajectory_tasks__task_id__trajectory_get
      parameters:
        - name: task_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Task Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskTrajectoryResponse'
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedResponse'
          description: Unauthorized
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Not Found
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unprocessable Content
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Internal Server Error
      x-codeSamples:
        - lang: JavaScript
          source: >-
            import Mobilerun from '@mobilerun/sdk';


            const client = new Mobilerun({
              apiKey: process.env['MOBILERUN_CLOUD_API_KEY'], // This is the default and can be omitted
            });


            const response = await
            client.tasks.getTrajectory('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');


            console.log(response.trajectory);
        - lang: Python
          source: |-
            import os
            from mobilerun_sdk import Mobilerun

            client = Mobilerun(
                api_key=os.environ.get("MOBILERUN_CLOUD_API_KEY"),  # This is the default and can be omitted
            )
            response = client.tasks.get_trajectory(
                "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
            )
            print(response.trajectory)
        - lang: Go
          source: "package main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\t\"github.com/stainless-sdks/droidrun-cloud-go\"\n\t\"github.com/stainless-sdks/droidrun-cloud-go/option\"\n)\n\nfunc main() {\n\tclient := mobileruncloud.NewClient(\n\t\toption.WithAPIKey(\"My API Key\"),\n\t)\n\tresponse, err := client.Tasks.GetTrajectory(context.TODO(), \"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e\")\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\tfmt.Printf(\"%+v\\n\", response.Trajectory)\n}\n"
        - lang: CLI
          source: |-
            mobilerun-cloud tasks get-trajectory \
              --api-key 'My API Key' \
              --task-id 182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e
components:
  schemas:
    TaskTrajectoryResponse:
      properties:
        trajectory:
          items:
            anyOf:
              - $ref: '#/components/schemas/TrajectoryQueuedEvent'
              - $ref: '#/components/schemas/TrajectoryCreatedEvent'
              - $ref: '#/components/schemas/TrajectoryExceptionEvent'
              - $ref: '#/components/schemas/TrajectoryCancelEvent'
              - $ref: '#/components/schemas/TrajectoryScreenshotEvent'
              - $ref: '#/components/schemas/TrajectoryStartEvent'
              - $ref: '#/components/schemas/TrajectoryFinalizeEvent'
              - $ref: '#/components/schemas/TrajectoryStopEvent'
              - $ref: '#/components/schemas/TrajectoryResultEvent'
              - $ref: '#/components/schemas/TrajectoryManagerInputEvent'
              - $ref: '#/components/schemas/TrajectoryManagerPlanEvent'
              - $ref: '#/components/schemas/TrajectoryExecutorInputEvent'
              - $ref: '#/components/schemas/TrajectoryExecutorResultEvent'
              - $ref: '#/components/schemas/TrajectoryFastAgentInputEvent'
              - $ref: '#/components/schemas/TrajectoryFastAgentResponseEvent'
              - $ref: '#/components/schemas/TrajectoryFastAgentToolCallEvent'
              - $ref: '#/components/schemas/TrajectoryFastAgentOutputEvent'
              - $ref: '#/components/schemas/TrajectoryFastAgentEndEvent'
              - $ref: '#/components/schemas/TrajectoryFastAgentExecuteEvent'
              - $ref: '#/components/schemas/TrajectoryFastAgentResultEvent'
              - $ref: '#/components/schemas/TrajectoryToolExecutionEvent'
              - $ref: '#/components/schemas/TrajectoryRecordUIStateEvent'
              - $ref: '#/components/schemas/TrajectoryManagerContextEvent'
              - $ref: '#/components/schemas/TrajectoryManagerResponseEvent'
              - $ref: '#/components/schemas/TrajectoryManagerPlanDetailsEvent'
              - $ref: '#/components/schemas/TrajectoryExecutorContextEvent'
              - $ref: '#/components/schemas/TrajectoryExecutorResponseEvent'
              - $ref: '#/components/schemas/TrajectoryExecutorActionEvent'
              - $ref: '#/components/schemas/TrajectoryExecutorActionResultEvent'
              - $ref: '#/components/schemas/TrajectoryUserMessageEvent'
              - $ref: '#/components/schemas/TrajectoryUnknownEvent'
          type: array
          title: Trajectory
          description: The trajectory of the task
      type: object
      required:
        - trajectory
      title: TaskTrajectoryResponse
    UnauthorizedResponse:
      properties:
        title:
          type: string
          title: Title
          description: The title of the error
          default: Unauthorized
        status:
          type: integer
          title: Status
          description: The status code of the error
          default: 401
        detail:
          type: string
          title: Detail
          description: The detail of the error
          default: You are not authorized to access this resource
        errors:
          items: {}
          type: array
          title: Errors
          description: The errors
          default: []
      type: object
      title: UnauthorizedResponse
    ErrorResponse:
      properties:
        title:
          type: string
          title: Title
          description: The title of the error
        status:
          type: integer
          title: Status
          description: The status code of the error
        detail:
          type: string
          title: Detail
          description: The detail of the error
        errors:
          items: {}
          type: array
          title: Errors
          description: The errors
      type: object
      required:
        - title
        - status
        - detail
        - errors
      title: ErrorResponse
    TrajectoryQueuedEvent:
      properties:
        event:
          type: string
          const: QueuedEvent
          title: Event
        data:
          $ref: '#/components/schemas/QueuedEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryQueuedEvent
    TrajectoryCreatedEvent:
      properties:
        event:
          type: string
          const: CreatedEvent
          title: Event
        data:
          $ref: '#/components/schemas/CreatedEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryCreatedEvent
    TrajectoryExceptionEvent:
      properties:
        event:
          type: string
          const: ExceptionEvent
          title: Event
        data:
          $ref: '#/components/schemas/ExceptionEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryExceptionEvent
    TrajectoryCancelEvent:
      properties:
        event:
          type: string
          const: CancelEvent
          title: Event
        data:
          $ref: '#/components/schemas/CancelEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryCancelEvent
    TrajectoryScreenshotEvent:
      properties:
        event:
          type: string
          const: ScreenshotEvent
          title: Event
        data:
          $ref: '#/components/schemas/ScreenshotEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryScreenshotEvent
    TrajectoryStartEvent:
      properties:
        event:
          type: string
          const: StartEvent
          title: Event
        data:
          $ref: '#/components/schemas/StartEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryStartEvent
    TrajectoryFinalizeEvent:
      properties:
        event:
          type: string
          const: FinalizeEvent
          title: Event
        data:
          $ref: '#/components/schemas/FinalizeEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryFinalizeEvent
    TrajectoryStopEvent:
      properties:
        event:
          type: string
          const: StopEvent
          title: Event
        data:
          $ref: '#/components/schemas/StopEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryStopEvent
    TrajectoryResultEvent:
      properties:
        event:
          type: string
          const: ResultEvent
          title: Event
        data:
          $ref: '#/components/schemas/TaskAPIResultEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryResultEvent
    TrajectoryManagerInputEvent:
      properties:
        event:
          type: string
          const: ManagerInputEvent
          title: Event
        data:
          $ref: '#/components/schemas/ManagerInputEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryManagerInputEvent
    TrajectoryManagerPlanEvent:
      properties:
        event:
          type: string
          const: ManagerPlanEvent
          title: Event
        data:
          $ref: '#/components/schemas/ManagerPlanEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryManagerPlanEvent
    TrajectoryExecutorInputEvent:
      properties:
        event:
          type: string
          const: ExecutorInputEvent
          title: Event
        data:
          $ref: '#/components/schemas/ExecutorInputEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryExecutorInputEvent
    TrajectoryExecutorResultEvent:
      properties:
        event:
          type: string
          const: ExecutorResultEvent
          title: Event
        data:
          $ref: '#/components/schemas/ExecutorResultEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryExecutorResultEvent
    TrajectoryFastAgentInputEvent:
      properties:
        event:
          type: string
          const: FastAgentInputEvent
          title: Event
        data:
          $ref: '#/components/schemas/FastAgentInputEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryFastAgentInputEvent
    TrajectoryFastAgentResponseEvent:
      properties:
        event:
          type: string
          const: FastAgentResponseEvent
          title: Event
        data:
          $ref: '#/components/schemas/FastAgentResponseEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryFastAgentResponseEvent
    TrajectoryFastAgentToolCallEvent:
      properties:
        event:
          type: string
          const: FastAgentToolCallEvent
          title: Event
        data:
          $ref: '#/components/schemas/FastAgentToolCallEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryFastAgentToolCallEvent
    TrajectoryFastAgentOutputEvent:
      properties:
        event:
          type: string
          const: FastAgentOutputEvent
          title: Event
        data:
          $ref: '#/components/schemas/FastAgentOutputEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryFastAgentOutputEvent
    TrajectoryFastAgentEndEvent:
      properties:
        event:
          type: string
          const: FastAgentEndEvent
          title: Event
        data:
          $ref: '#/components/schemas/FastAgentEndEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryFastAgentEndEvent
    TrajectoryFastAgentExecuteEvent:
      properties:
        event:
          type: string
          const: FastAgentExecuteEvent
          title: Event
        data:
          $ref: '#/components/schemas/FastAgentExecuteEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryFastAgentExecuteEvent
    TrajectoryFastAgentResultEvent:
      properties:
        event:
          type: string
          const: FastAgentResultEvent
          title: Event
        data:
          $ref: '#/components/schemas/FastAgentResultEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryFastAgentResultEvent
    TrajectoryToolExecutionEvent:
      properties:
        event:
          type: string
          const: ToolExecutionEvent
          title: Event
        data:
          $ref: '#/components/schemas/ToolExecutionEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryToolExecutionEvent
    TrajectoryRecordUIStateEvent:
      properties:
        event:
          type: string
          const: RecordUIStateEvent
          title: Event
        data:
          $ref: '#/components/schemas/RecordUIStateEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryRecordUIStateEvent
    TrajectoryManagerContextEvent:
      properties:
        event:
          type: string
          const: ManagerContextEvent
          title: Event
        data:
          $ref: '#/components/schemas/ManagerContextEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryManagerContextEvent
    TrajectoryManagerResponseEvent:
      properties:
        event:
          type: string
          const: ManagerResponseEvent
          title: Event
        data:
          $ref: '#/components/schemas/ManagerResponseEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryManagerResponseEvent
    TrajectoryManagerPlanDetailsEvent:
      properties:
        event:
          type: string
          const: ManagerPlanDetailsEvent
          title: Event
        data:
          $ref: '#/components/schemas/ManagerPlanDetailsEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryManagerPlanDetailsEvent
    TrajectoryExecutorContextEvent:
      properties:
        event:
          type: string
          const: ExecutorContextEvent
          title: Event
        data:
          $ref: '#/components/schemas/ExecutorContextEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryExecutorContextEvent
    TrajectoryExecutorResponseEvent:
      properties:
        event:
          type: string
          const: ExecutorResponseEvent
          title: Event
        data:
          $ref: '#/components/schemas/ExecutorResponseEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryExecutorResponseEvent
    TrajectoryExecutorActionEvent:
      properties:
        event:
          type: string
          const: ExecutorActionEvent
          title: Event
        data:
          $ref: '#/components/schemas/ExecutorActionEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryExecutorActionEvent
    TrajectoryExecutorActionResultEvent:
      properties:
        event:
          type: string
          const: ExecutorActionResultEvent
          title: Event
        data:
          $ref: '#/components/schemas/ExecutorActionResultEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryExecutorActionResultEvent
    TrajectoryUserMessageEvent:
      properties:
        event:
          type: string
          const: UserMessageEvent
          title: Event
        data:
          $ref: '#/components/schemas/UserMessageEvent'
      type: object
      required:
        - event
        - data
      title: TrajectoryUserMessageEvent
    TrajectoryUnknownEvent:
      properties:
        event:
          type: string
          title: Event
        data:
          additionalProperties: true
          type: object
          title: Data
          default: {}
      type: object
      required:
        - event
      title: TrajectoryUnknownEvent
    QueuedEvent:
      properties:
        id:
          type: string
          title: Id
        status:
          type: string
          title: Status
          default: queued
      type: object
      required:
        - id
      title: QueuedEvent
      description: Emitted to SSE clients when the task is waiting in the device queue.
    CreatedEvent:
      properties:
        id:
          type: string
          title: Id
        streamUrl:
          type: string
          title: Streamurl
      type: object
      required:
        - id
        - streamUrl
      title: CreatedEvent
    ExceptionEvent:
      properties:
        exception:
          type: string
          title: Exception
      type: object
      required:
        - exception
      title: ExceptionEvent
    CancelEvent:
      properties:
        reason:
          type: string
          title: Reason
      type: object
      required:
        - reason
      title: CancelEvent
    ScreenshotEvent:
      properties:
        url:
          type: string
          title: Url
        index:
          type: integer
          title: Index
      type: object
      required:
        - url
        - index
      title: ScreenshotEvent
    StartEvent:
      description: Implicit entry event sent to kick off a `Workflow.run()`.
      properties: {}
      title: StartEvent
      type: object
    FinalizeEvent:
      description: Trigger finalization.
      properties:
        success:
          title: Success
          type: boolean
        reason:
          type: string
          title: Reason
      required:
        - success
        - reason
      title: FinalizeEvent
      type: object
    StopEvent:
      description: >-
        Terminal event that signals the workflow has completed.


        The `result` property contains the return value of the workflow run.
        When a

        custom stop event subclass is used, the workflow result is that event

        instance itself.


        Examples:
            ```python
            # default stop event: result holds the value
            return StopEvent(result={"answer": 42})
            ```

            Subclassing to provide a custom result:

            ```python
            class MyStopEv(StopEvent):
                pass

            @step
            async def my_step(self, ctx: Context, ev: StartEvent) -> MyStopEv:
                return MyStopEv(result={"answer": 42})
      properties: {}
      title: StopEvent
      type: object
    TaskAPIResultEvent:
      properties:
        success:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Success
        message:
          anyOf:
            - type: string
            - type: 'null'
          title: Message
        structured_output:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Structured Output
        steps:
          anyOf:
            - type: integer
            - type: 'null'
          title: Steps
      type: object
      title: TaskAPIResultEvent
      description: |-
        Lazy wrapper — avoids importing droidrun at module level.

        The worker uses droidrun's ResultEvent directly; this model only
        exists so the API OpenAPI schema can reference it without the heavy
        droidrun import.
    ManagerInputEvent:
      description: Trigger Manager workflow for planning
      properties: {}
      title: ManagerInputEvent
      type: object
    ManagerPlanEvent:
      description: >-
        Coordination event from ManagerAgent to MobileAgent.


        Used for workflow step routing only (NOT streamed to frontend).

        For internal events with memory_update metadata, see
        ManagerPlanDetailsEvent.
      properties:
        plan:
          title: Plan
          type: string
        current_subgoal:
          title: Current Subgoal
          type: string
        thought:
          title: Thought
          type: string
        answer:
          default: ''
          title: Answer
          type: string
        success:
          anyOf:
            - type: boolean
            - type: 'null'
          default: null
          title: Success
      required:
        - plan
        - current_subgoal
        - thought
      title: ManagerPlanEvent
      type: object
    ExecutorInputEvent:
      description: Trigger Executor workflow for action execution
      properties:
        current_subgoal:
          title: Current Subgoal
          type: string
      required:
        - current_subgoal
      title: ExecutorInputEvent
      type: object
    ExecutorResultEvent:
      description: Executor finished with action result.
      properties:
        action:
          additionalProperties: true
          title: Action
          type: object
        outcome:
          title: Outcome
          type: boolean
        error:
          title: Error
          type: string
        summary:
          title: Summary
          type: string
      required:
        - action
        - outcome
        - error
        - summary
      title: ExecutorResultEvent
      type: object
    FastAgentInputEvent:
      description: Input ready for LLM.
      properties: {}
      title: FastAgentInputEvent
      type: object
    FastAgentResponseEvent:
      description: LLM response received.
      properties:
        thought:
          title: Thought
          type: string
        code:
          anyOf:
            - type: string
            - type: 'null'
          default: null
          title: Code
        usage:
          anyOf:
            - $ref: '#/components/schemas/UsageResult'
            - type: 'null'
          default: null
      required:
        - thought
      title: FastAgentResponseEvent
      type: object
    FastAgentToolCallEvent:
      description: Tool calls ready to execute.
      properties:
        tool_calls_repr:
          title: Tool Calls Repr
          type: string
      required:
        - tool_calls_repr
      title: FastAgentToolCallEvent
      type: object
    FastAgentOutputEvent:
      description: Tool execution result.
      properties:
        output:
          title: Output
          type: string
      required:
        - output
      title: FastAgentOutputEvent
      type: object
    FastAgentEndEvent:
      description: FastAgent finished.
      properties:
        success:
          title: Success
          type: boolean
        reason:
          type: string
          title: Reason
        tool_call_count:
          default: 0
          title: Tool Call Count
          type: integer
      required:
        - success
        - reason
      title: FastAgentEndEvent
      type: object
    FastAgentExecuteEvent:
      properties:
        instruction:
          title: Instruction
          type: string
      required:
        - instruction
      title: FastAgentExecuteEvent
      type: object
    FastAgentResultEvent:
      properties:
        success:
          title: Success
          type: boolean
        reason:
          type: string
          title: Reason
        instruction:
          title: Instruction
          type: string
      required:
        - success
        - reason
        - instruction
      title: FastAgentResultEvent
      type: object
    ToolExecutionEvent:
      description: Emitted after every tool call dispatched through ToolRegistry.
      properties:
        tool_name:
          title: Tool Name
          type: string
        tool_args:
          additionalProperties: true
          title: Tool Args
          type: object
        success:
          title: Success
          type: boolean
        summary:
          title: Summary
          type: string
      required:
        - tool_name
        - tool_args
        - success
        - summary
      title: ToolExecutionEvent
      type: object
    RecordUIStateEvent:
      properties:
        url:
          type: string
          title: Url
        index:
          type: integer
          title: Index
      type: object
      required:
        - url
        - index
      title: RecordUIStateEvent
    ManagerContextEvent:
      description: Context prepared, ready for LLM call.
      properties: {}
      title: ManagerContextEvent
      type: object
    ManagerResponseEvent:
      description: LLM response received, ready for parsing.
      properties:
        response:
          title: Response
          type: string
        usage:
          anyOf:
            - $ref: '#/components/schemas/UsageResult'
            - type: 'null'
          default: null
      required:
        - response
      title: ManagerResponseEvent
      type: object
    ManagerPlanDetailsEvent:
      description: Plan parsed and ready (internal event with full details).
      properties:
        plan:
          title: Plan
          type: string
        subgoal:
          title: Subgoal
          type: string
        thought:
          title: Thought
          type: string
        answer:
          default: ''
          title: Answer
          type: string
        memory_update:
          default: ''
          title: Memory Update
          type: string
        progress_summary:
          default: ''
          title: Progress Summary
          type: string
        success:
          anyOf:
            - type: boolean
            - type: 'null'
          default: null
          title: Success
        full_response:
          default: ''
          title: Full Response
          type: string
      required:
        - plan
        - subgoal
        - thought
      title: ManagerPlanDetailsEvent
      type: object
    ExecutorContextEvent:
      description: Context prepared, ready for LLM call.
      properties:
        subgoal:
          title: Subgoal
          type: string
      required:
        - subgoal
      title: ExecutorContextEvent
      type: object
    ExecutorResponseEvent:
      description: LLM response received, ready for parsing.
      properties:
        response:
          title: Response
          type: string
        usage:
          anyOf:
            - $ref: '#/components/schemas/UsageResult'
            - type: 'null'
          default: null
      required:
        - response
      title: ExecutorResponseEvent
      type: object
    ExecutorActionEvent:
      description: Action parsed, ready to execute.
      properties:
        action_json:
          title: Action Json
          type: string
        thought:
          title: Thought
          type: string
        description:
          title: Description
          type: string
        full_response:
          default: ''
          title: Full Response
          type: string
      required:
        - action_json
        - thought
        - description
      title: ExecutorActionEvent
      type: object
    ExecutorActionResultEvent:
      description: Action execution result (internal event with full details).
      properties:
        action:
          additionalProperties: true
          title: Action
          type: object
        success:
          title: Success
          type: boolean
        error:
          title: Error
          type: string
        summary:
          title: Summary
          type: string
        thought:
          default: ''
          title: Thought
          type: string
        full_response:
          default: ''
          title: Full Response
          type: string
      required:
        - action
        - success
        - error
        - summary
      title: ExecutorActionResultEvent
      type: object
    UserMessageEvent:
      properties:
        action:
          type: string
          title: Action
        message_ids:
          items:
            type: string
          type: array
          title: Message Ids
        consumer:
          anyOf:
            - type: string
            - type: 'null'
          title: Consumer
        reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Reason
        step_number:
          anyOf:
            - type: integer
            - type: 'null'
          title: Step Number
      type: object
      required:
        - action
        - message_ids
      title: UserMessageEvent
      description: >-
        Tracks the lifecycle of an external user message: queued → applied |
        dropped.
    UsageResult:
      properties:
        request_tokens:
          type: integer
          title: Request Tokens
        response_tokens:
          type: integer
          title: Response Tokens
        total_tokens:
          type: integer
          title: Total Tokens
        requests:
          type: integer
          title: Requests
      type: object
      required:
        - request_tokens
        - response_tokens
        - total_tokens
        - requests
      title: UsageResult
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Opaque
      description: Bearer token via Authorization header

````