chore: align quickstart and dev fixture model with the CLI default (#2701)

Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com>
Co-authored-by: Casey Gowrie <6045519+ctgowrie@users.noreply.github.com>
This commit is contained in:
Casey Gowrie
2026-08-28 10:18:36 -04:00
committed by GitHub
parent b8a635c2a6
commit 5bbb085e58
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ Choose the model in `agent/agent.ts`:
import { defineAgent } from "eve";
export default defineAgent({
model: "zai/glm-5.2",
model: "openai/gpt-5.6-luna-fast",
});
```
+1 -1
View File
@@ -4,7 +4,7 @@ The weather-focused eve fixture. It backs the repo root `pnpm dev`, the
bundle-analysis workflow, and manual smoke testing as a small representative
eve app:
- `agent/agent.ts` — model config (`openai/gpt-5.5` with adaptive
- `agent/agent.ts` — model config (`openai/gpt-5.6-luna-fast` with adaptive
thinking)
- `agent/instructions.md` — the always-on instructions prompt
- `agent/tools/get_weather.ts` — a typed weather lookup tool
+1 -1
View File
@@ -1,7 +1,7 @@
import { defineAgent } from "eve";
export default defineAgent({
model: "zai/glm-5.2",
model: "openai/gpt-5.6-luna-fast",
modelOptions: {
providerOptions: {
openai: {
+4 -4
View File
@@ -52,11 +52,11 @@ Coding-agent launches and non-interactive terminals cannot answer the location p
After scaffolding, a human terminal usually continues into `eve dev`. If a coding-agent REPL is on `PATH`, the handoff menu can open it instead or exit without starting either process. Coding-agent launches print the next steps instead of opening the TUI, so the session does not get stuck. Fresh projects use the parent workspace's package manager when there is one; otherwise they use the manager that launched `eve init`.
| Flag | Type | Default | Description |
| ---------------------- | ------ | ---------------- | ------------------------------------------------------------------------------------------------------------------------ |
| Flag | Type | Default | Description |
| ---------------------- | ------ | -------------------------- | ------------------------------------------------------------------------------------------------------------------------ |
| `--model <model>` | string | `openai/gpt-5.6-luna-fast` | Set the root agent's AI Gateway model ID. |
| `--reasoning <effort>` | enum | provider default | Set reasoning to `none`, `minimal`, `low`, `medium`, `high`, or `xhigh`. `provider-default` leaves the field unauthored. |
| `--channel-web-nextjs` | flag | off | Add the Web Chat app (Next.js). Not for existing projects — run `eve add channel/web` there instead. |
| `--reasoning <effort>` | enum | provider default | Set reasoning to `none`, `minimal`, `low`, `medium`, `high`, or `xhigh`. `provider-default` leaves the field unauthored. |
| `--channel-web-nextjs` | flag | off | Add the Web Chat app (Next.js). Not for existing projects — run `eve add channel/web` there instead. |
## `eve extension`