mirror of
https://github.com/HanaokaYuzu/Gemini-API.git
synced 2026-04-12 12:23:03 -06:00
Issue with Model.G_3_0_PRO: Response identifies as Flash 2.5 #109
Labels
No labels
advanced
advanced
bug
dependencies
discussion
documentation
duplicate
enhancement
good first issue
help wanted
invalid
model
pull-request
question
unreproducible
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
mirrors/Gemini-API#109
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 @MatveyDM15911 on GitHub (Nov 23, 2025).
How can I ensure that the version specified in model=Model.G_3_0_PRO is the one actually being used?
When testing with the prompt from the Readme:
async def main():
response1 = await client.generate_content(
"What's you language model version? Reply version number only.",
model=Model.G_3_0_Pro, # Note: You might want to change this to G_3_0_PRO in your example code context
)
print(f"Model version ({Model.G_3_0_Pro.model_name}): {response1.text}")
The output is "Flash 2.5". Additionally, the response quality suggests that it is not Gemini 3 Pro.
It appears that I am hitting some limits/restrictions, as I am no longer able to extract the "Thinking" trace from the response like I could before. I have attempted to use different Secure_1PSID keys and various VPN locations, but the issue persists.
Do you have any advice on how to definitely bypass these limitations?
@faithleysath commented on GitHub (Nov 23, 2025):
Actually, Google will do redirections automatically in the backend. If you have run out of your daily quota, you can still use 3.0's headers string, It won't raise any error. However actually you are using the Flash Model because google redirect it silently.
It's not a problem of this project, it's just a truth. No way to bypass the limitations unless you change an account.
@faithleysath commented on GitHub (Nov 23, 2025):
By the way, you may want to look at this. https://github.com/HanaokaYuzu/Gemini-API/pull/168