orquesta-cli 0.1.23 → 0.1.24
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/orquesta/config-sync.js +8 -11
- package/package.json +1 -1
|
@@ -83,7 +83,6 @@ export async function syncOrquestaConfigs() {
|
|
|
83
83
|
const endpoints = data.endpoints || [];
|
|
84
84
|
const hasBatuta = endpoints.some((e) => e.provider === 'batuta' || e.id === 'batuta-proxy');
|
|
85
85
|
if (!hasBatuta) {
|
|
86
|
-
const healthy = { enabled: true, healthStatus: 'healthy', lastHealthCheck: new Date() };
|
|
87
86
|
endpoints.push({
|
|
88
87
|
id: 'batuta-proxy',
|
|
89
88
|
name: 'Batuta',
|
|
@@ -91,16 +90,14 @@ export async function syncOrquestaConfigs() {
|
|
|
91
90
|
apiKey: orquestaConfig.token,
|
|
92
91
|
provider: 'batuta',
|
|
93
92
|
models: [
|
|
94
|
-
{
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
{ id: 'gemini-2.0-pro', name: 'Gemini 2.0 Pro', maxTokens: 1048576, ...healthy },
|
|
103
|
-
{ id: 'grok-4', name: 'Grok 4', maxTokens: 131072, ...healthy },
|
|
93
|
+
{
|
|
94
|
+
id: 'batuta-auto',
|
|
95
|
+
name: 'Batuta Auto (smart routing)',
|
|
96
|
+
maxTokens: 200000,
|
|
97
|
+
enabled: true,
|
|
98
|
+
healthStatus: 'healthy',
|
|
99
|
+
lastHealthCheck: new Date(),
|
|
100
|
+
},
|
|
104
101
|
],
|
|
105
102
|
createdAt: new Date(),
|
|
106
103
|
updatedAt: new Date(),
|