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.
@@ -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
- { id: 'batuta-auto', name: 'Batuta Auto (smart routing)', maxTokens: 200000, ...healthy },
95
- { id: 'claude-opus-4-7', name: 'Claude Opus 4.7', maxTokens: 200000, ...healthy },
96
- { id: 'claude-sonnet-4-6', name: 'Claude Sonnet 4.6', maxTokens: 200000, ...healthy },
97
- { id: 'claude-haiku-4-5-20251001', name: 'Claude Haiku 4.5', maxTokens: 200000, ...healthy },
98
- { id: 'gpt-4o', name: 'GPT-4o', maxTokens: 128000, ...healthy },
99
- { id: 'gpt-4o-mini', name: 'GPT-4o Mini', maxTokens: 128000, ...healthy },
100
- { id: 'deepseek-chat', name: 'DeepSeek Chat', maxTokens: 128000, ...healthy },
101
- { id: 'deepseek-reasoner', name: 'DeepSeek Reasoner', maxTokens: 64000, ...healthy },
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(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orquesta-cli",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
4
4
  "description": "Orquesta CLI - AI-powered coding assistant with team collaboration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",