Skip to content

[BOT ISSUE] OpenAI: add missing computer-use-preview model #563

@github-actions

Description

@github-actions

Gap

The OpenAI computer-use-preview model is missing from packages/proxy/schema/model_list.json. This is a specialized model for the computer-use tool available on OpenAI's public API with standard per-token pricing.

The catalog already includes other specialized OpenAI models (realtime, TTS, transcription, moderation, image generation), so this model fits the existing catalog scope. The older snapshot computer-use-preview-2025-03-11 is deprecated; only the base alias computer-use-preview should be added.

Verified fields

Field Value Source
Model ID computer-use-preview Model page
Format openai Catalog convention for OpenAI models
Flavor chat Catalog convention
Multimodal true Model page (text + image input)
Input cost (per 1M tokens) $3.00 Model page
Output cost (per 1M tokens) $12.00 Model page
Max input tokens 8,192 Model page
Max output tokens 1,024 Model page
Available providers ["openai"] Model page (no Azure availability confirmed)

Verification note

  • Model existence: Confirmed on the OpenAI models listing and the dedicated model page (two independent official signals).
  • Pricing: Standard on-demand pricing of $3.00/$12.00 per 1M tokens confirmed on the model detail page. The OpenAI pricing page lists batch pricing at $1.50/$6.00 (50% of standard), consistent with the $3/$12 standard rate.
  • Token limits: 8,192 context / 1,024 max output confirmed on the model detail page.
  • displayName: Not published by OpenAI; omitted rather than guessed.
  • parent: Not applicable — this is a standalone model alias, not a dated snapshot.
  • Cache pricing: Not published for this model; omitted.

Local files inspected

  • packages/proxy/schema/model_list.json — grep confirms no computer-use-preview entry exists

Source URLs

{
  "kind": "missing_model",
  "provider": "openai",
  "models": ["computer-use-preview"],
  "status": "active",
  "model_specs": {
    "computer-use-preview": {
      "format": "openai",
      "flavor": "chat",
      "multimodal": true,
      "input_cost_per_mil_tokens": 3,
      "output_cost_per_mil_tokens": 12,
      "max_input_tokens": 8192,
      "max_output_tokens": 1024,
      "available_providers": ["openai"]
    }
  },
  "source_urls": [
    "https://developers.openai.com/api/docs/models/computer-use-preview",
    "https://developers.openai.com/api/docs/pricing"
  ]
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions