mirror of
https://github.com/vercel/eve.git
synced 2026-09-20 05:35:39 +08:00
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:
@@ -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",
|
||||
});
|
||||
```
|
||||
|
||||
|
||||
@@ -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,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: {
|
||||
|
||||
@@ -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`
|
||||
|
||||
|
||||
Reference in New Issue
Block a user