diff --git a/README.md b/README.md index 4d25f8d80..53a7590ab 100644 --- a/README.md +++ b/README.md @@ -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", }); ``` diff --git a/apps/fixtures/weather-agent/README.md b/apps/fixtures/weather-agent/README.md index 8e4cf36f7..0c88ed5d7 100644 --- a/apps/fixtures/weather-agent/README.md +++ b/apps/fixtures/weather-agent/README.md @@ -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 diff --git a/apps/fixtures/weather-agent/agent/agent.ts b/apps/fixtures/weather-agent/agent/agent.ts index 60d31064c..c52130d37 100644 --- a/apps/fixtures/weather-agent/agent/agent.ts +++ b/apps/fixtures/weather-agent/agent/agent.ts @@ -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: { diff --git a/docs/reference/cli.md b/docs/reference/cli.md index 4fb63d9ed..fa9609d28 100644 --- a/docs/reference/cli.md +++ b/docs/reference/cli.md @@ -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 ` | string | `openai/gpt-5.6-luna-fast` | Set the root agent's AI Gateway model ID. | -| `--reasoning ` | 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 ` | 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`