@almadar/agent 3.5.5 → 3.5.7

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.
@@ -17,8 +17,10 @@ import type { OrbitalSchema } from '@almadar/core/types';
17
17
  * 100% behavior matching, fastest (0.5s match, 4.7s simple), FREE.
18
18
  * - mistral-small: Mistral Small 3.1 24B via OpenRouter. Strong runner-up: 6/6 complex,
19
19
  * smart matching (picked std-kanban over std-list for tasks).
20
+ * - mistral-medium: Mistral Medium 3.1 via OpenRouter. Next tier up from Small,
21
+ * stronger reasoning, tool calling support.
20
22
  */
21
- export type GateProvider = 'deepseek' | 'zhipu' | 'qwen3.5' | 'gemma3-4b' | 'mistral-small';
23
+ export type GateProvider = 'deepseek' | 'zhipu' | 'qwen3.5' | 'gemma3-4b' | 'mistral-small' | 'mistral-medium';
22
24
  /** Whether the behavior source is injected into the user prompt. */
23
25
  export type GateMode = 'guided' | 'pure';
24
26
  /** Options passed to individual gate functions. */
package/dist/index.js CHANGED
@@ -460,7 +460,8 @@ var init_constants = __esm({
460
460
  openai: 5,
461
461
  deepseek: 3,
462
462
  kimi: 3,
463
- openrouter: 5
463
+ openrouter: 5,
464
+ orbgen: 3
464
465
  };
465
466
  PROVIDER_BATCH_SIZES = {
466
467
  anthropic: 3,
@@ -471,8 +472,10 @@ var init_constants = __esm({
471
472
  // Conservative for DeepSeek
472
473
  kimi: 3,
473
474
  // Conservative for Kimi
474
- openrouter: 5
475
+ openrouter: 5,
475
476
  // OpenRouter proxies multiple providers
477
+ orbgen: 3
478
+ // Conservative for OrbGen
476
479
  };
477
480
  BATCH_MAX_TOKENS = 12e3;
478
481
  }