You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
agents: revert --llm default to the newest preview, not the spec's 'default' (v0.3.2)
v0.3.1 followed Codex's advice to set --llm default to the OpenAPI
spec's nominal PromptAgentAPIModel.llm default (gemini-2.5-flash).
That's the older stable release. The spec's declared "default" string
lags by a couple of model generations. The ElevenLabs Agents backend
already accepts gemini-3-flash-preview and gemini-3.1-flash-lite-preview
in its LLM enum; our maintainer's live Guidance 40 session empirically
verified gemini-3.1-flash-lite-preview as the fastest reliable default.
Reverting to gemini-3.1-flash-lite-preview (the same default v0.2.x
shipped with). gemini-3.1-flash-live-preview is Google's specialized
voice model but isn't in the ElevenLabs LLM enum yet — we'll re-
evaluate once it is.
Touched: src/cli.rs (doc comment + default_value), src/help.rs (tips
copy + two examples), src/commands/agent_info.rs (defaults), src/
commands/agents/agent_config.rs (GOTCHAS), README.md, CHANGELOG.md.
Test suite still green (36 suites).
Copy file name to clipboardExpand all lines: src/commands/agent_info.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -153,7 +153,7 @@ pub fn run() {
153
153
"description":"Create a conversational AI agent. See `known_values.agent_tts_model_ids` and `gotchas.agents` before passing --model-id / --llm / --expressive-mode.",
0 commit comments