openbot 0.2.0 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1 -1
- package/dist/model-defaults.js +5 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
package/dist/model-defaults.js
CHANGED
|
@@ -4,6 +4,9 @@ export const DEFAULT_MODEL_BY_PROVIDER = {
|
|
|
4
4
|
anthropic: "anthropic/claude-sonnet-4-5-20250929",
|
|
5
5
|
};
|
|
6
6
|
export const FALLBACK_MODELS = [
|
|
7
|
+
{ id: "openai/gpt-5.2", label: "OpenAI GPT-5.2" },
|
|
8
|
+
{ id: "openai/gpt-5.2-chat-latest", label: "OpenAI GPT-5.2 Chat Latest" },
|
|
9
|
+
{ id: "openai/gpt-5.2-pro", label: "OpenAI GPT-5.2 Pro" },
|
|
7
10
|
{ id: "openai/gpt-5", label: "OpenAI GPT-5" },
|
|
8
11
|
{ id: "openai/gpt-5-mini", label: "OpenAI GPT-5 Mini" },
|
|
9
12
|
{ id: "openai/gpt-5-nano", label: "OpenAI GPT-5 Nano" },
|
|
@@ -12,6 +15,8 @@ export const FALLBACK_MODELS = [
|
|
|
12
15
|
{ id: "openai/gpt-4o", label: "OpenAI GPT-4o" },
|
|
13
16
|
{ id: "openai/gpt-4o-mini", label: "OpenAI GPT-4o Mini" },
|
|
14
17
|
{ id: "openai/o4-mini", label: "OpenAI o4-mini" },
|
|
18
|
+
{ id: "anthropic/claude-opus-4-6", label: "Claude Opus 4.6" },
|
|
19
|
+
{ id: "anthropic/claude-sonnet-4-6", label: "Claude Sonnet 4.6" },
|
|
15
20
|
{ id: "anthropic/claude-opus-4-5-20251101", label: "Claude Opus 4.5" },
|
|
16
21
|
{ id: "anthropic/claude-sonnet-4-5-20250929", label: "Claude Sonnet 4.5" },
|
|
17
22
|
{ id: "anthropic/claude-3-7-sonnet-latest", label: "Claude 3.7 Sonnet" },
|