@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
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* @packageDocumentation
|
|
11
11
|
*/
|
|
12
12
|
import type { OrbitalDefinition } from '@almadar/core/types';
|
|
13
|
+
import type { LLMProvider } from '@almadar/llm';
|
|
13
14
|
import type { AssembledPrompt } from '../cache/index.js';
|
|
14
15
|
/**
|
|
15
16
|
* Assembled prompt for batch generation.
|
|
@@ -78,7 +79,7 @@ export declare function assembleBatchPrompt(orbitals: OrbitalDefinition[], optio
|
|
|
78
79
|
*/
|
|
79
80
|
export declare function splitIntoBatches(orbitals: OrbitalDefinition[], options?: {
|
|
80
81
|
maxBatchSize?: number;
|
|
81
|
-
provider?:
|
|
82
|
+
provider?: LLMProvider;
|
|
82
83
|
preserveRelationships?: boolean;
|
|
83
84
|
}): OrbitalDefinition[][];
|
|
84
85
|
/**
|
package/dist/tools/index.js
CHANGED
|
@@ -1901,7 +1901,8 @@ var PROVIDER_CONCURRENCY_LIMITS = {
|
|
|
1901
1901
|
openai: 5,
|
|
1902
1902
|
deepseek: 3,
|
|
1903
1903
|
kimi: 3,
|
|
1904
|
-
openrouter: 5
|
|
1904
|
+
openrouter: 5,
|
|
1905
|
+
orbgen: 3
|
|
1905
1906
|
};
|
|
1906
1907
|
var PROVIDER_BATCH_SIZES = {
|
|
1907
1908
|
anthropic: 3,
|
|
@@ -1912,8 +1913,10 @@ var PROVIDER_BATCH_SIZES = {
|
|
|
1912
1913
|
// Conservative for DeepSeek
|
|
1913
1914
|
kimi: 3,
|
|
1914
1915
|
// Conservative for Kimi
|
|
1915
|
-
openrouter: 5
|
|
1916
|
+
openrouter: 5,
|
|
1916
1917
|
// OpenRouter proxies multiple providers
|
|
1918
|
+
orbgen: 3
|
|
1919
|
+
// Conservative for OrbGen
|
|
1917
1920
|
};
|
|
1918
1921
|
var BATCH_MAX_TOKENS = 12e3;
|
|
1919
1922
|
function getEntityName2(entity) {
|