@agnt5/sdk 0.2.1
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 +183 -0
- package/dist/__tests__/integration/helpers.d.ts +41 -0
- package/dist/__tests__/integration/helpers.d.ts.map +1 -0
- package/dist/__tests__/integration/helpers.js +78 -0
- package/dist/__tests__/integration/helpers.js.map +1 -0
- package/dist/agent.d.ts +260 -0
- package/dist/agent.d.ts.map +1 -0
- package/dist/agent.js +493 -0
- package/dist/agent.js.map +1 -0
- package/dist/async-context.d.ts +57 -0
- package/dist/async-context.d.ts.map +1 -0
- package/dist/async-context.js +52 -0
- package/dist/async-context.js.map +1 -0
- package/dist/batch.d.ts +116 -0
- package/dist/batch.d.ts.map +1 -0
- package/dist/batch.js +98 -0
- package/dist/batch.js.map +1 -0
- package/dist/chat.d.ts +137 -0
- package/dist/chat.d.ts.map +1 -0
- package/dist/chat.js +278 -0
- package/dist/chat.js.map +1 -0
- package/dist/client.d.ts +394 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +757 -0
- package/dist/client.js.map +1 -0
- package/dist/context.d.ts +47 -0
- package/dist/context.d.ts.map +1 -0
- package/dist/context.js +244 -0
- package/dist/context.js.map +1 -0
- package/dist/errors.d.ts +148 -0
- package/dist/errors.d.ts.map +1 -0
- package/dist/errors.js +201 -0
- package/dist/errors.js.map +1 -0
- package/dist/eval.d.ts +242 -0
- package/dist/eval.d.ts.map +1 -0
- package/dist/eval.js +452 -0
- package/dist/eval.js.map +1 -0
- package/dist/event-emitter.d.ts +28 -0
- package/dist/event-emitter.d.ts.map +1 -0
- package/dist/event-emitter.js +79 -0
- package/dist/event-emitter.js.map +1 -0
- package/dist/events.d.ts +285 -0
- package/dist/events.d.ts.map +1 -0
- package/dist/events.js +256 -0
- package/dist/events.js.map +1 -0
- package/dist/function.d.ts +61 -0
- package/dist/function.d.ts.map +1 -0
- package/dist/function.js +78 -0
- package/dist/function.js.map +1 -0
- package/dist/index.d.ts +67 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +80 -0
- package/dist/index.js.map +1 -0
- package/dist/lm.d.ts +301 -0
- package/dist/lm.d.ts.map +1 -0
- package/dist/lm.js +283 -0
- package/dist/lm.js.map +1 -0
- package/dist/logging.d.ts +68 -0
- package/dist/logging.d.ts.map +1 -0
- package/dist/logging.js +165 -0
- package/dist/logging.js.map +1 -0
- package/dist/mcp-server.d.ts +98 -0
- package/dist/mcp-server.d.ts.map +1 -0
- package/dist/mcp-server.js +307 -0
- package/dist/mcp-server.js.map +1 -0
- package/dist/mcp.d.ts +73 -0
- package/dist/mcp.d.ts.map +1 -0
- package/dist/mcp.js +224 -0
- package/dist/mcp.js.map +1 -0
- package/dist/memory.d.ts +234 -0
- package/dist/memory.d.ts.map +1 -0
- package/dist/memory.js +609 -0
- package/dist/memory.js.map +1 -0
- package/dist/platform-adapters.d.ts +121 -0
- package/dist/platform-adapters.d.ts.map +1 -0
- package/dist/platform-adapters.js +174 -0
- package/dist/platform-adapters.js.map +1 -0
- package/dist/platform-context.d.ts +55 -0
- package/dist/platform-context.d.ts.map +1 -0
- package/dist/platform-context.js +196 -0
- package/dist/platform-context.js.map +1 -0
- package/dist/retry-utils.d.ts +169 -0
- package/dist/retry-utils.d.ts.map +1 -0
- package/dist/retry-utils.js +304 -0
- package/dist/retry-utils.js.map +1 -0
- package/dist/sandbox.d.ts +103 -0
- package/dist/sandbox.d.ts.map +1 -0
- package/dist/sandbox.js +168 -0
- package/dist/sandbox.js.map +1 -0
- package/dist/schema-utils.d.ts +250 -0
- package/dist/schema-utils.d.ts.map +1 -0
- package/dist/schema-utils.js +444 -0
- package/dist/schema-utils.js.map +1 -0
- package/dist/scorer.d.ts +130 -0
- package/dist/scorer.d.ts.map +1 -0
- package/dist/scorer.js +211 -0
- package/dist/scorer.js.map +1 -0
- package/dist/state.d.ts +92 -0
- package/dist/state.d.ts.map +1 -0
- package/dist/state.js +151 -0
- package/dist/state.js.map +1 -0
- package/dist/tool.d.ts +120 -0
- package/dist/tool.d.ts.map +1 -0
- package/dist/tool.js +215 -0
- package/dist/tool.js.map +1 -0
- package/dist/tracing.d.ts +82 -0
- package/dist/tracing.d.ts.map +1 -0
- package/dist/tracing.js +206 -0
- package/dist/tracing.js.map +1 -0
- package/dist/types.d.ts +139 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/dist/worker.d.ts +111 -0
- package/dist/worker.d.ts.map +1 -0
- package/dist/worker.js +944 -0
- package/dist/worker.js.map +1 -0
- package/dist/workflow-utils.d.ts +257 -0
- package/dist/workflow-utils.d.ts.map +1 -0
- package/dist/workflow-utils.js +370 -0
- package/dist/workflow-utils.js.map +1 -0
- package/dist/workflow.d.ts +78 -0
- package/dist/workflow.d.ts.map +1 -0
- package/dist/workflow.js +138 -0
- package/dist/workflow.js.map +1 -0
- package/package.json +86 -0
package/dist/memory.d.ts
ADDED
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Memory APIs for AGNT5 agents and workflows.
|
|
3
|
+
*
|
|
4
|
+
* Provides:
|
|
5
|
+
* - ConversationMemory: Message history storage (state-adapter backed)
|
|
6
|
+
* - SemanticMemory: Vector-backed similarity search (interface + adapter pattern)
|
|
7
|
+
* - GraphMemory: In-memory knowledge graph with BFS traversal
|
|
8
|
+
* - MemoryScope: Multi-scope isolation (user, session, agent, tenant, global)
|
|
9
|
+
*/
|
|
10
|
+
import type { StateAdapter } from './state.js';
|
|
11
|
+
/** Memory scope for isolation */
|
|
12
|
+
export declare const MemoryScope: {
|
|
13
|
+
readonly USER: "user";
|
|
14
|
+
readonly TENANT: "tenant";
|
|
15
|
+
readonly AGENT: "agent";
|
|
16
|
+
readonly SESSION: "session";
|
|
17
|
+
readonly GLOBAL: "global";
|
|
18
|
+
readonly validScopes: () => string[];
|
|
19
|
+
readonly isValid: (scope: string) => boolean;
|
|
20
|
+
/** Generate collection name for a scope */
|
|
21
|
+
readonly collectionName: (scope: string, scopeId: string) => string;
|
|
22
|
+
};
|
|
23
|
+
export type MemoryScopeType = 'user' | 'tenant' | 'agent' | 'session' | 'global';
|
|
24
|
+
/** A message in conversation history */
|
|
25
|
+
export interface MemoryMessage {
|
|
26
|
+
role: string;
|
|
27
|
+
content: string;
|
|
28
|
+
timestamp: number;
|
|
29
|
+
metadata: Record<string, any>;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Conversation memory backed by a StateAdapter.
|
|
33
|
+
*
|
|
34
|
+
* Stores message history per session, suitable for multi-turn conversations.
|
|
35
|
+
*
|
|
36
|
+
* @example
|
|
37
|
+
* ```typescript
|
|
38
|
+
* const memory = new ConversationMemory('session-123');
|
|
39
|
+
* await memory.add('user', 'Hello!');
|
|
40
|
+
* await memory.add('assistant', 'Hi there!');
|
|
41
|
+
* const messages = await memory.getMessages();
|
|
42
|
+
* ```
|
|
43
|
+
*/
|
|
44
|
+
export declare class ConversationMemory {
|
|
45
|
+
private _sessionId;
|
|
46
|
+
private _adapter;
|
|
47
|
+
private _storeKey;
|
|
48
|
+
constructor(sessionId: string, adapter?: StateAdapter);
|
|
49
|
+
get sessionId(): string;
|
|
50
|
+
/** Load the current session data */
|
|
51
|
+
private loadData;
|
|
52
|
+
/** Save session data */
|
|
53
|
+
private saveData;
|
|
54
|
+
/**
|
|
55
|
+
* Get conversation messages, most recent first.
|
|
56
|
+
*
|
|
57
|
+
* @param limit - Maximum number of messages to return (default: 50)
|
|
58
|
+
*/
|
|
59
|
+
getMessages(limit?: number): Promise<MemoryMessage[]>;
|
|
60
|
+
/**
|
|
61
|
+
* Add a message to the conversation.
|
|
62
|
+
*/
|
|
63
|
+
add(role: string, content: string, metadata?: Record<string, any>): Promise<void>;
|
|
64
|
+
/** Clear all messages */
|
|
65
|
+
clear(): Promise<void>;
|
|
66
|
+
/**
|
|
67
|
+
* Get messages formatted for LM consumption.
|
|
68
|
+
*
|
|
69
|
+
* @param limit - Maximum number of messages to return
|
|
70
|
+
* @returns Messages as { role, content } objects
|
|
71
|
+
*/
|
|
72
|
+
getAsLmMessages(limit?: number): Promise<Array<{
|
|
73
|
+
role: string;
|
|
74
|
+
content: string;
|
|
75
|
+
}>>;
|
|
76
|
+
}
|
|
77
|
+
/** Metadata associated with a memory entry */
|
|
78
|
+
export interface MemoryMetadata {
|
|
79
|
+
source?: string;
|
|
80
|
+
createdAt?: string;
|
|
81
|
+
extra: Record<string, string>;
|
|
82
|
+
}
|
|
83
|
+
/** Result from a semantic memory search */
|
|
84
|
+
export interface MemoryResult {
|
|
85
|
+
id: string;
|
|
86
|
+
content: string;
|
|
87
|
+
score: number;
|
|
88
|
+
metadata: MemoryMetadata;
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* Adapter interface for semantic memory backends (embeddings + vector DB).
|
|
92
|
+
*/
|
|
93
|
+
export interface SemanticMemoryAdapter {
|
|
94
|
+
store(collection: string, content: string, metadata?: MemoryMetadata): Promise<string>;
|
|
95
|
+
storeBatch(collection: string, contents: string[], metadata?: MemoryMetadata[]): Promise<string[]>;
|
|
96
|
+
search(collection: string, query: string, limit: number, minScore?: number): Promise<MemoryResult[]>;
|
|
97
|
+
get(collection: string, memoryId: string): Promise<MemoryResult | null>;
|
|
98
|
+
forget(collection: string, memoryId: string): Promise<boolean>;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* In-memory semantic memory adapter using simple string similarity.
|
|
102
|
+
*
|
|
103
|
+
* Uses word overlap (Jaccard) as a stand-in for real embeddings.
|
|
104
|
+
* For production, use a real vector DB adapter.
|
|
105
|
+
*/
|
|
106
|
+
export declare class InMemorySemanticAdapter implements SemanticMemoryAdapter {
|
|
107
|
+
private collections;
|
|
108
|
+
private getCollection;
|
|
109
|
+
private tokenize;
|
|
110
|
+
private jaccard;
|
|
111
|
+
store(collection: string, content: string, metadata?: MemoryMetadata): Promise<string>;
|
|
112
|
+
storeBatch(collection: string, contents: string[], metadata?: MemoryMetadata[]): Promise<string[]>;
|
|
113
|
+
search(collection: string, query: string, limit: number, minScore?: number): Promise<MemoryResult[]>;
|
|
114
|
+
get(collection: string, memoryId: string): Promise<MemoryResult | null>;
|
|
115
|
+
forget(collection: string, memoryId: string): Promise<boolean>;
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* Semantic memory with vector-backed similarity search.
|
|
119
|
+
*
|
|
120
|
+
* @example
|
|
121
|
+
* ```typescript
|
|
122
|
+
* const memory = new SemanticMemory('user', 'user-123');
|
|
123
|
+
* const id = await memory.store('TypeScript is great for type safety');
|
|
124
|
+
* const results = await memory.search('type checking', 5);
|
|
125
|
+
* ```
|
|
126
|
+
*/
|
|
127
|
+
export declare class SemanticMemory {
|
|
128
|
+
private _scope;
|
|
129
|
+
private _scopeId;
|
|
130
|
+
private _adapter;
|
|
131
|
+
private _collection;
|
|
132
|
+
constructor(scope: MemoryScopeType, scopeId: string, adapter?: SemanticMemoryAdapter);
|
|
133
|
+
get scope(): MemoryScopeType;
|
|
134
|
+
get scopeId(): string;
|
|
135
|
+
get collectionName(): string;
|
|
136
|
+
/** Store a content string. Returns the memory ID. */
|
|
137
|
+
store(content: string, metadata?: MemoryMetadata): Promise<string>;
|
|
138
|
+
/** Store multiple content strings. Returns memory IDs. */
|
|
139
|
+
storeBatch(contents: string[], metadata?: MemoryMetadata[]): Promise<string[]>;
|
|
140
|
+
/** Search for similar content. */
|
|
141
|
+
search(query: string, limit?: number, minScore?: number): Promise<MemoryResult[]>;
|
|
142
|
+
/** Get a specific memory by ID. */
|
|
143
|
+
get(memoryId: string): Promise<MemoryResult | null>;
|
|
144
|
+
/** Delete a memory by ID. */
|
|
145
|
+
forget(memoryId: string): Promise<boolean>;
|
|
146
|
+
/**
|
|
147
|
+
* Create a SemanticMemory backed by real embeddings + vector DB via NAPI.
|
|
148
|
+
*
|
|
149
|
+
* Auto-detects embedder and vector DB from environment variables:
|
|
150
|
+
* - OPENAI_API_KEY → OpenAI embeddings
|
|
151
|
+
* - QDRANT_URL, PINECONE_API_KEY, etc. → vector DB
|
|
152
|
+
*
|
|
153
|
+
* Falls back to InMemorySemanticAdapter if NAPI is unavailable.
|
|
154
|
+
*/
|
|
155
|
+
static fromEnv(scope: MemoryScopeType, scopeId: string): Promise<SemanticMemory>;
|
|
156
|
+
}
|
|
157
|
+
/** A node in the knowledge graph */
|
|
158
|
+
export interface GraphNode {
|
|
159
|
+
id: string;
|
|
160
|
+
nodeType: string;
|
|
161
|
+
properties: Record<string, string>;
|
|
162
|
+
}
|
|
163
|
+
/** A relationship between two nodes */
|
|
164
|
+
export interface GraphRelationship {
|
|
165
|
+
id: string;
|
|
166
|
+
fromNode: string;
|
|
167
|
+
toNode: string;
|
|
168
|
+
relationshipType: string;
|
|
169
|
+
properties: Record<string, string>;
|
|
170
|
+
createdAt: number;
|
|
171
|
+
}
|
|
172
|
+
/** Result of a graph traversal */
|
|
173
|
+
export interface GraphTraversalResult {
|
|
174
|
+
startNode: string;
|
|
175
|
+
nodes: GraphNode[];
|
|
176
|
+
relationships: GraphRelationship[];
|
|
177
|
+
depth: number;
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* In-memory knowledge graph with BFS traversal.
|
|
181
|
+
*
|
|
182
|
+
* @example
|
|
183
|
+
* ```typescript
|
|
184
|
+
* const graph = new GraphMemory('user:alice');
|
|
185
|
+
* await graph.upsertNode('alice', 'User', { name: 'Alice' });
|
|
186
|
+
* await graph.upsertNode('python', 'Topic', { name: 'Python' });
|
|
187
|
+
* await graph.relate('alice', 'python', 'likes');
|
|
188
|
+
*
|
|
189
|
+
* const result = await graph.traverse('alice', 2);
|
|
190
|
+
* console.log(result.nodes); // alice + python
|
|
191
|
+
* ```
|
|
192
|
+
*/
|
|
193
|
+
export declare class GraphMemory {
|
|
194
|
+
private _scope;
|
|
195
|
+
private _nodes;
|
|
196
|
+
private _relationships;
|
|
197
|
+
private _fromIndex;
|
|
198
|
+
private _toIndex;
|
|
199
|
+
private _native;
|
|
200
|
+
constructor(scope: string);
|
|
201
|
+
/**
|
|
202
|
+
* Create a GraphMemory backed by the Rust core via NAPI.
|
|
203
|
+
* Falls back to in-memory JS implementation if NAPI is unavailable.
|
|
204
|
+
*/
|
|
205
|
+
static fromNapi(scope: string): GraphMemory;
|
|
206
|
+
get scope(): string;
|
|
207
|
+
/** Create or update a node */
|
|
208
|
+
upsertNode(nodeId: string, nodeType: string, properties?: Record<string, string>): Promise<string>;
|
|
209
|
+
/** Get a node by ID */
|
|
210
|
+
getNode(nodeId: string): Promise<GraphNode | null>;
|
|
211
|
+
/** Delete a node and all its relationships */
|
|
212
|
+
deleteNode(nodeId: string): Promise<boolean>;
|
|
213
|
+
/** Create a relationship between two nodes */
|
|
214
|
+
relate(fromNode: string, toNode: string, relationshipType: string, properties?: Record<string, string>): Promise<string>;
|
|
215
|
+
/** Query relationships with optional filters */
|
|
216
|
+
queryRelationships(opts?: {
|
|
217
|
+
fromNode?: string;
|
|
218
|
+
toNode?: string;
|
|
219
|
+
relationshipType?: string;
|
|
220
|
+
limit?: number;
|
|
221
|
+
}): Promise<GraphRelationship[]>;
|
|
222
|
+
/** Delete a relationship by ID */
|
|
223
|
+
deleteRelationship(relationshipId: string): Promise<boolean>;
|
|
224
|
+
/**
|
|
225
|
+
* BFS traversal from a starting node.
|
|
226
|
+
*
|
|
227
|
+
* @param startNode - Starting node ID
|
|
228
|
+
* @param depth - Maximum traversal depth (default: 2)
|
|
229
|
+
* @param relationshipTypes - Filter by relationship types
|
|
230
|
+
* @param nodeTypes - Filter by node types
|
|
231
|
+
*/
|
|
232
|
+
traverse(startNode: string, depth?: number, relationshipTypes?: string[], nodeTypes?: string[]): Promise<GraphTraversalResult>;
|
|
233
|
+
}
|
|
234
|
+
//# sourceMappingURL=memory.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"memory.d.ts","sourceRoot":"","sources":["../src/memory.ts"],"names":[],"mappings":"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"}
|