mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-08 22:21:23 +00:00
fix: rename back to gpt-5.3-codex-spark
This commit is contained in:
parent
76ea80b4cc
commit
bf5e6483b0
2 changed files with 3 additions and 3 deletions
|
|
@ -68,7 +68,7 @@ export const openAiCodexModels = {
|
|||
supportsTemperature: false,
|
||||
description: "GPT-5.3 Codex: OpenAI's flagship coding model via ChatGPT subscription",
|
||||
},
|
||||
"gpt-5.3-spark-codex": {
|
||||
"gpt-5.3-codex-spark": {
|
||||
maxTokens: 128000,
|
||||
contextWindow: 400000,
|
||||
includedTools: ["apply_patch"],
|
||||
|
|
@ -80,7 +80,7 @@ export const openAiCodexModels = {
|
|||
inputPrice: 0,
|
||||
outputPrice: 0,
|
||||
supportsTemperature: false,
|
||||
description: "GPT-5.3 Spark Codex: Fast, lightweight coding model via ChatGPT subscription",
|
||||
description: "GPT-5.3 Codex Spark: Fast, lightweight coding model via ChatGPT subscription",
|
||||
},
|
||||
"gpt-5.2-codex": {
|
||||
maxTokens: 128000,
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
import { OpenAiCodexHandler } from "../openai-codex"
|
||||
|
||||
describe("OpenAiCodexHandler.getModel", () => {
|
||||
it.each(["gpt-5.1", "gpt-5", "gpt-5.1-codex", "gpt-5-codex", "gpt-5-codex-mini", "gpt-5.3-spark-codex"])(
|
||||
it.each(["gpt-5.1", "gpt-5", "gpt-5.1-codex", "gpt-5-codex", "gpt-5-codex-mini", "gpt-5.3-codex-spark"])(
|
||||
"should return specified model when a valid model id is provided: %s",
|
||||
(apiModelId) => {
|
||||
const handler = new OpenAiCodexHandler({ apiModelId })
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue