Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ Supports Google native API endpoints:

| Model | Description | Output |
|-------|-------------|--------|
| `gemini-3.6-flash` | All-around model (latest) | ~12k chars |
| `gemini-3.8-flash` | All-around model (latest) | ~12k chars |
| `gemini-3.7-flash` | All-around model | ~12k chars |
| `gemini-3.6-flash` | All-around model | ~12k chars |
| `gemini-3.5-flash` | Alias for gemini-3.6-flash | ~12k chars |
| `gemini-3.5-flash-thinking` | Extended thinking, longest output | **~20k chars** |
| `gemini-3.5-flash-thinking-lite` | Adaptive thinking depth | ~15k chars |
Expand Down
4 changes: 3 additions & 1 deletion README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ gemini

| 模型 | 说明 | 输出量 |
|------|------|--------|
| `gemini-3.6-flash` | 全能模型 (最新) | ~1.2万字 |
| `gemini-3.8-flash` | 全能模型 (最新) | ~1.2万字 |
| `gemini-3.7-flash` | 全能模型 | ~1.2万字 |
| `gemini-3.6-flash` | 全能模型 | ~1.2万字 |
| `gemini-3.5-flash` | gemini-3.6-flash 别名 | ~1.2万字 |
| `gemini-3.5-flash-thinking` | 扩展思考, 最长输出 | **~2万字** |
| `gemini-3.5-flash-thinking-lite` | 自适应思考深度 | ~1.5万字 |
Expand Down
12 changes: 11 additions & 1 deletion cloudflare/worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -440,10 +440,20 @@ function getRandomSecChUaPlatform() {
// 4 = AUTO(自动选择思考深度,由 Gemini 决定)

var MODELS = {
'gemini-3.8-flash': {
mode: 1, // FAST - 快速模式
think: 4, // AUTO - 自动选择思考深度
desc: 'Latest all-around model (Gemini 3.8 Flash)',
},
'gemini-3.7-flash': {
mode: 1, // FAST - 快速模式
think: 4, // AUTO - 自动选择思考深度
desc: 'All-around model (Gemini 3.7 Flash)',
},
'gemini-3.6-flash': {
mode: 1, // FAST - 快速模式
think: 4, // AUTO - 自动选择思考深度
desc: 'Latest all-around model (Gemini 3.6 Flash)',
desc: 'All-around model (Gemini 3.6 Flash)',
},
'gemini-3.5-flash': {
mode: 1, // FAST
Expand Down
6 changes: 5 additions & 1 deletion gemini_web2api.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,13 @@
# 1=FAST, 2=THINKING, 3=PRO, 4=AUTO, 5=FAST_DYNAMIC_THINKING, 6=FLASH_LITE

MODELS = {
"gemini-3.8-flash": {
"mode": 1, "think": 4,
"desc": "Latest all-around model (Gemini 3.8 Flash)",
},
"gemini-3.7-flash": {
"mode": 1, "think": 4,
"desc": "Latest all-around model (Gemini 3.7 Flash)",
"desc": "All-around model (Gemini 3.7 Flash)",
},
"gemini-3.6-flash": {
"mode": 1, "think": 4,
Expand Down
6 changes: 5 additions & 1 deletion gemini_web2api/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@
# 1=FAST, 2=THINKING, 3=PRO, 4=AUTO, 5=FAST_DYNAMIC_THINKING, 6=FLASH_LITE

MODELS = {
"gemini-3.8-flash": {
"mode": 1, "think": 4,
"desc": "Latest all-around model (Gemini 3.8 Flash)",
},
"gemini-3.7-flash": {
"mode": 1, "think": 4,
"desc": "Latest all-around model (Gemini 3.7 Flash)",
"desc": "All-around model (Gemini 3.7 Flash)",
},
"gemini-3.6-flash": {
"mode": 1, "think": 4,
Expand Down