Skip to content

Commit c7398ff

Browse files
Add GPT-5.1 docs and bump CLIProxyAPI 6.3.41 (#30)
1 parent a57c9e0 commit c7398ff

File tree

4 files changed

+91
-1
lines changed

4 files changed

+91
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to VibeProxy will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.7] - 2025-11-14
9+
10+
### Added
11+
- **GPT-5.1 Docs** - Updated README and Factory setup instructions so you can register the new `gpt-5.1*` and `gpt-5.1-codex*` (each with minimal/low/medium/high presets) with Factory CLI and route them through VibeProxy.
12+
- **CLIProxyAPI 6.3.41** - Bundled the latest upstream binary so GPT-5.1/GPT-5.1 Codex names resolve without manual upgrades.
13+
814
## [1.0.6] - 2025-10-15
915

1016
### Added
@@ -154,6 +160,7 @@ All future changes will be documented here before release.
154160

155161
---
156162

163+
[1.0.7]: https://github.com/automazeio/vibeproxy/releases/tag/v1.0.7
157164
[1.0.6]: https://github.com/automazeio/vibeproxy/releases/tag/v1.0.6
158165
[1.0.5]: https://github.com/automazeio/vibeproxy/releases/tag/v1.0.5
159166
[1.0.4]: https://github.com/automazeio/vibeproxy/releases/tag/v1.0.4

FACTORY_SETUP.md

