experimental-agent 0.1.3 → 0.2.0
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-workflow.d.mts +2 -1
- package/dist/agent-workflow.d.ts +2 -1
- package/dist/agent-workflow.js +1382 -552
- package/dist/agent-workflow.mjs +3 -2
- package/dist/chunk-FQ67QZOI.mjs +75 -0
- package/dist/{chunk-RXPVLORL.mjs → chunk-GL7Q3MDU.mjs} +3 -7
- package/dist/{chunk-24UDM5XV.mjs → chunk-NXDVNJRS.mjs} +1 -1
- package/dist/chunk-OCF5I43X.mjs +2367 -0
- package/dist/chunk-OZZVS6L5.mjs +139 -0
- package/dist/{chunk-2ZXHR6T6.mjs → chunk-SJVFFE5D.mjs} +18 -17
- package/dist/chunk-TGNVXSMX.mjs +399 -0
- package/dist/chunk-UCVXI7LW.mjs +1287 -0
- package/dist/chunk-ZIAHPXOJ.mjs +595 -0
- package/dist/{client-SNN3XDKO.mjs → client-BKA7XBGW.mjs} +1 -1
- package/dist/{client-Bkuq-Dfa.d.mts → client-CSTexnLF.d.mts} +158 -122
- package/dist/{client-Bkuq-Dfa.d.ts → client-CSTexnLF.d.ts} +158 -122
- package/dist/{sandbox-IFK5MVRM.mjs → docker-FB2MJTHJ.mjs} +6 -4
- package/dist/{handler-WFNQWR6V.mjs → handler-FRUPZ4LX.mjs} +1 -1
- package/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1555 -596
- package/dist/index.mjs +140 -36
- package/dist/lifecycle-workflow.d.mts +2 -1
- package/dist/lifecycle-workflow.d.ts +2 -1
- package/dist/lifecycle-workflow.js +29 -18
- package/dist/lifecycle-workflow.mjs +1 -1
- package/dist/{local-fs-handlers-ESZBRAWK.mjs → local-fs-handlers-SYOCKTPN.mjs} +10 -2
- package/dist/next/loader.js +16 -12
- package/dist/next/loader.mjs +15 -7
- package/dist/next.d.mts +1 -1
- package/dist/next.d.ts +1 -1
- package/dist/next.js +3 -10
- package/dist/next.mjs +2 -5
- package/dist/{process-manager-ZCET3VD2.mjs → process-manager-JDUJDYGU.mjs} +1 -1
- package/dist/sandbox-HRGGTEHF.mjs +21 -0
- package/dist/{storage-FCSHTDLC.mjs → storage-LSDMRW73.mjs} +2 -2
- package/package.json +2 -6
- package/dist/chunk-4WDKWMVB.mjs +0 -389
- package/dist/chunk-64THY7Y7.mjs +0 -155
- package/dist/chunk-IACG26TC.mjs +0 -2212
- package/dist/chunk-NGLND33F.mjs +0 -1247
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
dockerSandbox,
|
|
3
|
+
isDockerSandboxAvailable
|
|
4
|
+
} from "./chunk-ZIAHPXOJ.mjs";
|
|
5
|
+
import "./chunk-OZZVS6L5.mjs";
|
|
5
6
|
import "./chunk-YRYXN7W4.mjs";
|
|
6
7
|
import "./chunk-BJTO5JO5.mjs";
|
|
7
8
|
export {
|
|
8
|
-
|
|
9
|
+
dockerSandbox,
|
|
10
|
+
isDockerSandboxAvailable
|
|
9
11
|
};
|
|
10
12
|
//# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFtdLAogICJzb3VyY2VzQ29udGVudCI6IFtdLAogICJtYXBwaW5ncyI6ICIiLAogICJuYW1lcyI6IFtdCn0K
|
package/dist/index.d.mts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { M as MethodName, S as StorageMethods } from './client-
|
|
2
|
-
export { A as AgentDataTypes, a as AgentOptions, b as AgentStatus, c as AgentStream, B as BuiltInToolName, E as ExecResult, G as GenerationOptions, I as InferUIMessage, L as ListResult, d as Message, e as MessageNotFoundError, f as MessageUsage, O as OnRestart, P as Part, R as ResolvedStorage,
|
|
1
|
+
import { M as MethodName, S as StorageMethods } from './client-CSTexnLF.mjs';
|
|
2
|
+
export { A as AgentDataTypes, a as AgentOptions, b as AgentStatus, c as AgentStream, B as BuiltInToolName, E as ExecResult, G as GenerationOptions, I as InferUIMessage, L as ListResult, d as Message, e as MessageNotFoundError, f as MessageUsage, O as OnConfigChange, g as OnRestart, P as Part, R as ResolvedStorage, h as RpcPayload, i as RpcResult, j as Sandbox, k as SandboxConfig, l as SandboxError, m as SandboxNotFoundError, n as SandboxRecord, o as SandboxSetup, p as SendInput, q as Session, r as SessionNotFoundError, s as SessionOptions, t as SkillSummary, u as StepUsage, v as Storage, w as StorageConfig, x as StorageConflictError, y as StorageError, T as TagsSchema, z as ToolContext, C as TypedStorage, U as UploadableFile, D as UsageSummary, F as agent, H as builtinToolNames } from './client-CSTexnLF.mjs';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
import 'errore';
|
|
5
5
|
import 'ai';
|
|
6
|
+
import '@vercel/sandbox';
|
|
6
7
|
|
|
7
8
|
type Handlers = {
|
|
8
9
|
[K in MethodName]: (params: z.infer<StorageMethods[K]["params"]>) => Promise<z.infer<StorageMethods[K]["result"]>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { M as MethodName, S as StorageMethods } from './client-
|
|
2
|
-
export { A as AgentDataTypes, a as AgentOptions, b as AgentStatus, c as AgentStream, B as BuiltInToolName, E as ExecResult, G as GenerationOptions, I as InferUIMessage, L as ListResult, d as Message, e as MessageNotFoundError, f as MessageUsage, O as OnRestart, P as Part, R as ResolvedStorage,
|
|
1
|
+
import { M as MethodName, S as StorageMethods } from './client-CSTexnLF.js';
|
|
2
|
+
export { A as AgentDataTypes, a as AgentOptions, b as AgentStatus, c as AgentStream, B as BuiltInToolName, E as ExecResult, G as GenerationOptions, I as InferUIMessage, L as ListResult, d as Message, e as MessageNotFoundError, f as MessageUsage, O as OnConfigChange, g as OnRestart, P as Part, R as ResolvedStorage, h as RpcPayload, i as RpcResult, j as Sandbox, k as SandboxConfig, l as SandboxError, m as SandboxNotFoundError, n as SandboxRecord, o as SandboxSetup, p as SendInput, q as Session, r as SessionNotFoundError, s as SessionOptions, t as SkillSummary, u as StepUsage, v as Storage, w as StorageConfig, x as StorageConflictError, y as StorageError, T as TagsSchema, z as ToolContext, C as TypedStorage, U as UploadableFile, D as UsageSummary, F as agent, H as builtinToolNames } from './client-CSTexnLF.js';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
import 'errore';
|
|
5
5
|
import 'ai';
|
|
6
|
+
import '@vercel/sandbox';
|
|
6
7
|
|
|
7
8
|
type Handlers = {
|
|
8
9
|
[K in MethodName]: (params: z.infer<StorageMethods[K]["params"]>) => Promise<z.infer<StorageMethods[K]["result"]>>;
|