@axiom-lattice/core 2.1.54 → 2.1.56
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/index.d.mts +16 -42
- package/dist/index.d.ts +16 -42
- package/dist/index.js +30 -257
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +32 -256
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -2
package/dist/index.d.mts
CHANGED
|
@@ -23,10 +23,9 @@ import { ReplaySubject } from 'rxjs';
|
|
|
23
23
|
import { Embeddings } from '@langchain/core/embeddings';
|
|
24
24
|
import { VectorStore } from '@langchain/core/vectorstores';
|
|
25
25
|
import { Connection, MultiServerMCPClient } from '@langchain/mcp-adapters';
|
|
26
|
-
import { FsEntry, Sandbox } from 'microsandbox';
|
|
27
26
|
import { SandboxClient } from '@agent-infra/sandbox';
|
|
28
|
-
import { Sandbox
|
|
29
|
-
import { Sandbox as Sandbox$
|
|
27
|
+
import { Sandbox } from 'e2b';
|
|
28
|
+
import { Sandbox as Sandbox$1 } from '@daytonaio/sdk';
|
|
30
29
|
|
|
31
30
|
/**
|
|
32
31
|
* BaseLatticeManager - 抽象基类,为各种Lattice管理器提供通用功能
|
|
@@ -2973,8 +2972,8 @@ declare class FileSystemSkillStore implements SkillStore {
|
|
|
2973
2972
|
* SandboxSkillStore
|
|
2974
2973
|
*
|
|
2975
2974
|
* Sandbox-based implementation of SkillStore
|
|
2976
|
-
* Stores skills in the shared project sandbox under /.
|
|
2977
|
-
* Path format: /.
|
|
2975
|
+
* Stores skills in the shared project sandbox under /root/.agents/skills/
|
|
2976
|
+
* Path format: /root/.agents/skills/{skillName}/SKILL.md
|
|
2978
2977
|
*/
|
|
2979
2978
|
|
|
2980
2979
|
interface SandboxSkillStoreOptions {
|
|
@@ -3723,6 +3722,13 @@ declare class McpLatticeManager extends BaseLatticeManager<McpLatticeInterface>
|
|
|
3723
3722
|
}
|
|
3724
3723
|
declare const mcpManager: McpLatticeManager;
|
|
3725
3724
|
|
|
3725
|
+
interface FsEntry {
|
|
3726
|
+
path: string;
|
|
3727
|
+
kind: string;
|
|
3728
|
+
size: number;
|
|
3729
|
+
mode: number;
|
|
3730
|
+
modified: string | null;
|
|
3731
|
+
}
|
|
3726
3732
|
interface VolumeFsClient {
|
|
3727
3733
|
read(path: string): Promise<string>;
|
|
3728
3734
|
write(path: string, content: string): Promise<void>;
|
|
@@ -3740,25 +3746,6 @@ interface SandboxProvider {
|
|
|
3740
3746
|
createVolumeFsClient?(volumeName: string): VolumeFsClient;
|
|
3741
3747
|
}
|
|
3742
3748
|
|
|
3743
|
-
interface MicrosandboxProviderConfig {
|
|
3744
|
-
image?: string;
|
|
3745
|
-
cpus?: number;
|
|
3746
|
-
memoryMib?: number;
|
|
3747
|
-
env?: Record<string, string>;
|
|
3748
|
-
}
|
|
3749
|
-
declare const defaultMicrosandboxConfig: MicrosandboxProviderConfig;
|
|
3750
|
-
declare class MicrosandboxProvider implements SandboxProvider {
|
|
3751
|
-
private config;
|
|
3752
|
-
private instances;
|
|
3753
|
-
private creating;
|
|
3754
|
-
constructor(config?: MicrosandboxProviderConfig);
|
|
3755
|
-
createSandbox(name: string, config?: RunSandboxConfig): Promise<SandboxInstance>;
|
|
3756
|
-
getSandbox(name: string): Promise<SandboxInstance>;
|
|
3757
|
-
stopSandbox(name: string): Promise<void>;
|
|
3758
|
-
deleteSandbox(name: string): Promise<void>;
|
|
3759
|
-
listSandboxes(): Promise<SandboxInstance[]>;
|
|
3760
|
-
}
|
|
3761
|
-
|
|
3762
3749
|
type SandboxLifecycleResponse = {
|
|
3763
3750
|
name: string;
|
|
3764
3751
|
status: string;
|
|
@@ -3929,7 +3916,7 @@ declare class DaytonaProvider implements SandboxProvider {
|
|
|
3929
3916
|
/**
|
|
3930
3917
|
* Build volume mounts for a sandbox based on RunSandboxConfig.
|
|
3931
3918
|
* Mounts:
|
|
3932
|
-
* /.
|
|
3919
|
+
* /root/.agents → tenants/{tenantId}/skills
|
|
3933
3920
|
* /agent → tenants/{tenantId}/agents/{assistantId}
|
|
3934
3921
|
* /project → tenants/{tenantId}/projects/{projectId}
|
|
3935
3922
|
*/
|
|
@@ -3944,13 +3931,12 @@ declare class DaytonaProvider implements SandboxProvider {
|
|
|
3944
3931
|
interface CreateSandboxProviderConfig {
|
|
3945
3932
|
/**
|
|
3946
3933
|
* Provider type
|
|
3947
|
-
* - "microsandbox": local microVM via microsandbox SDK (requires KVM/Hypervisor)
|
|
3948
3934
|
* - "microsandbox-remote": remote microsandbox-service via dedicated HTTP client
|
|
3949
3935
|
* - "remote": remote sandbox service via @agent-infra/sandbox HTTP client
|
|
3950
3936
|
* - "e2b": E2B cloud sandbox (https://e2b.dev)
|
|
3951
3937
|
* - "daytona": Daytona cloud sandbox (https://daytona.io)
|
|
3952
3938
|
*/
|
|
3953
|
-
type: "microsandbox
|
|
3939
|
+
type: "microsandbox-remote" | "remote" | "e2b" | "daytona";
|
|
3954
3940
|
/**
|
|
3955
3941
|
* Required when type = "remote"
|
|
3956
3942
|
*/
|
|
@@ -4012,18 +3998,6 @@ interface CreateSandboxProviderConfig {
|
|
|
4012
3998
|
*/
|
|
4013
3999
|
declare function createSandboxProvider(config: CreateSandboxProviderConfig): SandboxProvider;
|
|
4014
4000
|
|
|
4015
|
-
declare class MicrosandboxInstance implements SandboxInstance {
|
|
4016
|
-
private native;
|
|
4017
|
-
readonly name: string;
|
|
4018
|
-
constructor(name: string, native: Sandbox);
|
|
4019
|
-
start(): Promise<void>;
|
|
4020
|
-
stop(): Promise<void>;
|
|
4021
|
-
kill(): Promise<void>;
|
|
4022
|
-
getStatus(): Promise<"running" | "stopped" | "unknown">;
|
|
4023
|
-
readonly file: SandboxFileService;
|
|
4024
|
-
readonly shell: SandboxShellService;
|
|
4025
|
-
}
|
|
4026
|
-
|
|
4027
4001
|
declare class MicrosandboxRemoteInstance implements SandboxInstance {
|
|
4028
4002
|
private readonly client;
|
|
4029
4003
|
readonly name: string;
|
|
@@ -4051,7 +4025,7 @@ declare class RemoteSandboxInstance implements SandboxInstance {
|
|
|
4051
4025
|
declare class E2BInstance implements SandboxInstance {
|
|
4052
4026
|
private native;
|
|
4053
4027
|
readonly name: string;
|
|
4054
|
-
constructor(name: string, native: Sandbox
|
|
4028
|
+
constructor(name: string, native: Sandbox);
|
|
4055
4029
|
start(): Promise<void>;
|
|
4056
4030
|
stop(): Promise<void>;
|
|
4057
4031
|
kill(): Promise<void>;
|
|
@@ -4063,7 +4037,7 @@ declare class E2BInstance implements SandboxInstance {
|
|
|
4063
4037
|
declare class DaytonaInstance implements SandboxInstance {
|
|
4064
4038
|
private native;
|
|
4065
4039
|
readonly name: string;
|
|
4066
|
-
constructor(name: string, native: Sandbox$
|
|
4040
|
+
constructor(name: string, native: Sandbox$1);
|
|
4067
4041
|
start(): Promise<void>;
|
|
4068
4042
|
stop(): Promise<void>;
|
|
4069
4043
|
kill(): Promise<void>;
|
|
@@ -5697,4 +5671,4 @@ interface SchedulerMiddlewareOptions {
|
|
|
5697
5671
|
}
|
|
5698
5672
|
declare function createSchedulerMiddleware(options?: SchedulerMiddlewareOptions): AgentMiddleware;
|
|
5699
5673
|
|
|
5700
|
-
export { AGENT_TASK_EVENT, type AddMessageParams, Agent, type AgentClient, type AgentExecutor, AgentInstanceManager, type AgentLattice, AgentLatticeManager, type AgentLifecycleEventName, AgentManager, type AgentStreamExecutor, type AgentThreadInterface, type BackendFactory, type BackendProtocol, type BufferStats, type Chunk, ChunkBuffer, ChunkBufferLatticeManager, type ColumnInfo, CompositeBackend, ConsoleLoggerClient, type CreateSandboxProviderConfig, type CronFields, CustomMetricsClient, type DatabaseConfig, type DatabaseType, DaytonaInstance, DaytonaProvider, type DaytonaProviderConfig, DefaultScheduleClient, E2BInstance, E2BProvider, type E2BProviderConfig, EMPTY_CONTENT_WARNING, type EditResult, type EmbeddingsLatticeInterface, EmbeddingsLatticeManager, type EnsureMicrosandboxInput, type FileData, type FileInfo, FileSystemSkillStore, type FileSystemSkillStoreOptions, FilesystemBackend, type GrepMatch, type IMessageQueueStore, type IMetricsServerClient, type ISqlDatabase, InMemoryAssistantStore, InMemoryChunkBuffer, InMemoryDatabaseConfigStore, InMemoryMailboxStore, InMemoryTaskListStore, InMemoryTenantStore, InMemoryThreadMessageQueueStore, InMemoryThreadStore, InMemoryUserStore, InMemoryUserTenantLinkStore, LINE_NUMBER_WIDTH, type LangGraphStateChecker, type LoggerLattice, LoggerLatticeManager, MAX_LINE_LENGTH, type MailboxMessage, type MailboxStore, type McpLatticeInterface, McpLatticeManager, type McpServerInfo, MemoryBackend, MemoryLatticeManager, MemoryQueueClient, MemoryScheduleStorage, type MessageCompletedEvent, type MessageFailedEvent, type MessageStartedEvent, MessageType, MetricsServerManager,
|
|
5674
|
+
export { AGENT_TASK_EVENT, type AddMessageParams, Agent, type AgentClient, type AgentExecutor, AgentInstanceManager, type AgentLattice, AgentLatticeManager, type AgentLifecycleEventName, AgentManager, type AgentStreamExecutor, type AgentThreadInterface, type BackendFactory, type BackendProtocol, type BufferStats, type Chunk, ChunkBuffer, ChunkBufferLatticeManager, type ColumnInfo, CompositeBackend, ConsoleLoggerClient, type CreateSandboxProviderConfig, type CronFields, CustomMetricsClient, type DatabaseConfig, type DatabaseType, DaytonaInstance, DaytonaProvider, type DaytonaProviderConfig, DefaultScheduleClient, E2BInstance, E2BProvider, type E2BProviderConfig, EMPTY_CONTENT_WARNING, type EditResult, type EmbeddingsLatticeInterface, EmbeddingsLatticeManager, type EnsureMicrosandboxInput, type FileData, type FileInfo, FileSystemSkillStore, type FileSystemSkillStoreOptions, FilesystemBackend, type FsEntry, type GrepMatch, type IMessageQueueStore, type IMetricsServerClient, type ISqlDatabase, InMemoryAssistantStore, InMemoryChunkBuffer, InMemoryDatabaseConfigStore, InMemoryMailboxStore, InMemoryTaskListStore, InMemoryTenantStore, InMemoryThreadMessageQueueStore, InMemoryThreadStore, InMemoryUserStore, InMemoryUserTenantLinkStore, LINE_NUMBER_WIDTH, type LangGraphStateChecker, type LoggerLattice, LoggerLatticeManager, MAX_LINE_LENGTH, type MailboxMessage, type MailboxStore, type McpLatticeInterface, McpLatticeManager, type McpServerInfo, MemoryBackend, MemoryLatticeManager, MemoryQueueClient, MemoryScheduleStorage, type MessageCompletedEvent, type MessageFailedEvent, type MessageStartedEvent, MessageType, MetricsServerManager, MicrosandboxRemoteInstance, MicrosandboxRemoteProvider, type MicrosandboxRemoteProviderClient, type MicrosandboxRemoteProviderConfig, MicrosandboxServiceClient, type MicrosandboxServiceClientConfig, type MicrosandboxShellExecInput, type ModelConfig, type ModelLatticeInterface, ModelLatticeManager, type PendingMessage, PinoLoggerClient, PostgresDatabase, PrometheusClient, type QueryResult, type QueueLattice, QueueLatticeManager, QueueMode, type QueuePendingEvent, RemoteSandboxInstance, RemoteSandboxProvider, type RemoteSandboxProviderConfig, type RunSandboxConfig, type RuntimeModelConfig, type SandboxFileInfo, type SandboxFileService, SandboxFilesystem, type SandboxInstance, type SandboxIsolationLevel, SandboxLatticeManager, type SandboxManagerProtocol, type SandboxProvider, type SandboxShellService, SandboxSkillStore, type SandboxSkillStoreOptions, type SandboxVolumeDefinition, type ScheduleLattice, ScheduleLatticeManager, type SchedulerMiddlewareOptions, SemanticMetricsClient, type SkillLattice, SkillLatticeManager, type SkillMeta, type SkillResource, SqlDatabaseManager, type StateAndStore, StateBackend, StoreBackend, type StoreLattice, StoreLatticeManager, type StoreType, type StoreTypeMap, TOOL_RESULT_TOKEN_LIMIT, TRUNCATION_GUIDANCE, type TableInfo, type TableSchema, type TaskEvent, type TaskListStore, type TaskSpec, TaskStatus, type TaskUpdatable, TeamAgentGraphBuilder, type TeamConfig, type TeamMiddlewareOptions, type TeamTask, type TeammateSpec, type TeammateToolsOptions, type ThreadBuffer, type ThreadBufferConfig, type ThreadBusyEvent, type ThreadIdleEvent, type ThreadInfo, type ThreadQueueConfig, type ThreadState, ThreadStatus, type ThreadStatusChangedEvent, type ToolDefinition, type ToolLattice, ToolLatticeManager, type UnknownToolHandlerConfig, type VectorStoreLatticeInterface, VectorStoreLatticeManager, VolumeFilesystem, type VolumeFsClient, type WriteResult, agentInstanceManager, agentLatticeManager, buildGrepResultsDict, buildNamedVolumeName, buildSandboxMetadataEnv, buildSkillFile, checkEmptyContent, clearEncryptionKeyCache, computeSandboxName, createAgentTeam, createExecuteSqlQueryTool, createFileData, createInfoSqlTool, createListMetricsDataSourcesTool, createListMetricsServersTool, createListTablesSqlTool, createModelSelectorMiddleware, createQueryCheckerSqlTool, createQueryMetricDefinitionTool, createQueryMetricsListTool, createQuerySemanticMetricDataTool, createQuerySqlTool, createQueryTableDefinitionTool, createQueryTablesListTool, createSandboxProvider, createSchedulerMiddleware, createTeamMiddleware, createTeammateTools, createUnknownToolHandlerMiddleware, createWidgetMiddleware, decrypt, describeCronExpression, embeddingsLatticeManager, encrypt, eventBus, eventBus as eventBusDefault, fileDataToString, formatContentWithLineNumbers, formatGrepMatches, formatGrepResults, formatReadResponse, getAgentClient, getAgentConfig, getAllAgentConfigs, getAllToolDefinitions, getCheckpointSaver, getChunkBuffer, getEmbeddingsClient, getEmbeddingsLattice, getEncryptionKey, getLoggerLattice, getModelLattice, getNextCronTime, getQueueLattice, getSandBoxManager, getScheduleLattice, getStoreLattice, getToolClient, getToolDefinition, getToolLattice, getVectorStoreClient, getVectorStoreLattice, globSearchFiles, grepMatchesFromFiles, grepSearchFiles, hasChunkBuffer, isUsingDefaultKey, isValidCronExpression, isValidSandboxName, isValidSkillName, loggerLatticeManager, mcpManager, metricsServerManager, modelLatticeManager, normalizeSandboxName, parseCronExpression, parseSkillFrontmatter, performStringReplacement, queueLatticeManager, registerAgentLattice, registerAgentLatticeWithTenant, registerAgentLattices, registerCheckpointSaver, registerChunkBuffer, registerEmbeddingsLattice, registerExistingTool, registerLoggerLattice, registerModelLattice, registerQueueLattice, registerScheduleLattice, registerStoreLattice, registerTeammateAgent, registerToolLattice, registerVectorStoreLattice, sandboxLatticeManager, sanitizeToolCallId, scheduleLatticeManager, skillLatticeManager, sqlDatabaseManager, storeLatticeManager, toolLatticeManager, truncateIfTooLong, unregisterTeammateAgent, updateFileData, validateAgentInput, validateEncryptionKey, validatePath, validateSkillName, validateToolInput, vectorStoreLatticeManager };
|
package/dist/index.d.ts
CHANGED
|
@@ -23,10 +23,9 @@ import { ReplaySubject } from 'rxjs';
|
|
|
23
23
|
import { Embeddings } from '@langchain/core/embeddings';
|
|
24
24
|
import { VectorStore } from '@langchain/core/vectorstores';
|
|
25
25
|
import { Connection, MultiServerMCPClient } from '@langchain/mcp-adapters';
|
|
26
|
-
import { FsEntry, Sandbox } from 'microsandbox';
|
|
27
26
|
import { SandboxClient } from '@agent-infra/sandbox';
|
|
28
|
-
import { Sandbox
|
|
29
|
-
import { Sandbox as Sandbox$
|
|
27
|
+
import { Sandbox } from 'e2b';
|
|
28
|
+
import { Sandbox as Sandbox$1 } from '@daytonaio/sdk';
|
|
30
29
|
|
|
31
30
|
/**
|
|
32
31
|
* BaseLatticeManager - 抽象基类,为各种Lattice管理器提供通用功能
|
|
@@ -2973,8 +2972,8 @@ declare class FileSystemSkillStore implements SkillStore {
|
|
|
2973
2972
|
* SandboxSkillStore
|
|
2974
2973
|
*
|
|
2975
2974
|
* Sandbox-based implementation of SkillStore
|
|
2976
|
-
* Stores skills in the shared project sandbox under /.
|
|
2977
|
-
* Path format: /.
|
|
2975
|
+
* Stores skills in the shared project sandbox under /root/.agents/skills/
|
|
2976
|
+
* Path format: /root/.agents/skills/{skillName}/SKILL.md
|
|
2978
2977
|
*/
|
|
2979
2978
|
|
|
2980
2979
|
interface SandboxSkillStoreOptions {
|
|
@@ -3723,6 +3722,13 @@ declare class McpLatticeManager extends BaseLatticeManager<McpLatticeInterface>
|
|
|
3723
3722
|
}
|
|
3724
3723
|
declare const mcpManager: McpLatticeManager;
|
|
3725
3724
|
|
|
3725
|
+
interface FsEntry {
|
|
3726
|
+
path: string;
|
|
3727
|
+
kind: string;
|
|
3728
|
+
size: number;
|
|
3729
|
+
mode: number;
|
|
3730
|
+
modified: string | null;
|
|
3731
|
+
}
|
|
3726
3732
|
interface VolumeFsClient {
|
|
3727
3733
|
read(path: string): Promise<string>;
|
|
3728
3734
|
write(path: string, content: string): Promise<void>;
|
|
@@ -3740,25 +3746,6 @@ interface SandboxProvider {
|
|
|
3740
3746
|
createVolumeFsClient?(volumeName: string): VolumeFsClient;
|
|
3741
3747
|
}
|
|
3742
3748
|
|
|
3743
|
-
interface MicrosandboxProviderConfig {
|
|
3744
|
-
image?: string;
|
|
3745
|
-
cpus?: number;
|
|
3746
|
-
memoryMib?: number;
|
|
3747
|
-
env?: Record<string, string>;
|
|
3748
|
-
}
|
|
3749
|
-
declare const defaultMicrosandboxConfig: MicrosandboxProviderConfig;
|
|
3750
|
-
declare class MicrosandboxProvider implements SandboxProvider {
|
|
3751
|
-
private config;
|
|
3752
|
-
private instances;
|
|
3753
|
-
private creating;
|
|
3754
|
-
constructor(config?: MicrosandboxProviderConfig);
|
|
3755
|
-
createSandbox(name: string, config?: RunSandboxConfig): Promise<SandboxInstance>;
|
|
3756
|
-
getSandbox(name: string): Promise<SandboxInstance>;
|
|
3757
|
-
stopSandbox(name: string): Promise<void>;
|
|
3758
|
-
deleteSandbox(name: string): Promise<void>;
|
|
3759
|
-
listSandboxes(): Promise<SandboxInstance[]>;
|
|
3760
|
-
}
|
|
3761
|
-
|
|
3762
3749
|
type SandboxLifecycleResponse = {
|
|
3763
3750
|
name: string;
|
|
3764
3751
|
status: string;
|
|
@@ -3929,7 +3916,7 @@ declare class DaytonaProvider implements SandboxProvider {
|
|
|
3929
3916
|
/**
|
|
3930
3917
|
* Build volume mounts for a sandbox based on RunSandboxConfig.
|
|
3931
3918
|
* Mounts:
|
|
3932
|
-
* /.
|
|
3919
|
+
* /root/.agents → tenants/{tenantId}/skills
|
|
3933
3920
|
* /agent → tenants/{tenantId}/agents/{assistantId}
|
|
3934
3921
|
* /project → tenants/{tenantId}/projects/{projectId}
|
|
3935
3922
|
*/
|
|
@@ -3944,13 +3931,12 @@ declare class DaytonaProvider implements SandboxProvider {
|
|
|
3944
3931
|
interface CreateSandboxProviderConfig {
|
|
3945
3932
|
/**
|
|
3946
3933
|
* Provider type
|
|
3947
|
-
* - "microsandbox": local microVM via microsandbox SDK (requires KVM/Hypervisor)
|
|
3948
3934
|
* - "microsandbox-remote": remote microsandbox-service via dedicated HTTP client
|
|
3949
3935
|
* - "remote": remote sandbox service via @agent-infra/sandbox HTTP client
|
|
3950
3936
|
* - "e2b": E2B cloud sandbox (https://e2b.dev)
|
|
3951
3937
|
* - "daytona": Daytona cloud sandbox (https://daytona.io)
|
|
3952
3938
|
*/
|
|
3953
|
-
type: "microsandbox
|
|
3939
|
+
type: "microsandbox-remote" | "remote" | "e2b" | "daytona";
|
|
3954
3940
|
/**
|
|
3955
3941
|
* Required when type = "remote"
|
|
3956
3942
|
*/
|
|
@@ -4012,18 +3998,6 @@ interface CreateSandboxProviderConfig {
|
|
|
4012
3998
|
*/
|
|
4013
3999
|
declare function createSandboxProvider(config: CreateSandboxProviderConfig): SandboxProvider;
|
|
4014
4000
|
|
|
4015
|
-
declare class MicrosandboxInstance implements SandboxInstance {
|
|
4016
|
-
private native;
|
|
4017
|
-
readonly name: string;
|
|
4018
|
-
constructor(name: string, native: Sandbox);
|
|
4019
|
-
start(): Promise<void>;
|
|
4020
|
-
stop(): Promise<void>;
|
|
4021
|
-
kill(): Promise<void>;
|
|
4022
|
-
getStatus(): Promise<"running" | "stopped" | "unknown">;
|
|
4023
|
-
readonly file: SandboxFileService;
|
|
4024
|
-
readonly shell: SandboxShellService;
|
|
4025
|
-
}
|
|
4026
|
-
|
|
4027
4001
|
declare class MicrosandboxRemoteInstance implements SandboxInstance {
|
|
4028
4002
|
private readonly client;
|
|
4029
4003
|
readonly name: string;
|
|
@@ -4051,7 +4025,7 @@ declare class RemoteSandboxInstance implements SandboxInstance {
|
|
|
4051
4025
|
declare class E2BInstance implements SandboxInstance {
|
|
4052
4026
|
private native;
|
|
4053
4027
|
readonly name: string;
|
|
4054
|
-
constructor(name: string, native: Sandbox
|
|
4028
|
+
constructor(name: string, native: Sandbox);
|
|
4055
4029
|
start(): Promise<void>;
|
|
4056
4030
|
stop(): Promise<void>;
|
|
4057
4031
|
kill(): Promise<void>;
|
|
@@ -4063,7 +4037,7 @@ declare class E2BInstance implements SandboxInstance {
|
|
|
4063
4037
|
declare class DaytonaInstance implements SandboxInstance {
|
|
4064
4038
|
private native;
|
|
4065
4039
|
readonly name: string;
|
|
4066
|
-
constructor(name: string, native: Sandbox$
|
|
4040
|
+
constructor(name: string, native: Sandbox$1);
|
|
4067
4041
|
start(): Promise<void>;
|
|
4068
4042
|
stop(): Promise<void>;
|
|
4069
4043
|
kill(): Promise<void>;
|
|
@@ -5697,4 +5671,4 @@ interface SchedulerMiddlewareOptions {
|
|
|
5697
5671
|
}
|
|
5698
5672
|
declare function createSchedulerMiddleware(options?: SchedulerMiddlewareOptions): AgentMiddleware;
|
|
5699
5673
|
|
|
5700
|
-
export { AGENT_TASK_EVENT, type AddMessageParams, Agent, type AgentClient, type AgentExecutor, AgentInstanceManager, type AgentLattice, AgentLatticeManager, type AgentLifecycleEventName, AgentManager, type AgentStreamExecutor, type AgentThreadInterface, type BackendFactory, type BackendProtocol, type BufferStats, type Chunk, ChunkBuffer, ChunkBufferLatticeManager, type ColumnInfo, CompositeBackend, ConsoleLoggerClient, type CreateSandboxProviderConfig, type CronFields, CustomMetricsClient, type DatabaseConfig, type DatabaseType, DaytonaInstance, DaytonaProvider, type DaytonaProviderConfig, DefaultScheduleClient, E2BInstance, E2BProvider, type E2BProviderConfig, EMPTY_CONTENT_WARNING, type EditResult, type EmbeddingsLatticeInterface, EmbeddingsLatticeManager, type EnsureMicrosandboxInput, type FileData, type FileInfo, FileSystemSkillStore, type FileSystemSkillStoreOptions, FilesystemBackend, type GrepMatch, type IMessageQueueStore, type IMetricsServerClient, type ISqlDatabase, InMemoryAssistantStore, InMemoryChunkBuffer, InMemoryDatabaseConfigStore, InMemoryMailboxStore, InMemoryTaskListStore, InMemoryTenantStore, InMemoryThreadMessageQueueStore, InMemoryThreadStore, InMemoryUserStore, InMemoryUserTenantLinkStore, LINE_NUMBER_WIDTH, type LangGraphStateChecker, type LoggerLattice, LoggerLatticeManager, MAX_LINE_LENGTH, type MailboxMessage, type MailboxStore, type McpLatticeInterface, McpLatticeManager, type McpServerInfo, MemoryBackend, MemoryLatticeManager, MemoryQueueClient, MemoryScheduleStorage, type MessageCompletedEvent, type MessageFailedEvent, type MessageStartedEvent, MessageType, MetricsServerManager,
|
|
5674
|
+
export { AGENT_TASK_EVENT, type AddMessageParams, Agent, type AgentClient, type AgentExecutor, AgentInstanceManager, type AgentLattice, AgentLatticeManager, type AgentLifecycleEventName, AgentManager, type AgentStreamExecutor, type AgentThreadInterface, type BackendFactory, type BackendProtocol, type BufferStats, type Chunk, ChunkBuffer, ChunkBufferLatticeManager, type ColumnInfo, CompositeBackend, ConsoleLoggerClient, type CreateSandboxProviderConfig, type CronFields, CustomMetricsClient, type DatabaseConfig, type DatabaseType, DaytonaInstance, DaytonaProvider, type DaytonaProviderConfig, DefaultScheduleClient, E2BInstance, E2BProvider, type E2BProviderConfig, EMPTY_CONTENT_WARNING, type EditResult, type EmbeddingsLatticeInterface, EmbeddingsLatticeManager, type EnsureMicrosandboxInput, type FileData, type FileInfo, FileSystemSkillStore, type FileSystemSkillStoreOptions, FilesystemBackend, type FsEntry, type GrepMatch, type IMessageQueueStore, type IMetricsServerClient, type ISqlDatabase, InMemoryAssistantStore, InMemoryChunkBuffer, InMemoryDatabaseConfigStore, InMemoryMailboxStore, InMemoryTaskListStore, InMemoryTenantStore, InMemoryThreadMessageQueueStore, InMemoryThreadStore, InMemoryUserStore, InMemoryUserTenantLinkStore, LINE_NUMBER_WIDTH, type LangGraphStateChecker, type LoggerLattice, LoggerLatticeManager, MAX_LINE_LENGTH, type MailboxMessage, type MailboxStore, type McpLatticeInterface, McpLatticeManager, type McpServerInfo, MemoryBackend, MemoryLatticeManager, MemoryQueueClient, MemoryScheduleStorage, type MessageCompletedEvent, type MessageFailedEvent, type MessageStartedEvent, MessageType, MetricsServerManager, MicrosandboxRemoteInstance, MicrosandboxRemoteProvider, type MicrosandboxRemoteProviderClient, type MicrosandboxRemoteProviderConfig, MicrosandboxServiceClient, type MicrosandboxServiceClientConfig, type MicrosandboxShellExecInput, type ModelConfig, type ModelLatticeInterface, ModelLatticeManager, type PendingMessage, PinoLoggerClient, PostgresDatabase, PrometheusClient, type QueryResult, type QueueLattice, QueueLatticeManager, QueueMode, type QueuePendingEvent, RemoteSandboxInstance, RemoteSandboxProvider, type RemoteSandboxProviderConfig, type RunSandboxConfig, type RuntimeModelConfig, type SandboxFileInfo, type SandboxFileService, SandboxFilesystem, type SandboxInstance, type SandboxIsolationLevel, SandboxLatticeManager, type SandboxManagerProtocol, type SandboxProvider, type SandboxShellService, SandboxSkillStore, type SandboxSkillStoreOptions, type SandboxVolumeDefinition, type ScheduleLattice, ScheduleLatticeManager, type SchedulerMiddlewareOptions, SemanticMetricsClient, type SkillLattice, SkillLatticeManager, type SkillMeta, type SkillResource, SqlDatabaseManager, type StateAndStore, StateBackend, StoreBackend, type StoreLattice, StoreLatticeManager, type StoreType, type StoreTypeMap, TOOL_RESULT_TOKEN_LIMIT, TRUNCATION_GUIDANCE, type TableInfo, type TableSchema, type TaskEvent, type TaskListStore, type TaskSpec, TaskStatus, type TaskUpdatable, TeamAgentGraphBuilder, type TeamConfig, type TeamMiddlewareOptions, type TeamTask, type TeammateSpec, type TeammateToolsOptions, type ThreadBuffer, type ThreadBufferConfig, type ThreadBusyEvent, type ThreadIdleEvent, type ThreadInfo, type ThreadQueueConfig, type ThreadState, ThreadStatus, type ThreadStatusChangedEvent, type ToolDefinition, type ToolLattice, ToolLatticeManager, type UnknownToolHandlerConfig, type VectorStoreLatticeInterface, VectorStoreLatticeManager, VolumeFilesystem, type VolumeFsClient, type WriteResult, agentInstanceManager, agentLatticeManager, buildGrepResultsDict, buildNamedVolumeName, buildSandboxMetadataEnv, buildSkillFile, checkEmptyContent, clearEncryptionKeyCache, computeSandboxName, createAgentTeam, createExecuteSqlQueryTool, createFileData, createInfoSqlTool, createListMetricsDataSourcesTool, createListMetricsServersTool, createListTablesSqlTool, createModelSelectorMiddleware, createQueryCheckerSqlTool, createQueryMetricDefinitionTool, createQueryMetricsListTool, createQuerySemanticMetricDataTool, createQuerySqlTool, createQueryTableDefinitionTool, createQueryTablesListTool, createSandboxProvider, createSchedulerMiddleware, createTeamMiddleware, createTeammateTools, createUnknownToolHandlerMiddleware, createWidgetMiddleware, decrypt, describeCronExpression, embeddingsLatticeManager, encrypt, eventBus, eventBus as eventBusDefault, fileDataToString, formatContentWithLineNumbers, formatGrepMatches, formatGrepResults, formatReadResponse, getAgentClient, getAgentConfig, getAllAgentConfigs, getAllToolDefinitions, getCheckpointSaver, getChunkBuffer, getEmbeddingsClient, getEmbeddingsLattice, getEncryptionKey, getLoggerLattice, getModelLattice, getNextCronTime, getQueueLattice, getSandBoxManager, getScheduleLattice, getStoreLattice, getToolClient, getToolDefinition, getToolLattice, getVectorStoreClient, getVectorStoreLattice, globSearchFiles, grepMatchesFromFiles, grepSearchFiles, hasChunkBuffer, isUsingDefaultKey, isValidCronExpression, isValidSandboxName, isValidSkillName, loggerLatticeManager, mcpManager, metricsServerManager, modelLatticeManager, normalizeSandboxName, parseCronExpression, parseSkillFrontmatter, performStringReplacement, queueLatticeManager, registerAgentLattice, registerAgentLatticeWithTenant, registerAgentLattices, registerCheckpointSaver, registerChunkBuffer, registerEmbeddingsLattice, registerExistingTool, registerLoggerLattice, registerModelLattice, registerQueueLattice, registerScheduleLattice, registerStoreLattice, registerTeammateAgent, registerToolLattice, registerVectorStoreLattice, sandboxLatticeManager, sanitizeToolCallId, scheduleLatticeManager, skillLatticeManager, sqlDatabaseManager, storeLatticeManager, toolLatticeManager, truncateIfTooLong, unregisterTeammateAgent, updateFileData, validateAgentInput, validateEncryptionKey, validatePath, validateSkillName, validateToolInput, vectorStoreLatticeManager };
|