Skip to content

Commit 87a02b8

Browse files
authored
Merge pull request #1258 from vglafirov/feat/gitlab-gpt-5-4-models
feat(gitlab): add GPT-5.4, GPT-5.4 Mini, GPT-5.4 Nano, and GPT-5.3 Codex models
2 parents 9838c55 + 849a529 commit 87a02b8

5 files changed

Lines changed: 97 additions & 1 deletion

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name = "Agentic Chat (GPT-5.3 Codex)"
2+
family = "gpt-codex"
3+
release_date = "2026-02-05"
4+
last_updated = "2026-02-05"
5+
knowledge = "2025-08-31"
6+
attachment = true
7+
reasoning = true
8+
temperature = false
9+
tool_call = true
10+
structured_output = true
11+
open_weights = false
12+
13+
[cost]
14+
input = 0
15+
output = 0
16+
17+
[limit]
18+
context = 400_000
19+
input = 272_000
20+
output = 128_000
21+
22+
[modalities]
23+
input = ["text", "image", "pdf"]
24+
output = ["text"]
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name = "Agentic Chat (GPT-5.4 Mini)"
2+
family = "gpt-mini"
3+
release_date = "2026-03-17"
4+
last_updated = "2026-03-17"
5+
knowledge = "2025-08-31"
6+
attachment = true
7+
reasoning = true
8+
temperature = false
9+
tool_call = true
10+
structured_output = true
11+
open_weights = false
12+
13+
[cost]
14+
input = 0
15+
output = 0
16+
17+
[limit]
18+
context = 400_000
19+
input = 272_000
20+
output = 128_000
21+
22+
[modalities]
23+
input = ["text", "image"]
24+
output = ["text"]
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name = "Agentic Chat (GPT-5.4 Nano)"
2+
family = "gpt-nano"
3+
release_date = "2026-03-17"
4+
last_updated = "2026-03-17"
5+
knowledge = "2025-08-31"
6+
attachment = true
7+
reasoning = true
8+
temperature = false
9+
tool_call = true
10+
structured_output = true
11+
open_weights = false
12+
13+
[cost]
14+
input = 0
15+
output = 0
16+
17+
[limit]
18+
context = 400_000
19+
input = 272_000
20+
output = 128_000
21+
22+
[modalities]
23+
input = ["text", "image"]
24+
output = ["text"]
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name = "Agentic Chat (GPT-5.4)"
2+
family = "gpt"
3+
release_date = "2026-03-05"
4+
last_updated = "2026-03-05"
5+
knowledge = "2025-08-31"
6+
attachment = true
7+
reasoning = true
8+
temperature = false
9+
tool_call = true
10+
structured_output = true
11+
open_weights = false
12+
13+
[cost]
14+
input = 0
15+
output = 0
16+
17+
[limit]
18+
context = 1_050_000
19+
input = 922_000
20+
output = 128_000
21+
22+
[modalities]
23+
input = ["text", "image", "pdf"]
24+
output = ["text"]

providers/gitlab/provider.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
name = "GitLab Duo"
22
env = ["GITLAB_TOKEN"]
3-
npm = "@gitlab/gitlab-ai-provider"
3+
npm = "gitlab-ai-provider"
44
doc = "https://docs.gitlab.com/user/duo_agent_platform/"

0 commit comments

Comments
 (0)