Skip to content

Commit 9f93bb3

Browse files
committed
Use gpt-5.4-mini as fallback profile model
1 parent f04aab1 commit 9f93bb3

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/superpowers/plans/2026-05-13-llm-research-profile.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def test_balanced_profile_exports_benchmark_provider_order():
9090
assert values["OPENAI_BACKUP_MODEL"] == "longcat-flash-chat"
9191
assert values["OPENAI_BACKUP_BASE_URL"] == "https://elysiver.h-e.top/v1"
9292
assert values["OPENAI_BACKUP_API_MODE"] == "chat"
93-
assert values["OPENAI_FALLBACK_MODEL"] == "gpt-5.4"
93+
assert values["OPENAI_FALLBACK_MODEL"] == "gpt-5.4-mini"
9494
assert values["OPENAI_FALLBACK_BASE_URL"] == "https://api.wwcloud.app"
9595
assert values["OPENAI_FALLBACK_API_MODE"] == "responses"
9696

@@ -260,7 +260,7 @@ llm_profile_set_role OPENAI_SECONDARY_API_KEY OPENAI_SECONDARY_MODEL OPENAI_SECO
260260
llm_profile_set_role OPENAI_BACKUP_API_KEY OPENAI_BACKUP_MODEL OPENAI_BACKUP_BASE_URL OPENAI_BACKUP_API_MODE \
261261
"longcat-flash-chat" "https://elysiver.h-e.top/v1" "chat"
262262
llm_profile_set_role OPENAI_FALLBACK_API_KEY OPENAI_FALLBACK_MODEL OPENAI_FALLBACK_BASE_URL OPENAI_FALLBACK_API_MODE \
263-
"gpt-5.4" "https://api.wwcloud.app" "responses"
263+
"gpt-5.4-mini" "https://api.wwcloud.app" "responses"
264264

265265
llm_profile_print_summary
266266
```

docs/superpowers/specs/2026-05-13-llm-research-profile-design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Provider order:
3636
| primary | `windhub/deepseek-v3-2-251201` | `https://windhub.cc/v1` | `messages` | Best balance of strict recall and latency among stable candidates |
3737
| secondary | `secondary/gemini-3.1-pro-preview` | `https://api.xn--chy-js0fk50c.top/v1` | `chat` | Formal CLI smoke passed; lower semantic strength but fast |
3838
| backup | `elysiver/longcat-flash-chat` | `https://elysiver.h-e.top/v1` | `chat` | Best stable elysiver result, good recall and moderate latency |
39-
| fallback | `gpt-5.4` on the original responses endpoint | `https://api.wwcloud.app` | `responses` | More expensive high-capability last resort |
39+
| fallback | `gpt-5.4-mini` on the original responses endpoint | `https://api.wwcloud.app` | `responses` | Lower-cost responses-compatible last resort |
4040

4141
Optional profile: `semantic`
4242

scripts/load_llm_research_profile.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ llm_profile_set_role OPENAI_SECONDARY_API_KEY OPENAI_SECONDARY_MODEL OPENAI_SECO
6464
llm_profile_set_role OPENAI_BACKUP_API_KEY OPENAI_BACKUP_MODEL OPENAI_BACKUP_BASE_URL OPENAI_BACKUP_API_MODE \
6565
"longcat-flash-chat" "https://elysiver.h-e.top/v1" "chat"
6666
llm_profile_set_role OPENAI_FALLBACK_API_KEY OPENAI_FALLBACK_MODEL OPENAI_FALLBACK_BASE_URL OPENAI_FALLBACK_API_MODE \
67-
"gpt-5.4" "https://api.wwcloud.app" "responses"
67+
"gpt-5.4-mini" "https://api.wwcloud.app" "responses"
6868

6969
llm_profile_print_summary

tests/test_llm_research_profile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test_balanced_profile_exports_benchmark_provider_order():
5555
assert values["OPENAI_BACKUP_MODEL"] == "longcat-flash-chat"
5656
assert values["OPENAI_BACKUP_BASE_URL"] == "https://elysiver.h-e.top/v1"
5757
assert values["OPENAI_BACKUP_API_MODE"] == "chat"
58-
assert values["OPENAI_FALLBACK_MODEL"] == "gpt-5.4"
58+
assert values["OPENAI_FALLBACK_MODEL"] == "gpt-5.4-mini"
5959
assert values["OPENAI_FALLBACK_BASE_URL"] == "https://api.wwcloud.app"
6060
assert values["OPENAI_FALLBACK_API_MODE"] == "responses"
6161

0 commit comments

Comments
 (0)