agents 0.0.0-c3e8618 → 0.0.0-c552d8b
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/ai-chat-agent.d.ts +47 -23
- package/dist/ai-chat-agent.js +234 -0
- package/dist/ai-chat-agent.js.map +1 -0
- package/dist/ai-react.d.ts +72 -44
- package/dist/ai-react.js +204 -0
- package/dist/ai-react.js.map +1 -0
- package/dist/ai-types.d.ts +65 -40
- package/dist/ai-types.js +1 -0
- package/dist/ai-types.js.map +1 -0
- package/dist/chunk-HMLY7DHA.js +16 -0
- package/dist/chunk-HMLY7DHA.js.map +1 -0
- package/dist/chunk-Q5ZBHY4Z.js +456 -0
- package/dist/chunk-Q5ZBHY4Z.js.map +1 -0
- package/dist/chunk-WNIGPPNB.js +608 -0
- package/dist/chunk-WNIGPPNB.js.map +1 -0
- package/dist/client.d.ts +57 -37
- package/dist/client.js +131 -0
- package/dist/client.js.map +1 -0
- package/dist/index.d.ts +234 -179
- package/dist/index.js +21 -0
- package/dist/index.js.map +1 -0
- package/dist/mcp/client.d.ts +138 -36
- package/dist/mcp/client.js +10 -0
- package/dist/mcp/client.js.map +1 -0
- package/dist/mcp/do-oauth-client-provider.d.ts +41 -0
- package/dist/mcp/do-oauth-client-provider.js +107 -0
- package/dist/mcp/do-oauth-client-provider.js.map +1 -0
- package/dist/mcp/index.d.ts +39 -6
- package/dist/mcp/index.js +808 -0
- package/dist/mcp/index.js.map +1 -0
- package/dist/react.d.ts +24 -15
- package/dist/react.js +104 -0
- package/dist/react.js.map +1 -0
- package/dist/schedule.d.ts +30 -20
- package/dist/schedule.js +73 -0
- package/dist/schedule.js.map +1 -0
- package/package.json +25 -5
- package/src/index.ts +37 -14
package/dist/index.d.ts
CHANGED
|
@@ -1,202 +1,229 @@
|
|
|
1
|
-
import { Server, Connection, PartyServerOptions } from
|
|
2
|
-
export { Connection, ConnectionContext, WSMessage } from
|
|
3
|
-
import {
|
|
4
|
-
import
|
|
1
|
+
import { Server, Connection, PartyServerOptions } from "partyserver";
|
|
2
|
+
export { Connection, ConnectionContext, WSMessage } from "partyserver";
|
|
3
|
+
import { MCPClientManager } from "./mcp/client.js";
|
|
4
|
+
import "zod";
|
|
5
|
+
import "@modelcontextprotocol/sdk/types.js";
|
|
6
|
+
import "@modelcontextprotocol/sdk/client/index.js";
|
|
7
|
+
import "@modelcontextprotocol/sdk/client/sse.js";
|
|
8
|
+
import "./mcp/do-oauth-client-provider.js";
|
|
9
|
+
import "@modelcontextprotocol/sdk/client/auth.js";
|
|
10
|
+
import "@modelcontextprotocol/sdk/shared/auth.js";
|
|
11
|
+
import "@modelcontextprotocol/sdk/shared/protocol.js";
|
|
12
|
+
import "ai";
|
|
5
13
|
|
|
6
14
|
/**
|
|
7
15
|
* RPC request message from client
|
|
8
16
|
*/
|
|
9
17
|
type RPCRequest = {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
18
|
+
type: "rpc";
|
|
19
|
+
id: string;
|
|
20
|
+
method: string;
|
|
21
|
+
args: unknown[];
|
|
14
22
|
};
|
|
15
23
|
/**
|
|
16
24
|
* State update message from client
|
|
17
25
|
*/
|
|
18
26
|
type StateUpdateMessage = {
|
|
19
|
-
|
|
20
|
-
|
|
27
|
+
type: "cf_agent_state";
|
|
28
|
+
state: unknown;
|
|
21
29
|
};
|
|
22
30
|
/**
|
|
23
31
|
* RPC response message to client
|
|
24
32
|
*/
|
|
25
33
|
type RPCResponse = {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
} & (
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
34
|
+
type: "rpc";
|
|
35
|
+
id: string;
|
|
36
|
+
} & (
|
|
37
|
+
| {
|
|
38
|
+
success: true;
|
|
39
|
+
result: unknown;
|
|
40
|
+
done?: false;
|
|
41
|
+
}
|
|
42
|
+
| {
|
|
43
|
+
success: true;
|
|
44
|
+
result: unknown;
|
|
45
|
+
done: true;
|
|
46
|
+
}
|
|
47
|
+
| {
|
|
48
|
+
success: false;
|
|
49
|
+
error: string;
|
|
50
|
+
}
|
|
51
|
+
);
|
|
40
52
|
/**
|
|
41
53
|
* Metadata for a callable method
|
|
42
54
|
*/
|
|
43
55
|
type CallableMetadata = {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
56
|
+
/** Optional description of what the method does */
|
|
57
|
+
description?: string;
|
|
58
|
+
/** Whether the method supports streaming responses */
|
|
59
|
+
streaming?: boolean;
|
|
48
60
|
};
|
|
49
61
|
/**
|
|
50
62
|
* Decorator that marks a method as callable by clients
|
|
51
63
|
* @param metadata Optional metadata about the callable method
|
|
52
64
|
*/
|
|
53
|
-
declare function unstable_callable(
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
65
|
+
declare function unstable_callable(
|
|
66
|
+
metadata?: CallableMetadata
|
|
67
|
+
): <This, Args extends unknown[], Return>(
|
|
68
|
+
target: (this: This, ...args: Args) => Return,
|
|
69
|
+
context: ClassMethodDecoratorContext
|
|
70
|
+
) => (this: This, ...args: Args) => Return;
|
|
59
71
|
/**
|
|
60
72
|
* Represents a scheduled task within an Agent
|
|
61
73
|
* @template T Type of the payload data
|
|
62
74
|
*/
|
|
63
75
|
type Schedule<T = string> = {
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
} & (
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
76
|
+
/** Unique identifier for the schedule */
|
|
77
|
+
id: string;
|
|
78
|
+
/** Name of the method to be called */
|
|
79
|
+
callback: string;
|
|
80
|
+
/** Data to be passed to the callback */
|
|
81
|
+
payload: T;
|
|
82
|
+
} & (
|
|
83
|
+
| {
|
|
84
|
+
/** Type of schedule for one-time execution at a specific time */
|
|
85
|
+
type: "scheduled";
|
|
86
|
+
/** Timestamp when the task should execute */
|
|
87
|
+
time: number;
|
|
88
|
+
}
|
|
89
|
+
| {
|
|
90
|
+
/** Type of schedule for delayed execution */
|
|
91
|
+
type: "delayed";
|
|
92
|
+
/** Timestamp when the task should execute */
|
|
93
|
+
time: number;
|
|
94
|
+
/** Number of seconds to delay execution */
|
|
95
|
+
delayInSeconds: number;
|
|
96
|
+
}
|
|
97
|
+
| {
|
|
98
|
+
/** Type of schedule for recurring execution based on cron expression */
|
|
99
|
+
type: "cron";
|
|
100
|
+
/** Timestamp for the next execution */
|
|
101
|
+
time: number;
|
|
102
|
+
/** Cron expression defining the schedule */
|
|
103
|
+
cron: string;
|
|
104
|
+
}
|
|
105
|
+
);
|
|
106
|
+
declare function getCurrentAgent<
|
|
107
|
+
T extends Agent<unknown, unknown> = Agent<unknown, unknown>,
|
|
108
|
+
>(): {
|
|
109
|
+
agent: T | undefined;
|
|
110
|
+
connection: Connection | undefined;
|
|
111
|
+
request: Request<unknown, CfProperties<unknown>> | undefined;
|
|
112
|
+
};
|
|
95
113
|
/**
|
|
96
114
|
* Base class for creating Agent implementations
|
|
97
115
|
* @template Env Environment type containing bindings
|
|
98
116
|
* @template State State type to store within the Agent
|
|
99
117
|
*/
|
|
100
118
|
declare class Agent<Env, State = unknown> extends Server<Env> {
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
119
|
+
#private;
|
|
120
|
+
mcp: MCPClientManager;
|
|
121
|
+
/**
|
|
122
|
+
* Initial state for the Agent
|
|
123
|
+
* Override to provide default state values
|
|
124
|
+
*/
|
|
125
|
+
initialState: State;
|
|
126
|
+
/**
|
|
127
|
+
* Current state of the Agent
|
|
128
|
+
*/
|
|
129
|
+
get state(): State;
|
|
130
|
+
/**
|
|
131
|
+
* Agent configuration options
|
|
132
|
+
*/
|
|
133
|
+
static options: {
|
|
134
|
+
/** Whether the Agent should hibernate when inactive */
|
|
135
|
+
hibernate: boolean;
|
|
136
|
+
};
|
|
137
|
+
/**
|
|
138
|
+
* Execute SQL queries against the Agent's database
|
|
139
|
+
* @template T Type of the returned rows
|
|
140
|
+
* @param strings SQL query template strings
|
|
141
|
+
* @param values Values to be inserted into the query
|
|
142
|
+
* @returns Array of query results
|
|
143
|
+
*/
|
|
144
|
+
sql<T = Record<string, string | number | boolean | null>>(
|
|
145
|
+
strings: TemplateStringsArray,
|
|
146
|
+
...values: (string | number | boolean | null)[]
|
|
147
|
+
): T[];
|
|
148
|
+
constructor(ctx: AgentContext, env: Env);
|
|
149
|
+
/**
|
|
150
|
+
* Update the Agent's state
|
|
151
|
+
* @param state New state to set
|
|
152
|
+
*/
|
|
153
|
+
setState(state: State): void;
|
|
154
|
+
/**
|
|
155
|
+
* Called when the Agent's state is updated
|
|
156
|
+
* @param state Updated state
|
|
157
|
+
* @param source Source of the state update ("server" or a client connection)
|
|
158
|
+
*/
|
|
159
|
+
onStateUpdate(state: State | undefined, source: Connection | "server"): void;
|
|
160
|
+
/**
|
|
161
|
+
* Called when the Agent receives an email
|
|
162
|
+
* @param email Email message to process
|
|
163
|
+
*/
|
|
164
|
+
onEmail(email: ForwardableEmailMessage): Promise<void>;
|
|
165
|
+
onError(connection: Connection, error: unknown): void | Promise<void>;
|
|
166
|
+
onError(error: unknown): void | Promise<void>;
|
|
167
|
+
/**
|
|
168
|
+
* Render content (not implemented in base class)
|
|
169
|
+
*/
|
|
170
|
+
render(): void;
|
|
171
|
+
/**
|
|
172
|
+
* Schedule a task to be executed in the future
|
|
173
|
+
* @template T Type of the payload data
|
|
174
|
+
* @param when When to execute the task (Date, seconds delay, or cron expression)
|
|
175
|
+
* @param callback Name of the method to call
|
|
176
|
+
* @param payload Data to pass to the callback
|
|
177
|
+
* @returns Schedule object representing the scheduled task
|
|
178
|
+
*/
|
|
179
|
+
schedule<T = string>(
|
|
180
|
+
when: Date | string | number,
|
|
181
|
+
callback: keyof this,
|
|
182
|
+
payload?: T
|
|
183
|
+
): Promise<Schedule<T>>;
|
|
184
|
+
/**
|
|
185
|
+
* Get a scheduled task by ID
|
|
186
|
+
* @template T Type of the payload data
|
|
187
|
+
* @param id ID of the scheduled task
|
|
188
|
+
* @returns The Schedule object or undefined if not found
|
|
189
|
+
*/
|
|
190
|
+
getSchedule<T = string>(id: string): Promise<Schedule<T> | undefined>;
|
|
191
|
+
/**
|
|
192
|
+
* Get scheduled tasks matching the given criteria
|
|
193
|
+
* @template T Type of the payload data
|
|
194
|
+
* @param criteria Criteria to filter schedules
|
|
195
|
+
* @returns Array of matching Schedule objects
|
|
196
|
+
*/
|
|
197
|
+
getSchedules<T = string>(criteria?: {
|
|
198
|
+
id?: string;
|
|
199
|
+
type?: "scheduled" | "delayed" | "cron";
|
|
200
|
+
timeRange?: {
|
|
201
|
+
start?: Date;
|
|
202
|
+
end?: Date;
|
|
117
203
|
};
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
* @param state Updated state
|
|
135
|
-
* @param source Source of the state update ("server" or a client connection)
|
|
136
|
-
*/
|
|
137
|
-
onStateUpdate(state: State | undefined, source: Connection | "server"): void;
|
|
138
|
-
/**
|
|
139
|
-
* Called when the Agent receives an email
|
|
140
|
-
* @param email Email message to process
|
|
141
|
-
*/
|
|
142
|
-
onEmail(email: ForwardableEmailMessage): Promise<void>;
|
|
143
|
-
onError(connection: Connection, error: unknown): void | Promise<void>;
|
|
144
|
-
onError(error: unknown): void | Promise<void>;
|
|
145
|
-
/**
|
|
146
|
-
* Render content (not implemented in base class)
|
|
147
|
-
*/
|
|
148
|
-
render(): void;
|
|
149
|
-
/**
|
|
150
|
-
* Schedule a task to be executed in the future
|
|
151
|
-
* @template T Type of the payload data
|
|
152
|
-
* @param when When to execute the task (Date, seconds delay, or cron expression)
|
|
153
|
-
* @param callback Name of the method to call
|
|
154
|
-
* @param payload Data to pass to the callback
|
|
155
|
-
* @returns Schedule object representing the scheduled task
|
|
156
|
-
*/
|
|
157
|
-
schedule<T = string>(when: Date | string | number, callback: keyof this, payload?: T): Promise<Schedule<T>>;
|
|
158
|
-
/**
|
|
159
|
-
* Get a scheduled task by ID
|
|
160
|
-
* @template T Type of the payload data
|
|
161
|
-
* @param id ID of the scheduled task
|
|
162
|
-
* @returns The Schedule object or undefined if not found
|
|
163
|
-
*/
|
|
164
|
-
getSchedule<T = string>(id: string): Promise<Schedule<T> | undefined>;
|
|
165
|
-
/**
|
|
166
|
-
* Get scheduled tasks matching the given criteria
|
|
167
|
-
* @template T Type of the payload data
|
|
168
|
-
* @param criteria Criteria to filter schedules
|
|
169
|
-
* @returns Array of matching Schedule objects
|
|
170
|
-
*/
|
|
171
|
-
getSchedules<T = string>(criteria?: {
|
|
172
|
-
id?: string;
|
|
173
|
-
type?: "scheduled" | "delayed" | "cron";
|
|
174
|
-
timeRange?: {
|
|
175
|
-
start?: Date;
|
|
176
|
-
end?: Date;
|
|
177
|
-
};
|
|
178
|
-
}): Schedule<T>[];
|
|
179
|
-
/**
|
|
180
|
-
* Cancel a scheduled task
|
|
181
|
-
* @param id ID of the task to cancel
|
|
182
|
-
* @returns true if the task was cancelled, false otherwise
|
|
183
|
-
*/
|
|
184
|
-
cancelSchedule(id: string): Promise<boolean>;
|
|
185
|
-
/**
|
|
186
|
-
* Method called when an alarm fires
|
|
187
|
-
* Executes any scheduled tasks that are due
|
|
188
|
-
*/
|
|
189
|
-
alarm(): Promise<void>;
|
|
190
|
-
/**
|
|
191
|
-
* Destroy the Agent, removing all state and scheduled tasks
|
|
192
|
-
*/
|
|
193
|
-
destroy(): Promise<void>;
|
|
204
|
+
}): Schedule<T>[];
|
|
205
|
+
/**
|
|
206
|
+
* Cancel a scheduled task
|
|
207
|
+
* @param id ID of the task to cancel
|
|
208
|
+
* @returns true if the task was cancelled, false otherwise
|
|
209
|
+
*/
|
|
210
|
+
cancelSchedule(id: string): Promise<boolean>;
|
|
211
|
+
/**
|
|
212
|
+
* Method called when an alarm fires
|
|
213
|
+
* Executes any scheduled tasks that are due
|
|
214
|
+
*/
|
|
215
|
+
alarm(): Promise<void>;
|
|
216
|
+
/**
|
|
217
|
+
* Destroy the Agent, removing all state and scheduled tasks
|
|
218
|
+
*/
|
|
219
|
+
destroy(): Promise<void>;
|
|
194
220
|
}
|
|
195
221
|
/**
|
|
196
222
|
* Namespace for creating Agent instances
|
|
197
223
|
* @template Agentic Type of the Agent class
|
|
198
224
|
*/
|
|
199
|
-
type AgentNamespace<Agentic extends Agent<unknown>> =
|
|
225
|
+
type AgentNamespace<Agentic extends Agent<unknown>> =
|
|
226
|
+
DurableObjectNamespace<Agentic>;
|
|
200
227
|
/**
|
|
201
228
|
* Agent's durable context
|
|
202
229
|
*/
|
|
@@ -205,10 +232,10 @@ type AgentContext = DurableObjectState;
|
|
|
205
232
|
* Configuration options for Agent routing
|
|
206
233
|
*/
|
|
207
234
|
type AgentOptions<Env> = PartyServerOptions<Env> & {
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
235
|
+
/**
|
|
236
|
+
* Whether to enable CORS for the Agent
|
|
237
|
+
*/
|
|
238
|
+
cors?: boolean | HeadersInit | undefined;
|
|
212
239
|
};
|
|
213
240
|
/**
|
|
214
241
|
* Route a request to the appropriate Agent
|
|
@@ -217,14 +244,22 @@ type AgentOptions<Env> = PartyServerOptions<Env> & {
|
|
|
217
244
|
* @param options Routing options
|
|
218
245
|
* @returns Response from the Agent or undefined if no route matched
|
|
219
246
|
*/
|
|
220
|
-
declare function routeAgentRequest<Env>(
|
|
247
|
+
declare function routeAgentRequest<Env>(
|
|
248
|
+
request: Request,
|
|
249
|
+
env: Env,
|
|
250
|
+
options?: AgentOptions<Env>
|
|
251
|
+
): Promise<Response | null>;
|
|
221
252
|
/**
|
|
222
253
|
* Route an email to the appropriate Agent
|
|
223
254
|
* @param email Email message to route
|
|
224
255
|
* @param env Environment containing Agent bindings
|
|
225
256
|
* @param options Routing options
|
|
226
257
|
*/
|
|
227
|
-
declare function routeAgentEmail<Env>(
|
|
258
|
+
declare function routeAgentEmail<Env>(
|
|
259
|
+
email: ForwardableEmailMessage,
|
|
260
|
+
env: Env,
|
|
261
|
+
options?: AgentOptions<Env>
|
|
262
|
+
): Promise<void>;
|
|
228
263
|
/**
|
|
229
264
|
* Get or create an Agent by name
|
|
230
265
|
* @template Env Environment type containing bindings
|
|
@@ -234,26 +269,46 @@ declare function routeAgentEmail<Env>(email: ForwardableEmailMessage, env: Env,
|
|
|
234
269
|
* @param options Options for Agent creation
|
|
235
270
|
* @returns Promise resolving to an Agent instance stub
|
|
236
271
|
*/
|
|
237
|
-
declare function getAgentByName<Env, T extends Agent<Env>>(
|
|
272
|
+
declare function getAgentByName<Env, T extends Agent<Env>>(
|
|
273
|
+
namespace: AgentNamespace<T>,
|
|
274
|
+
name: string,
|
|
275
|
+
options?: {
|
|
238
276
|
jurisdiction?: DurableObjectJurisdiction;
|
|
239
277
|
locationHint?: DurableObjectLocationHint;
|
|
240
|
-
}
|
|
278
|
+
}
|
|
279
|
+
): Promise<DurableObjectStub<T>>;
|
|
241
280
|
/**
|
|
242
281
|
* A wrapper for streaming responses in callable methods
|
|
243
282
|
*/
|
|
244
283
|
declare class StreamingResponse {
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
284
|
+
#private;
|
|
285
|
+
constructor(connection: Connection, id: string);
|
|
286
|
+
/**
|
|
287
|
+
* Send a chunk of data to the client
|
|
288
|
+
* @param chunk The data to send
|
|
289
|
+
*/
|
|
290
|
+
send(chunk: unknown): void;
|
|
291
|
+
/**
|
|
292
|
+
* End the stream and send the final chunk (if any)
|
|
293
|
+
* @param finalChunk Optional final chunk of data to send
|
|
294
|
+
*/
|
|
295
|
+
end(finalChunk?: unknown): void;
|
|
257
296
|
}
|
|
258
297
|
|
|
259
|
-
export {
|
|
298
|
+
export {
|
|
299
|
+
Agent,
|
|
300
|
+
type AgentContext,
|
|
301
|
+
type AgentNamespace,
|
|
302
|
+
type AgentOptions,
|
|
303
|
+
type CallableMetadata,
|
|
304
|
+
type RPCRequest,
|
|
305
|
+
type RPCResponse,
|
|
306
|
+
type Schedule,
|
|
307
|
+
type StateUpdateMessage,
|
|
308
|
+
StreamingResponse,
|
|
309
|
+
getAgentByName,
|
|
310
|
+
getCurrentAgent,
|
|
311
|
+
routeAgentEmail,
|
|
312
|
+
routeAgentRequest,
|
|
313
|
+
unstable_callable,
|
|
314
|
+
};
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Agent,
|
|
3
|
+
StreamingResponse,
|
|
4
|
+
getAgentByName,
|
|
5
|
+
getCurrentAgent,
|
|
6
|
+
routeAgentEmail,
|
|
7
|
+
routeAgentRequest,
|
|
8
|
+
unstable_callable
|
|
9
|
+
} from "./chunk-WNIGPPNB.js";
|
|
10
|
+
import "./chunk-Q5ZBHY4Z.js";
|
|
11
|
+
import "./chunk-HMLY7DHA.js";
|
|
12
|
+
export {
|
|
13
|
+
Agent,
|
|
14
|
+
StreamingResponse,
|
|
15
|
+
getAgentByName,
|
|
16
|
+
getCurrentAgent,
|
|
17
|
+
routeAgentEmail,
|
|
18
|
+
routeAgentRequest,
|
|
19
|
+
unstable_callable
|
|
20
|
+
};
|
|
21
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|