@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.
- package/dist/agent/index.js +5 -2
- package/dist/agent/index.js.map +1 -1
- package/dist/gates/agentic/tools.d.ts +1 -1
- package/dist/gates/gate05-behavior-match.d.ts +1 -2
- package/dist/gates/index.js +57 -82
- package/dist/gates/index.js.map +1 -1
- package/dist/gates/types.d.ts +3 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/orbitals/batch/prompt-assembler.d.ts +2 -1
- package/dist/tools/index.js +5 -2
- package/dist/tools/index.js.map +1 -1
- package/package.json +2 -2
package/dist/gates/types.d.ts
CHANGED
|
@@ -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
|
}
|