@almadar/agent 3.5.4 → 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
|
@@ -7,8 +7,20 @@
|
|
|
7
7
|
* @packageDocumentation
|
|
8
8
|
*/
|
|
9
9
|
import type { OrbitalSchema } from '@almadar/core/types';
|
|
10
|
-
/**
|
|
11
|
-
|
|
10
|
+
/**
|
|
11
|
+
* Providers available for gated construction.
|
|
12
|
+
*
|
|
13
|
+
* - deepseek: DeepSeek V3. Reliable baseline, good at all gates.
|
|
14
|
+
* - zhipu: Zhipu GLM-4.7 via OpenRouter.
|
|
15
|
+
* - qwen3.5: Qwen3.5-9B via OpenRouter. Thinking model, unreliable for structured JSON.
|
|
16
|
+
* - gemma3-4b: Google Gemma 3 4B via OpenRouter. Best small model: 6/6 complex decomposition,
|
|
17
|
+
* 100% behavior matching, fastest (0.5s match, 4.7s simple), FREE.
|
|
18
|
+
* - mistral-small: Mistral Small 3.1 24B via OpenRouter. Strong runner-up: 6/6 complex,
|
|
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.
|
|
22
|
+
*/
|
|
23
|
+
export type GateProvider = 'deepseek' | 'zhipu' | 'qwen3.5' | 'gemma3-4b' | 'mistral-small' | 'mistral-medium';
|
|
12
24
|
/** Whether the behavior source is injected into the user prompt. */
|
|
13
25
|
export type GateMode = 'guided' | 'pure';
|
|
14
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"
|