model upgrade

This commit is contained in:
Harivansh Rathi 2026-03-09 16:37:39 -07:00
parent 92c3bcf9f9
commit a1c66c805a
5 changed files with 12 additions and 9 deletions

View file

@ -21,7 +21,7 @@ export const defaultModelPerProvider: Record<KnownProvider, string> = {
anthropic: "claude-opus-4-6",
openai: "gpt-5.4",
"azure-openai-responses": "gpt-5.2",
"openai-codex": "gpt-5.4",
"openai-codex": "gpt-5.3-codex",
google: "gemini-2.5-pro",
"google-gemini-cli": "gemini-2.5-pro",
"google-antigravity": "gemini-3.1-pro-high",

View file

@ -151,7 +151,7 @@ function getDefaultAgentDir(): string {
* // With explicit model
* import { getModel } from '@mariozechner/pi-ai';
* const { session } = await createAgentSession({
* model: getModel('anthropic', 'claude-opus-4-5'),
* model: getModel('anthropic', 'claude-opus-4-6'),
* thinkingLevel: 'high',
* });
*