@framers/agentos 0.1.32 → 0.1.33
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/README.md +5 -2
- package/dist/api/AgentOS.d.ts +62 -1
- package/dist/api/AgentOS.d.ts.map +1 -1
- package/dist/api/AgentOS.js +177 -2
- package/dist/api/AgentOS.js.map +1 -1
- package/dist/api/AgentOSOrchestrator.d.ts +187 -0
- package/dist/api/AgentOSOrchestrator.d.ts.map +1 -1
- package/dist/api/AgentOSOrchestrator.js +709 -16
- package/dist/api/AgentOSOrchestrator.js.map +1 -1
- package/dist/cognitive_substrate/GMI.d.ts.map +1 -1
- package/dist/cognitive_substrate/GMI.js +36 -1
- package/dist/cognitive_substrate/GMI.js.map +1 -1
- package/dist/cognitive_substrate/IGMI.d.ts +21 -0
- package/dist/cognitive_substrate/IGMI.d.ts.map +1 -1
- package/dist/cognitive_substrate/IGMI.js.map +1 -1
- package/dist/config/AgentOSConfig.d.ts.map +1 -1
- package/dist/config/AgentOSConfig.js +17 -0
- package/dist/config/AgentOSConfig.js.map +1 -1
- package/dist/config/VectorStoreConfiguration.d.ts +2 -1
- package/dist/config/VectorStoreConfiguration.d.ts.map +1 -1
- package/dist/config/VectorStoreConfiguration.js.map +1 -1
- package/dist/core/knowledge/Neo4jKnowledgeGraph.d.ts +89 -0
- package/dist/core/knowledge/Neo4jKnowledgeGraph.d.ts.map +1 -0
- package/dist/core/knowledge/Neo4jKnowledgeGraph.js +683 -0
- package/dist/core/knowledge/Neo4jKnowledgeGraph.js.map +1 -0
- package/dist/core/llm/providers/implementations/OllamaProvider.d.ts +14 -1
- package/dist/core/llm/providers/implementations/OllamaProvider.d.ts.map +1 -1
- package/dist/core/llm/providers/implementations/OllamaProvider.js +142 -37
- package/dist/core/llm/providers/implementations/OllamaProvider.js.map +1 -1
- package/dist/core/llm/providers/implementations/OpenAIProvider.js +3 -3
- package/dist/core/llm/providers/implementations/OpenAIProvider.js.map +1 -1
- package/dist/core/observability/otel.d.ts +2 -0
- package/dist/core/observability/otel.d.ts.map +1 -1
- package/dist/core/observability/otel.js +14 -0
- package/dist/core/observability/otel.js.map +1 -1
- package/dist/core/orchestration/SqlTaskOutcomeTelemetryStore.d.ts +30 -0
- package/dist/core/orchestration/SqlTaskOutcomeTelemetryStore.d.ts.map +1 -0
- package/dist/core/orchestration/SqlTaskOutcomeTelemetryStore.js +123 -0
- package/dist/core/orchestration/SqlTaskOutcomeTelemetryStore.js.map +1 -0
- package/dist/core/orchestration/TurnPlanner.d.ts +89 -0
- package/dist/core/orchestration/TurnPlanner.d.ts.map +1 -0
- package/dist/core/orchestration/TurnPlanner.js +242 -0
- package/dist/core/orchestration/TurnPlanner.js.map +1 -0
- package/dist/discovery/Neo4jCapabilityGraph.d.ts +58 -0
- package/dist/discovery/Neo4jCapabilityGraph.d.ts.map +1 -0
- package/dist/discovery/Neo4jCapabilityGraph.js +226 -0
- package/dist/discovery/Neo4jCapabilityGraph.js.map +1 -0
- package/dist/discovery/index.d.ts +1 -0
- package/dist/discovery/index.d.ts.map +1 -1
- package/dist/discovery/index.js +1 -0
- package/dist/discovery/index.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/neo4j/Neo4jConnectionManager.d.ts +59 -0
- package/dist/neo4j/Neo4jConnectionManager.d.ts.map +1 -0
- package/dist/neo4j/Neo4jConnectionManager.js +115 -0
- package/dist/neo4j/Neo4jConnectionManager.js.map +1 -0
- package/dist/neo4j/Neo4jCypherRunner.d.ts +39 -0
- package/dist/neo4j/Neo4jCypherRunner.d.ts.map +1 -0
- package/dist/neo4j/Neo4jCypherRunner.js +74 -0
- package/dist/neo4j/Neo4jCypherRunner.js.map +1 -0
- package/dist/neo4j/index.d.ts +12 -0
- package/dist/neo4j/index.d.ts.map +1 -0
- package/dist/neo4j/index.js +11 -0
- package/dist/neo4j/index.js.map +1 -0
- package/dist/neo4j/types.d.ts +27 -0
- package/dist/neo4j/types.d.ts.map +1 -0
- package/dist/neo4j/types.js +6 -0
- package/dist/neo4j/types.js.map +1 -0
- package/dist/rag/VectorStoreManager.d.ts.map +1 -1
- package/dist/rag/VectorStoreManager.js +6 -7
- package/dist/rag/VectorStoreManager.js.map +1 -1
- package/dist/rag/graphrag/Neo4jGraphRAGEngine.d.ts +95 -0
- package/dist/rag/graphrag/Neo4jGraphRAGEngine.d.ts.map +1 -0
- package/dist/rag/graphrag/Neo4jGraphRAGEngine.js +748 -0
- package/dist/rag/graphrag/Neo4jGraphRAGEngine.js.map +1 -0
- package/dist/rag/graphrag/index.d.ts +1 -0
- package/dist/rag/graphrag/index.d.ts.map +1 -1
- package/dist/rag/graphrag/index.js +1 -0
- package/dist/rag/graphrag/index.js.map +1 -1
- package/dist/rag/implementations/vector_stores/Neo4jVectorStore.d.ts +55 -0
- package/dist/rag/implementations/vector_stores/Neo4jVectorStore.d.ts.map +1 -0
- package/dist/rag/implementations/vector_stores/Neo4jVectorStore.js +369 -0
- package/dist/rag/implementations/vector_stores/Neo4jVectorStore.js.map +1 -0
- package/dist/rag/implementations/vector_stores/index.d.ts +1 -0
- package/dist/rag/implementations/vector_stores/index.d.ts.map +1 -1
- package/dist/rag/implementations/vector_stores/index.js +2 -0
- package/dist/rag/implementations/vector_stores/index.js.map +1 -1
- package/package.json +5 -1
|
@@ -17,6 +17,7 @@ import { type PromptProfileConfig } from '../core/prompting/PromptProfileRouter'
|
|
|
17
17
|
import { type RollingSummaryCompactionConfig } from '../core/conversation/RollingSummaryCompactor';
|
|
18
18
|
import type { IRollingSummaryMemorySink } from '../core/conversation/IRollingSummaryMemorySink';
|
|
19
19
|
import type { ILongTermMemoryRetriever } from '../core/conversation/ILongTermMemoryRetriever';
|
|
20
|
+
import type { ITurnPlanner } from '../core/orchestration/TurnPlanner';
|
|
20
21
|
export interface RollingSummaryCompactionProfileDefinition {
|
|
21
22
|
config: RollingSummaryCompactionConfig;
|
|
22
23
|
systemPrompt?: string;
|
|
@@ -26,6 +27,158 @@ export interface RollingSummaryCompactionProfilesConfig {
|
|
|
26
27
|
defaultProfileByMode?: Record<string, string>;
|
|
27
28
|
profiles: Record<string, RollingSummaryCompactionProfileDefinition>;
|
|
28
29
|
}
|
|
30
|
+
export type LongTermMemoryRecallProfile = 'aggressive' | 'balanced' | 'conservative';
|
|
31
|
+
export interface AgentOSLongTermMemoryRecallConfig {
|
|
32
|
+
/**
|
|
33
|
+
* Recall profile used to seed defaults.
|
|
34
|
+
* - aggressive: higher retrieval frequency + larger context budget
|
|
35
|
+
* - balanced: middle ground
|
|
36
|
+
* - conservative: lower retrieval frequency + smaller context budget
|
|
37
|
+
*
|
|
38
|
+
* Default: `aggressive`
|
|
39
|
+
*/
|
|
40
|
+
profile?: LongTermMemoryRecallProfile;
|
|
41
|
+
/**
|
|
42
|
+
* Retrieve durable memory every N user turns.
|
|
43
|
+
* Default depends on `profile`.
|
|
44
|
+
*/
|
|
45
|
+
cadenceTurns?: number;
|
|
46
|
+
/**
|
|
47
|
+
* Force memory retrieval on rolling-summary compaction turns.
|
|
48
|
+
* Default depends on `profile`.
|
|
49
|
+
*/
|
|
50
|
+
forceOnCompaction?: boolean;
|
|
51
|
+
/**
|
|
52
|
+
* Character budget for retrieved long-term memory context.
|
|
53
|
+
* Default depends on `profile`.
|
|
54
|
+
*/
|
|
55
|
+
maxContextChars?: number;
|
|
56
|
+
/**
|
|
57
|
+
* Per-scope retrieval caps.
|
|
58
|
+
* Default depends on `profile`.
|
|
59
|
+
*/
|
|
60
|
+
topKByScope?: Partial<Record<'user' | 'persona' | 'organization', number>>;
|
|
61
|
+
}
|
|
62
|
+
export type TenantRoutingMode = 'multi_tenant' | 'single_tenant';
|
|
63
|
+
export interface AgentOSTenantRoutingConfig {
|
|
64
|
+
/**
|
|
65
|
+
* Tenant routing mode.
|
|
66
|
+
* - multi_tenant: trust inbound `organizationId` as request-scoped context
|
|
67
|
+
* - single_tenant: collapse to a single org context for all turns
|
|
68
|
+
*
|
|
69
|
+
* Default: `multi_tenant`
|
|
70
|
+
*/
|
|
71
|
+
mode?: TenantRoutingMode;
|
|
72
|
+
/**
|
|
73
|
+
* Optional default org ID used in `single_tenant` mode when request omits `organizationId`.
|
|
74
|
+
*/
|
|
75
|
+
defaultOrganizationId?: string;
|
|
76
|
+
/**
|
|
77
|
+
* In `single_tenant` mode, reject mismatched `organizationId` values when a
|
|
78
|
+
* default org is configured.
|
|
79
|
+
*
|
|
80
|
+
* Default: false
|
|
81
|
+
*/
|
|
82
|
+
strictOrganizationIsolation?: boolean;
|
|
83
|
+
}
|
|
84
|
+
export type TaskOutcomeTelemetryScope = 'global' | 'organization' | 'organization_persona';
|
|
85
|
+
export interface AgentOSTaskOutcomeTelemetryConfig {
|
|
86
|
+
/**
|
|
87
|
+
* Enables streaming task-outcome KPI aggregates.
|
|
88
|
+
*
|
|
89
|
+
* Default: true
|
|
90
|
+
*/
|
|
91
|
+
enabled?: boolean;
|
|
92
|
+
/**
|
|
93
|
+
* Number of recent outcomes retained per scope.
|
|
94
|
+
*
|
|
95
|
+
* Default: 100
|
|
96
|
+
*/
|
|
97
|
+
rollingWindowSize?: number;
|
|
98
|
+
/**
|
|
99
|
+
* Scope used for KPI window aggregation.
|
|
100
|
+
* - global: all turns
|
|
101
|
+
* - organization: separate window per organization
|
|
102
|
+
* - organization_persona: separate window per org+persona
|
|
103
|
+
*
|
|
104
|
+
* Default: organization_persona
|
|
105
|
+
*/
|
|
106
|
+
scope?: TaskOutcomeTelemetryScope;
|
|
107
|
+
/**
|
|
108
|
+
* Enables low-success alert emission in metadata updates.
|
|
109
|
+
*
|
|
110
|
+
* Default: true
|
|
111
|
+
*/
|
|
112
|
+
emitAlerts?: boolean;
|
|
113
|
+
/**
|
|
114
|
+
* Minimum weighted success rate required to avoid emitting alerts.
|
|
115
|
+
*
|
|
116
|
+
* Default: 0.55
|
|
117
|
+
*/
|
|
118
|
+
alertBelowWeightedSuccessRate?: number;
|
|
119
|
+
/**
|
|
120
|
+
* Minimum samples required before alert evaluation starts.
|
|
121
|
+
*
|
|
122
|
+
* Default: 8
|
|
123
|
+
*/
|
|
124
|
+
alertMinSamples?: number;
|
|
125
|
+
/**
|
|
126
|
+
* Minimum time between repeated alerts for the same scope key (milliseconds).
|
|
127
|
+
*
|
|
128
|
+
* Default: 60000
|
|
129
|
+
*/
|
|
130
|
+
alertCooldownMs?: number;
|
|
131
|
+
}
|
|
132
|
+
export interface AgentOSAdaptiveExecutionConfig {
|
|
133
|
+
/**
|
|
134
|
+
* Enables adaptive execution policy adjustments based on rolling task outcomes.
|
|
135
|
+
*
|
|
136
|
+
* Default: true
|
|
137
|
+
*/
|
|
138
|
+
enabled?: boolean;
|
|
139
|
+
/**
|
|
140
|
+
* Minimum sample count before adaptive rules can apply.
|
|
141
|
+
*
|
|
142
|
+
* Default: 5
|
|
143
|
+
*/
|
|
144
|
+
minSamples?: number;
|
|
145
|
+
/**
|
|
146
|
+
* Minimum weighted success rate required to keep discovery-only tool selection.
|
|
147
|
+
* If current rolling KPI drops below this threshold, orchestrator can force `toolSelectionMode = all`.
|
|
148
|
+
*
|
|
149
|
+
* Default: 0.7
|
|
150
|
+
*/
|
|
151
|
+
minWeightedSuccessRate?: number;
|
|
152
|
+
/**
|
|
153
|
+
* When true, downgrade discovered-only tool selection to full toolset under poor KPI conditions.
|
|
154
|
+
*
|
|
155
|
+
* Default: true
|
|
156
|
+
*/
|
|
157
|
+
forceAllToolsWhenDegraded?: boolean;
|
|
158
|
+
/**
|
|
159
|
+
* When true, force fail-open execution mode (`toolFailureMode = fail_open`) under poor KPI conditions.
|
|
160
|
+
* Explicit per-request `toolFailureMode = fail_closed` overrides are preserved.
|
|
161
|
+
*
|
|
162
|
+
* Default: true
|
|
163
|
+
*/
|
|
164
|
+
forceFailOpenWhenDegraded?: boolean;
|
|
165
|
+
}
|
|
166
|
+
type TaskOutcomeStatus = 'success' | 'partial' | 'failed';
|
|
167
|
+
type TaskOutcomeKpiWindowEntry = {
|
|
168
|
+
status: TaskOutcomeStatus;
|
|
169
|
+
score: number;
|
|
170
|
+
timestamp: number;
|
|
171
|
+
};
|
|
172
|
+
export interface ITaskOutcomeTelemetryStore {
|
|
173
|
+
/**
|
|
174
|
+
* Load persisted KPI windows keyed by telemetry scope key.
|
|
175
|
+
*/
|
|
176
|
+
loadWindows(): Promise<Record<string, TaskOutcomeKpiWindowEntry[]>>;
|
|
177
|
+
/**
|
|
178
|
+
* Persist a single KPI window snapshot.
|
|
179
|
+
*/
|
|
180
|
+
saveWindow(scopeKey: string, entries: TaskOutcomeKpiWindowEntry[]): Promise<void>;
|
|
181
|
+
}
|
|
29
182
|
/**
|
|
30
183
|
* @typedef {Object} AgentOSOrchestratorConfig
|
|
31
184
|
* Configuration options for the AgentOSOrchestrator.
|
|
@@ -60,6 +213,23 @@ export interface AgentOSOrchestratorConfig {
|
|
|
60
213
|
rollingSummarySystemPrompt?: string;
|
|
61
214
|
/** Optional metadata key to store rolling-summary state under (defaults to `rollingSummaryState`). */
|
|
62
215
|
rollingSummaryStateKey?: string;
|
|
216
|
+
/**
|
|
217
|
+
* Controls long-term memory retrieval cadence and depth.
|
|
218
|
+
* Default profile is intentionally aggressive to maximize recall.
|
|
219
|
+
*/
|
|
220
|
+
longTermMemoryRecall?: AgentOSLongTermMemoryRecallConfig;
|
|
221
|
+
/**
|
|
222
|
+
* Controls request-time organization routing behavior.
|
|
223
|
+
*/
|
|
224
|
+
tenantRouting?: AgentOSTenantRoutingConfig;
|
|
225
|
+
/**
|
|
226
|
+
* Controls rolling KPI emission for task outcomes.
|
|
227
|
+
*/
|
|
228
|
+
taskOutcomeTelemetry?: AgentOSTaskOutcomeTelemetryConfig;
|
|
229
|
+
/**
|
|
230
|
+
* Controls adaptive execution policy adjustments derived from rolling task outcomes.
|
|
231
|
+
*/
|
|
232
|
+
adaptiveExecution?: AgentOSAdaptiveExecutionConfig;
|
|
63
233
|
}
|
|
64
234
|
/**
|
|
65
235
|
* @typedef {Object} AgentOSOrchestratorDependencies
|
|
@@ -77,6 +247,7 @@ export interface AgentOSOrchestratorDependencies {
|
|
|
77
247
|
conversationManager: ConversationManager;
|
|
78
248
|
streamingManager: StreamingManager;
|
|
79
249
|
modelProviderManager: AIModelProviderManager;
|
|
250
|
+
turnPlanner?: ITurnPlanner;
|
|
80
251
|
/**
|
|
81
252
|
* Optional sink for persisting rolling-memory outputs (`summary_markdown` + `memory_json`)
|
|
82
253
|
* into a long-term store (RAG / knowledge graph / database).
|
|
@@ -87,6 +258,11 @@ export interface AgentOSOrchestratorDependencies {
|
|
|
87
258
|
* durable memories (user/persona/org) into prompts on a cadence.
|
|
88
259
|
*/
|
|
89
260
|
longTermMemoryRetriever?: ILongTermMemoryRetriever;
|
|
261
|
+
/**
|
|
262
|
+
* Optional persistence store for task outcome KPI windows.
|
|
263
|
+
* Use this to make rolling success-rate telemetry survive orchestrator restarts.
|
|
264
|
+
*/
|
|
265
|
+
taskOutcomeTelemetryStore?: ITaskOutcomeTelemetryStore;
|
|
90
266
|
}
|
|
91
267
|
/**
|
|
92
268
|
* @class AgentOSOrchestrator
|
|
@@ -101,6 +277,8 @@ export declare class AgentOSOrchestrator {
|
|
|
101
277
|
private initialized;
|
|
102
278
|
private config;
|
|
103
279
|
private dependencies;
|
|
280
|
+
private taskOutcomeKpiWindows;
|
|
281
|
+
private taskOutcomeAlertState;
|
|
104
282
|
/**
|
|
105
283
|
* A map to hold ongoing stream contexts.
|
|
106
284
|
* Key: streamId (generated by orchestrator for this interaction flow).
|
|
@@ -127,6 +305,13 @@ export declare class AgentOSOrchestrator {
|
|
|
127
305
|
* @throws {GMIError} If not initialized.
|
|
128
306
|
*/
|
|
129
307
|
private ensureInitialized;
|
|
308
|
+
private resolveOrganizationContext;
|
|
309
|
+
private resolveTaskOutcomeScopeKey;
|
|
310
|
+
private updateTaskOutcomeKpi;
|
|
311
|
+
private getCurrentTaskOutcomeKpi;
|
|
312
|
+
private summarizeTaskOutcomeWindow;
|
|
313
|
+
private maybeApplyAdaptiveExecutionPolicy;
|
|
314
|
+
private maybeBuildTaskOutcomeAlert;
|
|
130
315
|
/**
|
|
131
316
|
* Helper method to create and push response chunks via StreamingManager.
|
|
132
317
|
* @private
|
|
@@ -138,6 +323,7 @@ export declare class AgentOSOrchestrator {
|
|
|
138
323
|
* @private
|
|
139
324
|
*/
|
|
140
325
|
private pushErrorChunk;
|
|
326
|
+
private emitExecutionLifecycleUpdate;
|
|
141
327
|
/**
|
|
142
328
|
* Orchestrates a full logical turn for a user request.
|
|
143
329
|
* This involves managing GMI interaction, tool calls, and streaming responses.
|
|
@@ -199,4 +385,5 @@ export declare class AgentOSOrchestrator {
|
|
|
199
385
|
*/
|
|
200
386
|
shutdown(): Promise<void>;
|
|
201
387
|
}
|
|
388
|
+
export {};
|
|
202
389
|
//# sourceMappingURL=AgentOSOrchestrator.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AgentOSOrchestrator.d.ts","sourceRoot":"","sources":["../../src/api/AgentOSOrchestrator.ts"],"names":[],"mappings":"AACA;;;;;;;GAOG;AAEH,OAAO,EAAE,YAAY,EAAqB,MAAM,sBAAsB,CAAC;AAcvE,OAAO,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAC;AAY/D,OAAO,EAAE,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;AAG/E,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AAGzE,OAAO,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,oCAAoC,CAAC;AAEhF,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AAC9E,OAAO,EAAE,sBAAsB,EAAE,MAAM,8CAA8C,CAAC;AACtF,OAAO,EAGL,KAAK,mBAAmB,EAEzB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAGL,KAAK,8BAA8B,EAEpC,MAAM,8CAA8C,CAAC;AACtD,OAAO,KAAK,EAAE,yBAAyB,EAA8B,MAAM,gDAAgD,CAAC;AAC5H,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,+CAA+C,CAAC;
|
|
1
|
+
{"version":3,"file":"AgentOSOrchestrator.d.ts","sourceRoot":"","sources":["../../src/api/AgentOSOrchestrator.ts"],"names":[],"mappings":"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"}
|