@diegopetrucci/pi-oracle 0.1.10 → 0.1.11
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/.pi-fleet-tested-version +1 -1
- package/index.ts +8 -0
- package/package.json +1 -1
package/.pi-fleet-tested-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.78.0
|
package/index.ts
CHANGED
|
@@ -75,6 +75,7 @@ const ORACLE_CONFIG_FILE = "oracle.json";
|
|
|
75
75
|
|
|
76
76
|
const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
77
77
|
"amazon-bedrock": [
|
|
78
|
+
"claude-opus-4-8",
|
|
78
79
|
"claude-opus-4-7",
|
|
79
80
|
"claude-opus-4-6",
|
|
80
81
|
"claude-opus-4-5",
|
|
@@ -91,6 +92,8 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
91
92
|
"zai.glm-5",
|
|
92
93
|
],
|
|
93
94
|
anthropic: [
|
|
95
|
+
"claude-opus-4-8",
|
|
96
|
+
"claude-opus-4.8",
|
|
94
97
|
"claude-opus-4-7",
|
|
95
98
|
"claude-opus-4.7",
|
|
96
99
|
"claude-opus-4-6",
|
|
@@ -156,6 +159,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
156
159
|
"accounts/fireworks/models/gpt-oss-120b",
|
|
157
160
|
],
|
|
158
161
|
"github-copilot": [
|
|
162
|
+
"claude-opus-4.8",
|
|
159
163
|
"claude-opus-4.7",
|
|
160
164
|
"claude-opus-4.6",
|
|
161
165
|
"claude-opus-4.5",
|
|
@@ -257,6 +261,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
257
261
|
"gpt-5.5",
|
|
258
262
|
"gpt-5.4-pro",
|
|
259
263
|
"gpt-5.4",
|
|
264
|
+
"claude-opus-4-8",
|
|
260
265
|
"claude-opus-4-7",
|
|
261
266
|
"claude-opus-4-6",
|
|
262
267
|
"claude-opus-4-5",
|
|
@@ -284,6 +289,8 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
284
289
|
"kimi-k2.5",
|
|
285
290
|
],
|
|
286
291
|
openrouter: [
|
|
292
|
+
"anthropic/claude-opus-4.8",
|
|
293
|
+
"anthropic/claude-opus-4.8-fast",
|
|
287
294
|
"anthropic/claude-opus-4.7",
|
|
288
295
|
"anthropic/claude-opus-4.6-fast",
|
|
289
296
|
"anthropic/claude-opus-4.6",
|
|
@@ -320,6 +327,7 @@ const PROVIDER_MODEL_PREFERENCES: Record<string, string[]> = {
|
|
|
320
327
|
"MiniMaxAI/MiniMax-M2.5",
|
|
321
328
|
],
|
|
322
329
|
"vercel-ai-gateway": [
|
|
330
|
+
"anthropic/claude-opus-4.8",
|
|
323
331
|
"anthropic/claude-opus-4.7",
|
|
324
332
|
"anthropic/claude-opus-4.6",
|
|
325
333
|
"anthropic/claude-opus-4.5",
|
package/package.json
CHANGED