Lines changed: 81 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,69 @@ Edit your Factory configuration file at `~/.factory/config.json` (if the file do
115115
"api_key": "dummy-not-used",
116116
"provider": "openai"
117117
},
118+
{
119+
"model_display_name": "GPT-5.1 Codex",
120+
"model": "gpt-5.1-codex",
121+
"base_url": "http://localhost:8317/v1",
122+
"api_key": "dummy-not-used",
123+
"provider": "openai"
124+
},
125+
{
126+
"model_display_name": "GPT-5.1 Codex (Low)",
127+
"model": "gpt-5.1-codex-low",
128+
"base_url": "http://localhost:8317/v1",
129+
"api_key": "dummy-not-used",
130+
"provider": "openai"
131+
},
132+
{
133+
"model_display_name": "GPT-5.1 Codex (Medium)",
134+
"model": "gpt-5.1-codex-medium",
135+
"base_url": "http://localhost:8317/v1",
136+
"api_key": "dummy-not-used",
137+
"provider": "openai"
138+
},
139+
{
140+
"model_display_name": "GPT-5.1 Codex (High)",
141+
"model": "gpt-5.1-codex-high",
142+
"base_url": "http://localhost:8317/v1",
143+
"api_key": "dummy-not-used",
144+
"provider": "openai"
145+
},
146+
{
147+
"model_display_name": "GPT-5.1",
148+
"model": "gpt-5.1",
149+
"base_url": "http://localhost:8317/v1",
150+
"api_key": "dummy-not-used",
151+
"provider": "openai"
152+
},
153+
{
154+
"model_display_name": "GPT-5.1 (Minimal)",
155+
"model": "gpt-5.1-minimal",
156+
"base_url": "http://localhost:8317/v1",
157+
"api_key": "dummy-not-used",
158+
"provider": "openai"
159+
},
160+
{
161+
"model_display_name": "GPT-5.1 (Low)",
162+
"model": "gpt-5.1-low",
163+
"base_url": "http://localhost:8317/v1",
164+
"api_key": "dummy-not-used",
165+
"provider": "openai"
166+
},
167+
{
168+
"model_display_name": "GPT-5.1 (Medium)",
169+
"model": "gpt-5.1-medium",
170+
"base_url": "http://localhost:8317/v1",
171+
"api_key": "dummy-not-used",
172+
"provider": "openai"
173+
},
174+
{
175+
"model_display_name": "GPT-5.1 (High)",
176+
"model": "gpt-5.1-high",
177+
"base_url": "http://localhost:8317/v1",
178+
"api_key": "dummy-not-used",
179+
"provider": "openai"
180+
},
118181
{
119182
"model_display_name": "GPT-5",
120183
"model": "gpt-5",
@@ -168,7 +231,7 @@ Edit your Factory configuration file at `~/.factory/config.json` (if the file do
168231
Then choose from:
169232
- `claude-sonnet-4-5-20250929` (Claude 4.5 Sonnet)
170233
- `claude-opus-4-1-20250805`
171-
- `gpt-5`, `gpt-5-codex`, etc.
234+
- `gpt-5`, `gpt-5.1`, `gpt-5-codex`, `gpt-5.1-codex`, etc.
172235

173236
3. **Start coding!** Factory will now route all requests through VibeProxy, which handles authentication automatically.
174237

@@ -189,6 +252,23 @@ Edit your Factory configuration file at `~/.factory/config.json` (if the file do
189252
- `gpt-5-minimal` / `low` / `medium` / `high` - Different reasoning effort levels
190253
- `gpt-5-codex` - Optimized for coding
191254
- `gpt-5-codex-low` / `medium` / `high` - Codex with different reasoning levels
255+
- `gpt-5.1` - Next-gen GPT with better reasoning + planning
256+
- `gpt-5.1-minimal` / `low` / `medium` / `high` - GPT-5.1 with explicit reasoning effort controls
257+
- `gpt-5.1-codex` - Latest Codex upgrade (faster reasoning + better tool use)
258+
- `gpt-5.1-codex-low` / `medium` / `high` - Same model with explicit reasoning effort presets
259+
260+
### Upgrading to GPT-5.1 / GPT-5.1 Codex
261+
262+
1. **Update your Factory config**: Add the `"gpt-5.1*"` and `"gpt-5.1-codex*"` blocks from the sample above to `~/.factory/config.json` (keep the GPT-5 entries if teammates still rely on them).
263+
2. **Reload Factory CLI**: Quit and relaunch `droid`, then run `/model` to refresh the picker. The new GPT-5.1 + GPT-5.1 Codex variants will now appear.
264+
3. **Pick the right preset**:
265+
- `gpt-5.1` / `gpt-5.1-codex` → balanced reasoning
266+
- `gpt-5.1-minimal` / `-codex-low` → cheapest + minimal chain-of-thought
267+
- `gpt-5.1-medium` / `-codex-medium` → default for day-to-day coding
268+
- `gpt-5.1-high` / `-codex-high` → max reasoning depth (pairs well with Factory’s “Fix Tests” + “Write Spec” droids)
269+
4. **Sanity-check**: Ask Factory to run `/model`; it will echo your active model so you can confirm the correct GPT-5.1 variant before starting a run.
270+
271+
No CLIProxyAPI update is required—VibeProxy forwards the new model names directly to OpenAI using your Codex OAuth tokens.
192272

193273
## Troubleshooting
194274

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ Built on [CLIProxyAPI](https://github.com/router-for-me/CLIProxyAPI), it handles
2121
> [!IMPORTANT]
2222
> **NEW: Extended Thinking Support! 🧠** VibeProxy now supports Claude's extended thinking feature with dynamic budgets (4K, 10K, 32K tokens). Use model names like `claude-sonnet-4-5-20250929-thinking-10000` to enable extended thinking. See the [Factory Setup Guide](FACTORY_SETUP.md#step-3-configure-factory-cli) for details.
2323
24+
> [!IMPORTANT]
25+
> **NEW: GPT-5.1 & GPT-5.1 Codex Support! ⚡️** Drop the brand-new `gpt-5.1*` and `gpt-5.1-codex*` models into your Factory CLI config and VibeProxy will route them through your ChatGPT subscription automatically. Follow the updated [Factory setup](FACTORY_SETUP.md#step-3-configure-factory-cli) snippet.
26+
2427
<p align="center">
2528
<br>
2629
<a href="https://www.loom.com/share/5cf54acfc55049afba725ab443dd3777"><img src="vibeproxy-factory-video.webp" width="600" height="380" alt="VibeProxy Screenshot" border="0"></a>
16.3 MB
Binary file not shown.

0 commit comments

Comments
 (0)