@almadar/agent 3.5.5 → 3.5.6
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/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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/agent",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.6",
|
|
4
4
|
"description": "AI agent infrastructure for Almadar orbital schema generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@almadar/llm": ">=2.2.0",
|
|
61
61
|
"@almadar/patterns": ">=2.6.0",
|
|
62
62
|
"@almadar/skills": ">=2.5.0",
|
|
63
|
-
"@almadar/std": ">=3.0
|
|
63
|
+
"@almadar/std": ">=3.1.0",
|
|
64
64
|
"langsmith": "^0.1.0",
|
|
65
65
|
"uuid": "^9.0.0",
|
|
66
66
|
"zod": "^3.22.0"
|