Skip to content

Commit fb3cbb1

Browse files
committed
codex: add daybreak
1 parent 2ccd67d commit fb3cbb1

108 files changed

Lines changed: 19553 additions & 34435 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/codex.md

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
11
# Scoreboard
22

3-
| Model | Mode | ➛In | Out➛ | Tool | JSON | Batch | File | Cite | Text | Probs | Limits | Usage | Finish |
4-
| ------------------- | ------- | ----- | ------ | ---- | ---- | ----- | ---- | ---- | ---- | ----- | ------ | ----- | ------ |
5-
| gpt-5.6-sol🥇 | Sync🧠 | 💬📸 | 💬 |||||||||||
6-
| gpt-5.6-sol🥇 | Stream🧠 | 💬📸 | 💬 |||||||||||
7-
| gpt-5.6-terra🥈 | Sync🧠 | 💬📸 | 💬 |||||||||||
8-
| gpt-5.6-terra🥈 | Stream🧠 | 💬📸 | 💬 |||||||||||
9-
| gpt-5.6-luna🥉 | Sync🧠 | 💬📸 | 💬 |||||||||||
10-
| gpt-5.6-luna🥉 | Stream🧠 | 💬📸 | 💬 |||||||||||
11-
| gpt-5.4 | Sync🧠 | 💬📸 | 💬 |||||||||||
12-
| gpt-5.4 | Stream🧠 | 💬📸 | 💬 |||||||||||
13-
| gpt-5.5 | Sync🧠 | 💬📸 | 💬 |||||||||||
14-
| gpt-5.5 | Stream🧠 | 💬📸 | 💬 |||||||||||
15-
| gpt-5.4-mini | Sync🧠 | 💬📸 | 💬 |||||||||||
16-
| gpt-5.4-mini | Stream🧠 | 💬📸 | 💬 |||||||||||
17-
| gpt-5.3-codex-spark | Sync🧠 | 💬📸 | 💬 |||||||||||
18-
| gpt-5.3-codex-spark | Stream🧠 | 💬📸 | 💬 |||||||||||
3+
| Model | Mode | ➛In | Out➛ | Tool | JSON | Batch | File | Cite | Text | Probs | Limits | Usage | Finish |
4+
| ------------------------ | ------- | ----- | ------ | ---- | ---- | ----- | ---- | ---- | ---- | ----- | ------ | ----- | ------ |
5+
| gpt-5.6-sol🥇 | Sync🧠 | 💬📸 | 💬 |||||||||||
6+
| gpt-5.6-sol🥇 | Stream🧠 | 💬📸 | 💬 |||||||||||
7+
| gpt-5.6-terra🥈 | Sync🧠 | 💬📸 | 💬 |||||||||||
8+
| gpt-5.6-terra🥈 | Stream🧠 | 💬📸 | 💬 |||||||||||
9+
| gpt-5.6-luna🥉 | Sync🧠 | 💬📸 | 💬 |||||||||||
10+
| gpt-5.6-luna🥉 | Stream🧠 | 💬📸 | 💬 |||||||||||
11+
| gpt-daybreak-blue-latest | Sync🧠 | 💬 | 💬 |||||||||||
12+
| gpt-daybreak-blue-latest | Stream🧠 | 💬 | 💬 |||||||||||
13+
| gpt-5.3-codex-spark | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? |
14+
| gpt-5.4 | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? |
15+
| gpt-5.4-mini | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? |
16+
| gpt-5.5 | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? |
1917
<details>
2018
<summary>‼️ Click here for the legend of columns and symbols</summary>
2119

providers/codex/dto.go

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -931,6 +931,7 @@ type Thread struct {
931931
SessionID string `json:"sessionId,omitzero"`
932932
ForkedFromID string `json:"forkedFromId,omitzero"`
933933
ParentThreadID string `json:"parentThreadId,omitzero"`
934+
ProjectID string `json:"projectId,omitzero"`
934935
CLIVersion string `json:"cliVersion,omitzero"`
935936
CreatedAt base.TimeS `json:"createdAt,omitzero"`
936937
CWD string `json:"cwd,omitzero"`
@@ -1623,19 +1624,39 @@ type ModelInfo struct {
16231624
AdditionalSpeedTiers []string `json:"additionalSpeedTiers,omitzero"`
16241625
ServiceTiers []ModelServiceTier `json:"serviceTiers,omitzero"`
16251626
DefaultServiceTier string `json:"defaultServiceTier,omitzero"`
1627+
ModelSpecialty ModelSpecialty `json:"modelSpecialty,omitzero"`
1628+
MultiAgentVersion MultiAgentVersion `json:"multiAgentVersion,omitzero"`
16261629
}
16271630

1631+
// ModelSpecialty identifies a model optimized for a specialized workload.
1632+
type ModelSpecialty string
1633+
1634+
// Model specialty values.
1635+
const (
1636+
ModelSpecialtyCyber ModelSpecialty = "cyber"
1637+
)
1638+
1639+
// MultiAgentVersion identifies the multi-agent protocol supported by a model.
1640+
type MultiAgentVersion string
1641+
1642+
// Multi-agent protocol versions.
1643+
const (
1644+
MultiAgentVersionV1 MultiAgentVersion = "v1"
1645+
MultiAgentVersionV2 MultiAgentVersion = "v2"
1646+
)
1647+
16281648
// ModelAvailabilityNux holds a new-user-experience announcement for a model.
16291649
type ModelAvailabilityNux struct {
16301650
Message string `json:"message,omitzero"`
16311651
}
16321652

16331653
// ModelUpgradeInfo holds upgrade migration information for a model.
16341654
type ModelUpgradeInfo struct {
1635-
MigrationMarkdown string `json:"migrationMarkdown,omitzero"`
1636-
Model string `json:"model,omitzero"`
1637-
ModelLink *string `json:"modelLink,omitzero"`
1638-
UpgradeCopy *string `json:"upgradeCopy,omitzero"`
1655+
MigrationMarkdown string `json:"migrationMarkdown,omitzero"`
1656+
Model string `json:"model,omitzero"`
1657+
ModelLink string `json:"modelLink,omitzero"`
1658+
UpgradeCopy string `json:"upgradeCopy,omitzero"`
1659+
RetirementAt base.TimeS `json:"retirementAt,omitzero"`
16391660
}
16401661

16411662
// ModelReasoningOpt describes a supported reasoning effort level.

providers/codex/scoreboard.json

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -106,23 +106,10 @@
106106
},
107107
{
108108
"models": [
109-
"gpt-5.4",
110-
"gpt-5.5",
111-
"gpt-5.4-mini",
112-
"gpt-5.3-codex-spark"
109+
"gpt-daybreak-blue-latest"
113110
],
114111
"reason": true,
115112
"in": {
116-
"image": {
117-
"inline": true,
118-
"url": true,
119-
"supportedFormats": [
120-
"image/gif",
121-
"image/jpeg",
122-
"image/png",
123-
"image/webp"
124-
]
125-
},
126113
"text": {
127114
"inline": true
128115
}
@@ -140,6 +127,14 @@
140127
"reportTokenUsage": "true",
141128
"reportFinishReason": "true"
142129
}
130+
},
131+
{
132+
"models": [
133+
"gpt-5.3-codex-spark",
134+
"gpt-5.4",
135+
"gpt-5.4-mini",
136+
"gpt-5.5"
137+
]
143138
}
144139
]
145140
}

0 commit comments

Comments
 (0)