mirror of
https://github.com/NikkeTryHard/zerogravity.git
synced 2026-04-25 15:15:59 +03:00
[GH-ISSUE #36] Bug: Gemini 3.1 Pro 全系列返回 "no longer available" #32
Labels
No labels
bug
enhancement
enhancement
notice
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/zerogravity#32
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @JinchengGao-Infty on GitHub (Feb 20, 2026).
Original GitHub issue: https://github.com/NikkeTryHard/zerogravity/issues/36
What happened?
Bug: Gemini 3.1 Pro 全系列返回 "no longer available"
环境:
我已经是最新镜像
复现命令:
gemini-3.1-pro — 失败
curl -s http://localhost:8741/v1/chat/completions
-H "Content-Type: application/json"
-d '{"model":"gemini-3.1-pro","messages":[{"role":"user","content":"say hi"}]}'
gemini-3.1-pro-high — 失败
curl -s http://localhost:8741/v1/chat/completions
-H "Content-Type: application/json"
-d '{"model":"gemini-3.1-pro-high","messages":[{"role":"user","content":"say hi"}]}'
gemini-3.1-pro-low — 失败
curl -s http://localhost:8741/v1/chat/completions
-H "Content-Type: application/json"
-d '{"model":"gemini-3.1-pro-low","messages":[{"role":"user","content":"say hi"}]}'
gemini-3-flash — 正常
curl -s http://localhost:8741/v1/chat/completions
-H "Content-Type: application/json"
-d '{"model":"gemini-3-flash","messages":[{"role":"user","content":"say hi"}]}'
返回结果(3.1 全系列相同):
{
"choices": [{
"finish_reason": "stop",
"message": {
"content": "Gemini 3 Pro is no longer available. Please switch to Gemini 3.1 Pro in the latest version of
Antigravity.",
"role": "assistant"
}
}],
"model": "gemini-3.1-pro",
"usage": {
"completion_tokens": 0,
"prompt_tokens": 0,
"total_tokens": 0
}
}
How to reproduce
gemini-3.1-pro-high — 失败
curl -s http://localhost:8741/v1/chat/completions
-H "Content-Type: application/json"
-d '{"model":"gemini-3.1-pro-high","messages":[{"role":"user","content":"say hi"}]}'
gemini-3.1-pro-low — 失败
curl -s http://localhost:8741/v1/chat/completions
-H "Content-Type: application/json"
-d '{"model":"gemini-3.1-pro-low","messages":[{"role":"user","content":"say hi"}]}'
Diagnostic Report
Additional Context
No response
@NikkeTryHard commented on GitHub (Feb 20, 2026):
更新