Skip to content

[BOT ISSUE] Databricks: add missing databricks-gpt-5-nano, databricks-gpt-5-3-codex, databricks-gpt-5-2-codex #642

@github-actions

Description

@github-actions

Summary

Three Databricks Foundation Model API pay-per-token GPT models are missing from packages/proxy/schema/model_list.json. This is a follow-up to #559, #585, #591, #592, #638, #639, and #640, continuing to address the Databricks catalog gap.

Missing Model IDs

Model ID Context Window Max Output Supported Inputs Description
databricks-gpt-5-nano 400,000 128,000 text, image Excels at high-throughput tasks like simple instruction-following
databricks-gpt-5-3-codex 400,000 128,000 text, image Most advanced agentic coding model, operating 25% faster
databricks-gpt-5-2-codex 400,000 128,000 text, image Code-specialized LLM, excels at code generation (retiring July 16, 2026)

Details

Note: databricks-gpt-5-2-codex is listed as retiring on July 16, 2026 on the Databricks supported models page. It should be added with a deprecation_date field.

Suggested entries

"databricks-gpt-5-nano": {
  "format": "openai",
  "flavor": "chat",
  "multimodal": true,
  "displayName": "GPT-5 nano",
  "max_input_tokens": 400000,
  "max_output_tokens": 128000,
  "available_providers": ["databricks"]
},
"databricks-gpt-5-3-codex": {
  "format": "openai",
  "flavor": "chat",
  "multimodal": true,
  "displayName": "GPT-5.3 Codex",
  "max_input_tokens": 400000,
  "max_output_tokens": 128000,
  "available_providers": ["databricks"]
},
"databricks-gpt-5-2-codex": {
  "format": "openai",
  "flavor": "chat",
  "multimodal": true,
  "displayName": "GPT-5.2 Codex",
  "max_input_tokens": 400000,
  "max_output_tokens": 128000,
  "deprecation_date": "2026-07-16",
  "available_providers": ["databricks"]
}

Pricing omitted per Databricks provider constraints (no stable public per-model pricing source).

Verification checklist

Verification notes

Field Source Notes
Model IDs Foundation model overview + Supported models page Listed in both pay-per-token model tables
Context windows (400K) Supported models page All three: "400K total token context window with 128K maximum output tokens"
Max output (128K) Supported models page Same source as context window
format: "openai", flavor: "chat" Catalog convention All Databricks models use openai format
multimodal: true Supported models page Inputs: text, image
Retirement date for gpt-5-2-codex Supported models page "This model is retiring July 16, 2026"
input_cost_per_mil_tokens / output_cost_per_mil_tokens NOT PUBLISHED Databricks does not publish stable per-model pricing

Local files inspected

  • packages/proxy/schema/model_list.json — grep for databricks-gpt-5-nano, databricks-gpt-5-3-codex, and databricks-gpt-5-2-codex returns no matches

Source URLs

{
  "kind": "missing_model",
  "provider": "databricks",
  "models": ["databricks-gpt-5-nano", "databricks-gpt-5-3-codex", "databricks-gpt-5-2-codex"],
  "status": "active",
  "model_specs": {
    "databricks-gpt-5-nano": {
      "format": "openai",
      "flavor": "chat",
      "multimodal": true,
      "displayName": "GPT-5 nano",
      "max_input_tokens": 400000,
      "max_output_tokens": 128000,
      "available_providers": ["databricks"]
    },
    "databricks-gpt-5-3-codex": {
      "format": "openai",
      "flavor": "chat",
      "multimodal": true,
      "displayName": "GPT-5.3 Codex",
      "max_input_tokens": 400000,
      "max_output_tokens": 128000,
      "available_providers": ["databricks"]
    },
    "databricks-gpt-5-2-codex": {
      "format": "openai",
      "flavor": "chat",
      "multimodal": true,
      "displayName": "GPT-5.2 Codex",
      "max_input_tokens": 400000,
      "max_output_tokens": 128000,
      "deprecation_date": "2026-07-16",
      "available_providers": ["databricks"]
    }
  },
  "source_urls": [
    "https://docs.databricks.com/aws/en/machine-learning/model-serving/foundation-model-overview",
    "https://docs.databricks.com/aws/en/machine-learning/foundation-model-apis/supported-models"
  ]
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions