@almadar/agent 1.3.1 → 1.3.3
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.d.ts +730 -2
- package/dist/agent/index.js +2057 -2
- package/dist/agent/index.js.map +1 -1
- package/dist/{firestore-checkpointer-CkNKXoun.d.ts → firestore-checkpointer-BkFR-sZM.d.ts} +1 -1
- package/dist/index.d.ts +767 -5
- package/dist/index.js +3311 -1801
- package/dist/index.js.map +1 -1
- package/dist/{index-BN4d3ObG.d.ts → interrupt-config-Bib_RCTB.d.ts} +2 -3
- package/dist/persistence/index.d.ts +2 -2
- package/package.json +4 -4
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { LLMProvider } from '@almadar/llm';
|
|
2
2
|
import { S as SubagentEventCallback, O as OrbitalCompleteCallback, D as DomainOrbitalCompleteCallback } from './orbital-subagent-CCo-ONJY.js';
|
|
3
3
|
import { BaseCheckpointSaver } from '@langchain/langgraph-checkpoint';
|
|
4
|
-
import { P as PersistenceMode,
|
|
4
|
+
import { P as PersistenceMode, F as FirestoreDb$1, S as SessionMetadata, a as SessionRecord } from './firestore-checkpointer-BkFR-sZM.js';
|
|
5
5
|
import { OrbitalSchema } from '@almadar/core';
|
|
6
6
|
import { BaseMessage } from '@langchain/core/messages';
|
|
7
|
-
import '@langchain/langgraph';
|
|
8
7
|
|
|
9
8
|
/**
|
|
10
9
|
* Context Compaction for DeepAgent
|
|
@@ -855,4 +854,4 @@ interface SkillMeta {
|
|
|
855
854
|
*/
|
|
856
855
|
declare function getInterruptConfig(_skill: SkillMeta): Record<string, boolean>;
|
|
857
856
|
|
|
858
|
-
export { type CheckpointRecord as C, DEFAULT_COMPACTION_CONFIG as D, EVENT_BUDGETS as E, type GenerationSession as G, type InterruptRecord as I, MemoryManager as M, type PatternAffinity as P, SessionManager as S, type ToolApprovalPreference as T, type UserPreference as U, type
|
|
857
|
+
export { type CheckpointRecord as C, DEFAULT_COMPACTION_CONFIG as D, EVENT_BUDGETS as E, type GenerationSession as G, type InterruptRecord as I, MemoryManager as M, type PatternAffinity as P, SessionManager as S, type ToolApprovalPreference as T, type UserPreference as U, type SessionManagerOptions as a, type Skill as b, type SkillAgentOptions as c, type SkillAgentResult as d, type SkillLoader as e, type SkillMeta as f, type SkillRefLoader as g, createSkillAgent as h, getBudgetWarningMessage as i, getEventBudget as j, getInterruptConfig as k, type ContextCompactionConfig as l, type MemoryManagerOptions as m, MemoryOrbitalSchema as n, type ProjectContext as o, type UserFeedback as p, createSummaryPrompt as q, resumeSkillAgent as r, estimateTokens as s, needsCompaction as t };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as SessionMetadata,
|
|
2
|
-
export {
|
|
1
|
+
import { S as SessionMetadata, a as SessionRecord, F as FirestoreDb, e as Session } from '../firestore-checkpointer-BkFR-sZM.js';
|
|
2
|
+
export { b as FirestoreCheckpointer, c as FirestoreCheckpointerOptions, d as FirestoreTimestamp, P as PersistenceMode } from '../firestore-checkpointer-BkFR-sZM.js';
|
|
3
3
|
import { BaseStore, Operation, OperationResults } from '@langchain/langgraph-checkpoint';
|
|
4
4
|
import '@langchain/core/runnables';
|
|
5
5
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/agent",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
4
4
|
"description": "AI agent infrastructure for Almadar orbital schema generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"uuid": "^9.0.0",
|
|
47
47
|
"zod": "^3.22.0",
|
|
48
|
-
"@almadar/llm": "1.0.16",
|
|
49
|
-
"@almadar/patterns": "1.1.1",
|
|
50
48
|
"@almadar/core": "1.0.17",
|
|
49
|
+
"@almadar/llm": "1.0.16",
|
|
51
50
|
"@almadar/integrations": "1.0.15",
|
|
52
|
-
"@almadar/
|
|
51
|
+
"@almadar/patterns": "1.1.1",
|
|
52
|
+
"@almadar/skills": "1.2.2"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
55
|
"@langchain/core": ">=1.0.0",
|