thebird 1.2.85 → 1.2.86

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.
@@ -19,7 +19,7 @@ export async function* streamKiloHTTP({ url, model, messages, providerType, agen
19
19
 
20
20
  const modelId = model || 'x-ai/grok-code-fast-1:optimized:free';
21
21
  const codingIntent = /\b(write|create|make|build|generate|save|file|html|css|script|app|page|code)\b/i.test(userText);
22
- const agentName = agent || (codingIntent ? 'build' : 'hermes-llm');
22
+ const agentName = agent || (codingIntent ? 'code' : 'ask');
23
23
  const body = { parts: [{ type: 'text', text: userText }], agent: agentName };
24
24
  if (isOpencode) body.model = { providerID: 'kilo', modelID: modelId };
25
25
  else { body.providerID = 'kilo'; body.modelID = modelId; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thebird",
3
- "version": "1.2.85",
3
+ "version": "1.2.86",
4
4
  "description": "Anthropic SDK to Gemini streaming bridge — drop-in proxy that translates Anthropic message format and tool calls to Google Gemini",
5
5
  "scripts": {
6
6
  "start": "node serve.js"