@axiom-lattice/core 3.0.0 → 3.0.2
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 +86 -3
- package/dist/index.d.ts +86 -3
- package/dist/index.js +1400 -483
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1489 -573
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1362,6 +1362,23 @@ interface EditResult {
|
|
|
1362
1362
|
/** Metadata for the edit operation, attached to the ToolMessage */
|
|
1363
1363
|
metadata?: Record<string, unknown>;
|
|
1364
1364
|
}
|
|
1365
|
+
/**
|
|
1366
|
+
* Result from backend delete operations.
|
|
1367
|
+
*
|
|
1368
|
+
* Checkpoint backends populate filesUpdate with `{ [filePath]: null }` so the
|
|
1369
|
+
* filesystem state reducer removes the file. External backends set
|
|
1370
|
+
* filesUpdate to null after deleting the persisted file.
|
|
1371
|
+
*/
|
|
1372
|
+
interface DeleteResult {
|
|
1373
|
+
/** Error message on failure, undefined on success */
|
|
1374
|
+
error?: string;
|
|
1375
|
+
/** File path of the deleted file, undefined on failure */
|
|
1376
|
+
path?: string;
|
|
1377
|
+
/** State update for checkpoint backends, null for external storage */
|
|
1378
|
+
filesUpdate?: Record<string, FileData | null> | null;
|
|
1379
|
+
/** Metadata for the delete operation, attached to the ToolMessage */
|
|
1380
|
+
metadata?: Record<string, unknown>;
|
|
1381
|
+
}
|
|
1365
1382
|
/**
|
|
1366
1383
|
* Protocol for pluggable memory backends (single, unified).
|
|
1367
1384
|
*
|
|
@@ -1457,6 +1474,16 @@ interface BackendProtocol {
|
|
|
1457
1474
|
* @returns EditResult with error, path, filesUpdate, and occurrences
|
|
1458
1475
|
*/
|
|
1459
1476
|
edit(filePath: string, oldString: string, newString: string, replaceAll?: boolean): MaybePromise<EditResult>;
|
|
1477
|
+
/**
|
|
1478
|
+
* Delete an existing regular file.
|
|
1479
|
+
*
|
|
1480
|
+
* Optional for compatibility with third-party backends. Implementations
|
|
1481
|
+
* must reject missing files, directories, and symbolic links.
|
|
1482
|
+
*
|
|
1483
|
+
* @param filePath - Absolute file path
|
|
1484
|
+
* @returns DeleteResult with error populated on failure
|
|
1485
|
+
*/
|
|
1486
|
+
delete?(filePath: string): MaybePromise<DeleteResult>;
|
|
1460
1487
|
}
|
|
1461
1488
|
/**
|
|
1462
1489
|
* State and store container for backend initialization.
|
|
@@ -1536,6 +1563,8 @@ interface SandboxFileService {
|
|
|
1536
1563
|
downloadFile(params: {
|
|
1537
1564
|
file: string;
|
|
1538
1565
|
}): Promise<Buffer>;
|
|
1566
|
+
/** Delete an existing regular file without recursively deleting directories. */
|
|
1567
|
+
deleteFile?(file: string): Promise<void>;
|
|
1539
1568
|
deletePath(path: string): Promise<void>;
|
|
1540
1569
|
createDirectory(path: string): Promise<void>;
|
|
1541
1570
|
}
|
|
@@ -4532,6 +4561,8 @@ interface VolumeFsClient {
|
|
|
4532
4561
|
list(path: string): Promise<FsEntry[]>;
|
|
4533
4562
|
readRaw(path: string): Promise<Buffer>;
|
|
4534
4563
|
writeRaw(path: string, data: Buffer): Promise<void>;
|
|
4564
|
+
/** Delete an existing regular file. */
|
|
4565
|
+
delete?(path: string): Promise<void>;
|
|
4535
4566
|
/**
|
|
4536
4567
|
* Create a directory (and any missing parent directories).
|
|
4537
4568
|
*
|
|
@@ -4634,6 +4665,7 @@ declare class MicrosandboxServiceClient {
|
|
|
4634
4665
|
getStatus(name: string): Promise<SandboxLifecycleResponse>;
|
|
4635
4666
|
readFile(sandboxName: string, path: string): Promise<ReadFileResponse>;
|
|
4636
4667
|
writeFile(sandboxName: string, path: string, content: string): Promise<WriteFileResponse>;
|
|
4668
|
+
deleteFile(sandboxName: string, path: string): Promise<WriteFileResponse>;
|
|
4637
4669
|
listPath(sandboxName: string, path: string, recursive?: boolean): Promise<ListPathResponse>;
|
|
4638
4670
|
findFiles(sandboxName: string, path: string, pattern: string): Promise<FindFilesResponse>;
|
|
4639
4671
|
searchInFile(sandboxName: string, path: string, query: string): Promise<SearchInFileResponse>;
|
|
@@ -4647,6 +4679,7 @@ declare class MicrosandboxServiceClient {
|
|
|
4647
4679
|
execCommand(input: MicrosandboxShellExecInput): Promise<ExecCommandResponse>;
|
|
4648
4680
|
volumeFsRead(volumeName: string, path: string): Promise<string>;
|
|
4649
4681
|
volumeFsWrite(volumeName: string, path: string, content: string): Promise<void>;
|
|
4682
|
+
volumeFsDelete(volumeName: string, path: string): Promise<void>;
|
|
4650
4683
|
volumeFsList(volumeName: string, path: string): Promise<VolumeFsListResponse["entries"]>;
|
|
4651
4684
|
volumeFsDownload(volumeName: string, path: string): Promise<Buffer>;
|
|
4652
4685
|
volumeFsUpload(volumeName: string, path: string, data: Buffer): Promise<void>;
|
|
@@ -4666,7 +4699,7 @@ declare function createResourceAddress(config: {
|
|
|
4666
4699
|
resourcePath: string;
|
|
4667
4700
|
}): ResourceAddress;
|
|
4668
4701
|
|
|
4669
|
-
type MicrosandboxRemoteProviderClient = Pick<MicrosandboxServiceClient, "ensureSandbox" | "startSandbox" | "stopSandbox" | "killSandbox" | "deleteSandbox" | "getStatus" | "readFile" | "writeFile" | "listPath" | "findFiles" | "searchInFile" | "replaceInFile" | "uploadFile" | "downloadFile" | "execCommand" | "volumeFsRead" | "volumeFsWrite" | "volumeFsList" | "volumeFsDownload" | "volumeFsUpload" | "volumeFsCreateDirectory">;
|
|
4702
|
+
type MicrosandboxRemoteProviderClient = Pick<MicrosandboxServiceClient, "ensureSandbox" | "startSandbox" | "stopSandbox" | "killSandbox" | "deleteSandbox" | "getStatus" | "readFile" | "writeFile" | "deleteFile" | "listPath" | "findFiles" | "searchInFile" | "replaceInFile" | "uploadFile" | "downloadFile" | "execCommand" | "volumeFsRead" | "volumeFsWrite" | "volumeFsDelete" | "volumeFsList" | "volumeFsDownload" | "volumeFsUpload" | "volumeFsCreateDirectory">;
|
|
4670
4703
|
interface MicrosandboxRemoteProviderConfig extends MicrosandboxServiceClientConfig {
|
|
4671
4704
|
client?: MicrosandboxRemoteProviderClient;
|
|
4672
4705
|
image?: string;
|
|
@@ -4955,6 +4988,7 @@ declare class RemoteSandboxInstance implements SandboxInstance {
|
|
|
4955
4988
|
readonly name: string;
|
|
4956
4989
|
constructor(name: string, client: SandboxClient, workspace: string);
|
|
4957
4990
|
private resolvePath;
|
|
4991
|
+
private resolveDeletePath;
|
|
4958
4992
|
start(): Promise<void>;
|
|
4959
4993
|
stop(): Promise<void>;
|
|
4960
4994
|
kill(): Promise<void>;
|
|
@@ -5259,9 +5293,12 @@ interface EvalRunService {
|
|
|
5259
5293
|
*
|
|
5260
5294
|
* @param tenantId - Tenant that owns the project
|
|
5261
5295
|
* @param projectId - Project to evaluate
|
|
5296
|
+
* @param suiteIds - Optional suite filter — only these suites run.
|
|
5297
|
+
* Omit to run all suites. Used to keep the validation suite
|
|
5298
|
+
* untouched during the fix loop (hold-out isolation).
|
|
5262
5299
|
* @returns The newly created run ID
|
|
5263
5300
|
*/
|
|
5264
|
-
startRun(tenantId: string, projectId: string): Promise<string>;
|
|
5301
|
+
startRun(tenantId: string, projectId: string, suiteIds?: string[]): Promise<string>;
|
|
5265
5302
|
/**
|
|
5266
5303
|
* Abort a running evaluation.
|
|
5267
5304
|
*
|
|
@@ -5460,6 +5497,27 @@ interface CaseRunResult {
|
|
|
5460
5497
|
logs: LatticeEvalLogEvent[];
|
|
5461
5498
|
}
|
|
5462
5499
|
|
|
5500
|
+
interface JudgeVerdict {
|
|
5501
|
+
pass?: boolean;
|
|
5502
|
+
final_score?: number;
|
|
5503
|
+
dimension_results?: Array<{
|
|
5504
|
+
name: string;
|
|
5505
|
+
score: number;
|
|
5506
|
+
reason: string;
|
|
5507
|
+
}>;
|
|
5508
|
+
summary?: string;
|
|
5509
|
+
error?: string;
|
|
5510
|
+
}
|
|
5511
|
+
/**
|
|
5512
|
+
* Parse judge agent's raw output into a structured verdict.
|
|
5513
|
+
* Returns error when no valid JSON is found — callers should treat
|
|
5514
|
+
* unparseable output as FAIL (never guess pass from keywords).
|
|
5515
|
+
*
|
|
5516
|
+
* Type-guards verdict fields: a string `pass: "false"` or `final_score: "90"`
|
|
5517
|
+
* is treated as missing (undefined) rather than truthy — a judge emitting
|
|
5518
|
+
* wrong-typed verdicts must not produce a false PASS.
|
|
5519
|
+
*/
|
|
5520
|
+
declare function parseJudgeVerdict(raw: string): JudgeVerdict;
|
|
5463
5521
|
/**
|
|
5464
5522
|
* Configuration for Lattice evaluation.
|
|
5465
5523
|
*/
|
|
@@ -5575,6 +5633,15 @@ declare class LatticeEvalProject {
|
|
|
5575
5633
|
runCase(suiteName: string, caseId: string): Promise<CaseRunResult>;
|
|
5576
5634
|
runSuite(suiteName: string, concurrency?: number, signal?: AbortSignal): Promise<CaseRunResult[]>;
|
|
5577
5635
|
runAllSuites(concurrency?: number, signal?: AbortSignal): Promise<Map<string, CaseRunResult[]>>;
|
|
5636
|
+
/**
|
|
5637
|
+
* Verify the judge agent can produce parseable, correct verdicts
|
|
5638
|
+
* before committing to a full run. Uses two known-answer cases
|
|
5639
|
+
* (one expected PASS, one expected FAIL) to catch broken judges.
|
|
5640
|
+
*/
|
|
5641
|
+
calibrateJudge(): Promise<{
|
|
5642
|
+
ok: boolean;
|
|
5643
|
+
reason?: string;
|
|
5644
|
+
}>;
|
|
5578
5645
|
/**
|
|
5579
5646
|
* Run all suites as a batch and build an in-memory report.
|
|
5580
5647
|
*/
|
|
@@ -6212,6 +6279,8 @@ declare class StateBackend implements BackendProtocol {
|
|
|
6212
6279
|
* Returns EditResult with filesUpdate and occurrences.
|
|
6213
6280
|
*/
|
|
6214
6281
|
edit(filePath: string, oldString: string, newString: string, replaceAll?: boolean): EditResult;
|
|
6282
|
+
/** Delete an existing file through a LangGraph state update. */
|
|
6283
|
+
delete(filePath: string): DeleteResult;
|
|
6215
6284
|
/**
|
|
6216
6285
|
* Structured search results or error string for invalid input.
|
|
6217
6286
|
*/
|
|
@@ -6311,6 +6380,8 @@ declare class StoreBackend implements BackendProtocol {
|
|
|
6311
6380
|
* Returns EditResult. External storage sets filesUpdate=null.
|
|
6312
6381
|
*/
|
|
6313
6382
|
edit(filePath: string, oldString: string, newString: string, replaceAll?: boolean): Promise<EditResult>;
|
|
6383
|
+
/** Delete an existing persistent file. */
|
|
6384
|
+
delete(filePath: string): Promise<DeleteResult>;
|
|
6314
6385
|
/**
|
|
6315
6386
|
* Structured search results or error string for invalid input.
|
|
6316
6387
|
*/
|
|
@@ -6360,6 +6431,8 @@ declare class FilesystemBackend implements BackendProtocol {
|
|
|
6360
6431
|
* @throws Error if path traversal detected or path outside root
|
|
6361
6432
|
*/
|
|
6362
6433
|
private resolvePath;
|
|
6434
|
+
private assertVirtualParentContained;
|
|
6435
|
+
private validateDeleteTarget;
|
|
6363
6436
|
/**
|
|
6364
6437
|
* List files and directories in the specified directory (non-recursive).
|
|
6365
6438
|
*
|
|
@@ -6389,6 +6462,8 @@ declare class FilesystemBackend implements BackendProtocol {
|
|
|
6389
6462
|
* Returns WriteResult. External storage sets filesUpdate=null.
|
|
6390
6463
|
*/
|
|
6391
6464
|
write(filePath: string, content: string): Promise<WriteResult>;
|
|
6465
|
+
/** Delete an existing regular file without following symbolic links. */
|
|
6466
|
+
delete(filePath: string): Promise<DeleteResult>;
|
|
6392
6467
|
/**
|
|
6393
6468
|
* Edit a file by replacing string occurrences.
|
|
6394
6469
|
* Returns EditResult. External storage sets filesUpdate=null.
|
|
@@ -6479,6 +6554,8 @@ declare class CompositeBackend implements BackendProtocol {
|
|
|
6479
6554
|
* @returns WriteResult with path or error
|
|
6480
6555
|
*/
|
|
6481
6556
|
write(filePath: string, content: string): Promise<WriteResult>;
|
|
6557
|
+
/** Delete a file, routing to the same backend selected for write and edit. */
|
|
6558
|
+
delete(filePath: string): Promise<DeleteResult>;
|
|
6482
6559
|
/**
|
|
6483
6560
|
* Edit a file, routing to appropriate backend.
|
|
6484
6561
|
*
|
|
@@ -6509,6 +6586,8 @@ declare class MemoryBackend implements BackendProtocol {
|
|
|
6509
6586
|
readRaw(filePath: string): FileData;
|
|
6510
6587
|
write(filePath: string, content: string): WriteResult;
|
|
6511
6588
|
edit(filePath: string, oldString: string, newString: string, replaceAll?: boolean): EditResult;
|
|
6589
|
+
/** Delete an existing in-memory file. */
|
|
6590
|
+
delete(filePath: string): DeleteResult;
|
|
6512
6591
|
grepRaw(pattern: string, path?: string, glob?: string | null): GrepMatch[] | string;
|
|
6513
6592
|
globInfo(pattern: string, path?: string): FileInfo[];
|
|
6514
6593
|
}
|
|
@@ -6532,6 +6611,8 @@ declare class SandboxFilesystem implements BackendProtocol {
|
|
|
6532
6611
|
readRaw(filePath: string): Promise<FileData>;
|
|
6533
6612
|
readBinary(filePath: string): Promise<Buffer>;
|
|
6534
6613
|
write(filePath: string, content: string): Promise<WriteResult>;
|
|
6614
|
+
/** Delete an existing regular file in the sandbox. */
|
|
6615
|
+
delete(filePath: string): Promise<DeleteResult>;
|
|
6535
6616
|
edit(filePath: string, oldString: string, newString: string, replaceAll?: boolean): Promise<EditResult>;
|
|
6536
6617
|
grepRaw(pattern: string, searchPath?: string | null, glob?: string | null): Promise<GrepMatch[] | string>;
|
|
6537
6618
|
globInfo(pattern: string, searchPath?: string): Promise<FileInfo[]>;
|
|
@@ -6549,6 +6630,8 @@ declare class VolumeFilesystem implements BackendProtocol {
|
|
|
6549
6630
|
grepRaw(_pattern: string, _path?: string | null, _glob?: string | null): string | GrepMatch[];
|
|
6550
6631
|
globInfo(_pattern: string, _path?: string): FileInfo[];
|
|
6551
6632
|
write(filePath: string, content: string): Promise<WriteResult>;
|
|
6633
|
+
/** Delete an existing regular file from the mounted volume. */
|
|
6634
|
+
delete(filePath: string): Promise<DeleteResult>;
|
|
6552
6635
|
edit(_filePath: string, _oldString: string, _newString: string, _replaceAll?: boolean): EditResult;
|
|
6553
6636
|
}
|
|
6554
6637
|
|
|
@@ -8032,4 +8115,4 @@ declare class IdRemapper {
|
|
|
8032
8115
|
remapSkillIds(graphDefinition: Record<string, unknown>, skillRemap: Record<string, string>): Record<string, unknown>;
|
|
8033
8116
|
}
|
|
8034
8117
|
|
|
8035
|
-
export { AGENT_TASK_EVENT, type AddMessageParams, Agent, type AgentClient, type AgentExecutor, AgentInstanceManager, type AgentLattice, AgentLatticeManager, type AgentLifecycleEventName, AgentManager, type AgentStreamExecutor, type AgentThreadInterface, BUILTIN_PLUGINS, BUILTIN_SKILLS, type BackendFactory, type BackendProtocol, type BufferStats, type CacheEntry, type CaseRunResult, type Chunk, ChunkBuffer, ChunkBufferLatticeManager, CollectionLatticeManager, type ColumnInfo, CompositeBackend, type ConflictItem, type ConnectAllChannelsOptions, ConnectionRegistry, ConsoleLoggerClient, type CreateSandboxProviderConfig, type CronFields, CustomMetricsClient, type CustomMiddlewareFactory, CustomMiddlewareRegistry, type DatabaseConfig, type DatabaseType, DaytonaInstance, DaytonaProvider, type DaytonaProviderConfig, DefaultScheduleClient, DependencyResolver, E2BInstance, E2BProvider, type E2BProviderConfig, EMPTY_CONTENT_WARNING, type EditResult, type EmbeddingsInfo, type EmbeddingsLatticeInterface, EmbeddingsLatticeManager, type EnsureMicrosandboxInput, type EvalRunService, type ExportBundle, type ExportJob, type ExportableEntity, type ExportableEntityDefinition, ExportableEntityRegistry, type ExportableTypeInfo, type FileData, type FileInfo, FileSystemSkillStore, type FileSystemSkillStoreOptions, FilesystemBackend, type FsEntry, type GrepMatch, type IMessageQueueStore, type IMetricsServerClient, type ISqlDatabase, IdRemapper, type ImportApplyResult, type ImportEntityResult, type ImportEntityStatus, type ImportPreviewResult, InMemoryA2AApiKeyStore, InMemoryAssistantStore, InMemoryBindingStore, InMemoryChannelInstallationStore, InMemoryChunkBuffer, InMemoryCollectionStore, InMemoryDatabaseConfigStore, InMemoryMailboxStore, InMemoryMenuStore, InMemoryTaskListStore, InMemoryTaskStore, InMemoryTenantStore, InMemoryThreadMessageQueueStore, InMemoryThreadStore, InMemoryUserStore, InMemoryUserTenantLinkStore, type InsertionItem, LINE_NUMBER_WIDTH, type LangGraphStateChecker, type LatticeAgentStepConfig, LatticeEval, type LatticeEvalBatchReport, type LatticeEvalCase, type LatticeEvalCaseType, type LatticeEvalCaseWithTemplate, type LatticeEvalConfig, type LatticeEvalLogEvent, type LatticeEvalLogLevel, LatticeEvalProject, type LatticeEvalProjectType, type LatticeEvalResult, type LatticeEvalRubric, LatticeEvalSuite, type LatticeEvalSuiteType, type LatticeEvalTemplate, LocalSandboxInstance, LocalSandboxProvider, type LocalSandboxProviderConfig, 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, MysqlDatabase, type OutputType, type PendingMessage, PersonalAssistantConfig, PinoLoggerClient, PluginRegistry, PostgresDatabase, type PreviewError, PrometheusClient, type QueryResult, type QueueLattice, QueueLatticeManager, QueueMode, type QueuePendingEvent, RemoteSandboxInstance, RemoteSandboxProvider, type RemoteSandboxProviderConfig, type Resolution, type ResolutionAction, type ResolveAgentFn, type ResolvedConfig, type RunSandboxConfig, type RuntimeModelConfig, type STTModelInfo, STTModelLattice, type STTModelLatticeInterface, STTModelLatticeManager, type SandboxFileInfo, type SandboxFileService, SandboxFilesystem, type SandboxInstance, type SandboxIsolationLevel, SandboxLatticeManager, type SandboxManagerProtocol, type SandboxProvider, type SandboxProviderFactory, type SandboxProviderType, type SandboxShellService, SandboxSkillStore, type SandboxSkillStoreOptions, type SandboxVolumeDefinition, type ScheduleLattice, ScheduleLatticeManager, type SchedulerMiddlewareOptions, SemanticMetricsClient, type SharePayload, SimpleMemoryVectorStore, 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, TokenCache, type ToolDefinition, type ToolLattice, ToolLatticeManager, type UnknownToolHandlerConfig, type VectorStoreLatticeInterface, VectorStoreLatticeManager, type VectorStoreProviderLattice, VectorStoreProviderManager, VolumeFilesystem, type VolumeFsClient, type WorkflowValidationError, type WriteResult, abortWorkflowRun, agentInstanceManager, agentLatticeManager, buildGrepResultsDict, buildInput, buildNamedVolumeName, buildSandboxMetadataEnv, buildSkillFile, buildStateAnnotation, buildTableName, checkEmptyContent, clearEncryptionKeyCache, clearEvalRunService, collectionLatticeManager, compileInternal, compileWorkflow, computeSandboxName, configureStores, connectAllChannels, createAgentNode, createAgentTeam, createExecuteSqlQueryTool, createFileData, createInfoSqlTool, createListMetricsDataSourcesTool, createListMetricsServersTool, createListTablesSqlTool, createMapNode, createModelSelectorMiddleware, createNodeHandler, createQueryCheckerSqlTool, createQueryMetricDefinitionTool, createQueryMetricsListTool, createQuerySemanticMetricDataTool, createQuerySqlTool, createQueryTableDefinitionTool, createQueryTablesListTool, createResourceAddress, createSandboxProvider, createSchedulerMiddleware, createSharePayload, createTaskMiddleware, createTeamMiddleware, createTeammateTools, createUnknownToolHandlerMiddleware, createWidgetMiddleware, decrypt, describeCronExpression, documentLearningPlugin, documentParserPlugin, embeddingsLatticeManager, encrypt, ensureBuiltinAgentsForTenant, evaluateLatticeCaseWithLogs, eventBus, eventBus as eventBusDefault, extractFetcherError, extractOutput, fileDataToString, formatContentWithLineNumbers, formatGrepMatches, formatGrepResults, formatReadResponse, generateToken, getAgentClient, getAgentConfig, getAllAgentConfigs, getAllBuiltInSkillMetas, getAllToolDefinitions, getBindingRegistry, getBuiltInSkillContent, getBuiltInSkillMeta, getBuiltInSkillNames, getCheckpointSaver, getChunkBuffer, getCollectionEntryCount, getEmbeddingsClient, getEmbeddingsLattice, getEncryptionKey, getEvalRunService, getLoggerLattice, getMenuRegistry, getModelLattice, getNextCronTime, getOrCreateCollectionVectorStore, getQueueLattice, getSTTClient, getSTTClientWithTenant, getSTTModelLattice, getSandBoxManager, getScheduleLattice, getStoreLattice, getToolClient, getToolDefinition, getToolLattice, getVectorStoreClient, getVectorStoreLattice, getVectorStoreProvider, getWorkflowSignal, globSearchFiles, grepMatchesFromFiles, grepSearchFiles, hasChunkBuffer, invokeWithRetry, isBuiltInSkill, isUsingDefaultKey, isValidCronExpression, isValidSandboxName, isValidSkillName, listCollectionEntries, listSandboxProviderTypes, loggerLatticeManager, mcpManager, metricsServerManager, modelLatticeManager, normalizeSandboxName, parallelLimit, parseCronExpression, parseSkillFrontmatter, parseYaml, performStringReplacement, queueLatticeManager, registerAgentLattice, registerAgentLatticeWithTenant, registerAgentLattices, registerBuiltinSkill, registerCheckpointSaver, registerChunkBuffer, registerEmbeddingsLattice, registerExistingTool, registerLoggerLattice, registerModelLattice, registerQueueLattice, registerSTTModelLattice, registerSandboxProviderType, registerScheduleLattice, registerStoreLattice, registerTeammateAgent, registerToolLattice, registerVectorStoreLattice, registerVectorStoreProvider, registerWorkflowRun, removeCollectionVectorStore, renderTemplate, resolvePath, sandboxLatticeManager, sanitizeToolCallId, scheduleLatticeManager, serializePluginMeta, setBindingRegistry, setEvalRunService, setMenuRegistry, skillLatticeManager, sqlDatabaseManager, storeLatticeManager, sttModelLatticeManager, toJsonSchema, toSafeStateExpr, toolLatticeManager, truncateIfTooLong, unregisterTeammateAgent, unregisterWorkflowRun, updateFileData, validateAgentInput, validateDSL, validateEncryptionKey, validatePath, validateSkillName, validateToolInput, vectorStoreLatticeManager, vectorStoreProviderManager };
|
|
8118
|
+
export { AGENT_TASK_EVENT, type AddMessageParams, Agent, type AgentClient, type AgentExecutor, AgentInstanceManager, type AgentLattice, AgentLatticeManager, type AgentLifecycleEventName, AgentManager, type AgentStreamExecutor, type AgentThreadInterface, BUILTIN_PLUGINS, BUILTIN_SKILLS, type BackendFactory, type BackendProtocol, type BufferStats, type CacheEntry, type CaseRunResult, type Chunk, ChunkBuffer, ChunkBufferLatticeManager, CollectionLatticeManager, type ColumnInfo, CompositeBackend, type ConflictItem, type ConnectAllChannelsOptions, ConnectionRegistry, ConsoleLoggerClient, type CreateSandboxProviderConfig, type CronFields, CustomMetricsClient, type CustomMiddlewareFactory, CustomMiddlewareRegistry, type DatabaseConfig, type DatabaseType, DaytonaInstance, DaytonaProvider, type DaytonaProviderConfig, DefaultScheduleClient, type DeleteResult, DependencyResolver, E2BInstance, E2BProvider, type E2BProviderConfig, EMPTY_CONTENT_WARNING, type EditResult, type EmbeddingsInfo, type EmbeddingsLatticeInterface, EmbeddingsLatticeManager, type EnsureMicrosandboxInput, type EvalRunService, type ExportBundle, type ExportJob, type ExportableEntity, type ExportableEntityDefinition, ExportableEntityRegistry, type ExportableTypeInfo, type FileData, type FileInfo, FileSystemSkillStore, type FileSystemSkillStoreOptions, FilesystemBackend, type FsEntry, type GrepMatch, type IMessageQueueStore, type IMetricsServerClient, type ISqlDatabase, IdRemapper, type ImportApplyResult, type ImportEntityResult, type ImportEntityStatus, type ImportPreviewResult, InMemoryA2AApiKeyStore, InMemoryAssistantStore, InMemoryBindingStore, InMemoryChannelInstallationStore, InMemoryChunkBuffer, InMemoryCollectionStore, InMemoryDatabaseConfigStore, InMemoryMailboxStore, InMemoryMenuStore, InMemoryTaskListStore, InMemoryTaskStore, InMemoryTenantStore, InMemoryThreadMessageQueueStore, InMemoryThreadStore, InMemoryUserStore, InMemoryUserTenantLinkStore, type InsertionItem, type JudgeVerdict, LINE_NUMBER_WIDTH, type LangGraphStateChecker, type LatticeAgentStepConfig, LatticeEval, type LatticeEvalBatchReport, type LatticeEvalCase, type LatticeEvalCaseType, type LatticeEvalCaseWithTemplate, type LatticeEvalConfig, type LatticeEvalLogEvent, type LatticeEvalLogLevel, LatticeEvalProject, type LatticeEvalProjectType, type LatticeEvalResult, type LatticeEvalRubric, LatticeEvalSuite, type LatticeEvalSuiteType, type LatticeEvalTemplate, LocalSandboxInstance, LocalSandboxProvider, type LocalSandboxProviderConfig, 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, MysqlDatabase, type OutputType, type PendingMessage, PersonalAssistantConfig, PinoLoggerClient, PluginRegistry, PostgresDatabase, type PreviewError, PrometheusClient, type QueryResult, type QueueLattice, QueueLatticeManager, QueueMode, type QueuePendingEvent, RemoteSandboxInstance, RemoteSandboxProvider, type RemoteSandboxProviderConfig, type Resolution, type ResolutionAction, type ResolveAgentFn, type ResolvedConfig, type RunSandboxConfig, type RuntimeModelConfig, type STTModelInfo, STTModelLattice, type STTModelLatticeInterface, STTModelLatticeManager, type SandboxFileInfo, type SandboxFileService, SandboxFilesystem, type SandboxInstance, type SandboxIsolationLevel, SandboxLatticeManager, type SandboxManagerProtocol, type SandboxProvider, type SandboxProviderFactory, type SandboxProviderType, type SandboxShellService, SandboxSkillStore, type SandboxSkillStoreOptions, type SandboxVolumeDefinition, type ScheduleLattice, ScheduleLatticeManager, type SchedulerMiddlewareOptions, SemanticMetricsClient, type SharePayload, SimpleMemoryVectorStore, 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, TokenCache, type ToolDefinition, type ToolLattice, ToolLatticeManager, type UnknownToolHandlerConfig, type VectorStoreLatticeInterface, VectorStoreLatticeManager, type VectorStoreProviderLattice, VectorStoreProviderManager, VolumeFilesystem, type VolumeFsClient, type WorkflowValidationError, type WriteResult, abortWorkflowRun, agentInstanceManager, agentLatticeManager, buildGrepResultsDict, buildInput, buildNamedVolumeName, buildSandboxMetadataEnv, buildSkillFile, buildStateAnnotation, buildTableName, checkEmptyContent, clearEncryptionKeyCache, clearEvalRunService, collectionLatticeManager, compileInternal, compileWorkflow, computeSandboxName, configureStores, connectAllChannels, createAgentNode, createAgentTeam, createExecuteSqlQueryTool, createFileData, createInfoSqlTool, createListMetricsDataSourcesTool, createListMetricsServersTool, createListTablesSqlTool, createMapNode, createModelSelectorMiddleware, createNodeHandler, createQueryCheckerSqlTool, createQueryMetricDefinitionTool, createQueryMetricsListTool, createQuerySemanticMetricDataTool, createQuerySqlTool, createQueryTableDefinitionTool, createQueryTablesListTool, createResourceAddress, createSandboxProvider, createSchedulerMiddleware, createSharePayload, createTaskMiddleware, createTeamMiddleware, createTeammateTools, createUnknownToolHandlerMiddleware, createWidgetMiddleware, decrypt, describeCronExpression, documentLearningPlugin, documentParserPlugin, embeddingsLatticeManager, encrypt, ensureBuiltinAgentsForTenant, evaluateLatticeCaseWithLogs, eventBus, eventBus as eventBusDefault, extractFetcherError, extractOutput, fileDataToString, formatContentWithLineNumbers, formatGrepMatches, formatGrepResults, formatReadResponse, generateToken, getAgentClient, getAgentConfig, getAllAgentConfigs, getAllBuiltInSkillMetas, getAllToolDefinitions, getBindingRegistry, getBuiltInSkillContent, getBuiltInSkillMeta, getBuiltInSkillNames, getCheckpointSaver, getChunkBuffer, getCollectionEntryCount, getEmbeddingsClient, getEmbeddingsLattice, getEncryptionKey, getEvalRunService, getLoggerLattice, getMenuRegistry, getModelLattice, getNextCronTime, getOrCreateCollectionVectorStore, getQueueLattice, getSTTClient, getSTTClientWithTenant, getSTTModelLattice, getSandBoxManager, getScheduleLattice, getStoreLattice, getToolClient, getToolDefinition, getToolLattice, getVectorStoreClient, getVectorStoreLattice, getVectorStoreProvider, getWorkflowSignal, globSearchFiles, grepMatchesFromFiles, grepSearchFiles, hasChunkBuffer, invokeWithRetry, isBuiltInSkill, isUsingDefaultKey, isValidCronExpression, isValidSandboxName, isValidSkillName, listCollectionEntries, listSandboxProviderTypes, loggerLatticeManager, mcpManager, metricsServerManager, modelLatticeManager, normalizeSandboxName, parallelLimit, parseCronExpression, parseJudgeVerdict, parseSkillFrontmatter, parseYaml, performStringReplacement, queueLatticeManager, registerAgentLattice, registerAgentLatticeWithTenant, registerAgentLattices, registerBuiltinSkill, registerCheckpointSaver, registerChunkBuffer, registerEmbeddingsLattice, registerExistingTool, registerLoggerLattice, registerModelLattice, registerQueueLattice, registerSTTModelLattice, registerSandboxProviderType, registerScheduleLattice, registerStoreLattice, registerTeammateAgent, registerToolLattice, registerVectorStoreLattice, registerVectorStoreProvider, registerWorkflowRun, removeCollectionVectorStore, renderTemplate, resolvePath, sandboxLatticeManager, sanitizeToolCallId, scheduleLatticeManager, serializePluginMeta, setBindingRegistry, setEvalRunService, setMenuRegistry, skillLatticeManager, sqlDatabaseManager, storeLatticeManager, sttModelLatticeManager, toJsonSchema, toSafeStateExpr, toolLatticeManager, truncateIfTooLong, unregisterTeammateAgent, unregisterWorkflowRun, updateFileData, validateAgentInput, validateDSL, validateEncryptionKey, validatePath, validateSkillName, validateToolInput, vectorStoreLatticeManager, vectorStoreProviderManager };
|
package/dist/index.d.ts
CHANGED
|
@@ -1362,6 +1362,23 @@ interface EditResult {
|
|
|
1362
1362
|
/** Metadata for the edit operation, attached to the ToolMessage */
|
|
1363
1363
|
metadata?: Record<string, unknown>;
|
|
1364
1364
|
}
|
|
1365
|
+
/**
|
|
1366
|
+
* Result from backend delete operations.
|
|
1367
|
+
*
|
|
1368
|
+
* Checkpoint backends populate filesUpdate with `{ [filePath]: null }` so the
|
|
1369
|
+
* filesystem state reducer removes the file. External backends set
|
|
1370
|
+
* filesUpdate to null after deleting the persisted file.
|
|
1371
|
+
*/
|
|
1372
|
+
interface DeleteResult {
|
|
1373
|
+
/** Error message on failure, undefined on success */
|
|
1374
|
+
error?: string;
|
|
1375
|
+
/** File path of the deleted file, undefined on failure */
|
|
1376
|
+
path?: string;
|
|
1377
|
+
/** State update for checkpoint backends, null for external storage */
|
|
1378
|
+
filesUpdate?: Record<string, FileData | null> | null;
|
|
1379
|
+
/** Metadata for the delete operation, attached to the ToolMessage */
|
|
1380
|
+
metadata?: Record<string, unknown>;
|
|
1381
|
+
}
|
|
1365
1382
|
/**
|
|
1366
1383
|
* Protocol for pluggable memory backends (single, unified).
|
|
1367
1384
|
*
|
|
@@ -1457,6 +1474,16 @@ interface BackendProtocol {
|
|
|
1457
1474
|
* @returns EditResult with error, path, filesUpdate, and occurrences
|
|
1458
1475
|
*/
|
|
1459
1476
|
edit(filePath: string, oldString: string, newString: string, replaceAll?: boolean): MaybePromise<EditResult>;
|
|
1477
|
+
/**
|
|
1478
|
+
* Delete an existing regular file.
|
|
1479
|
+
*
|
|
1480
|
+
* Optional for compatibility with third-party backends. Implementations
|
|
1481
|
+
* must reject missing files, directories, and symbolic links.
|
|
1482
|
+
*
|
|
1483
|
+
* @param filePath - Absolute file path
|
|
1484
|
+
* @returns DeleteResult with error populated on failure
|
|
1485
|
+
*/
|
|
1486
|
+
delete?(filePath: string): MaybePromise<DeleteResult>;
|
|
1460
1487
|
}
|
|
1461
1488
|
/**
|
|
1462
1489
|
* State and store container for backend initialization.
|
|
@@ -1536,6 +1563,8 @@ interface SandboxFileService {
|
|
|
1536
1563
|
downloadFile(params: {
|
|
1537
1564
|
file: string;
|
|
1538
1565
|
}): Promise<Buffer>;
|
|
1566
|
+
/** Delete an existing regular file without recursively deleting directories. */
|
|
1567
|
+
deleteFile?(file: string): Promise<void>;
|
|
1539
1568
|
deletePath(path: string): Promise<void>;
|
|
1540
1569
|
createDirectory(path: string): Promise<void>;
|
|
1541
1570
|
}
|
|
@@ -4532,6 +4561,8 @@ interface VolumeFsClient {
|
|
|
4532
4561
|
list(path: string): Promise<FsEntry[]>;
|
|
4533
4562
|
readRaw(path: string): Promise<Buffer>;
|
|
4534
4563
|
writeRaw(path: string, data: Buffer): Promise<void>;
|
|
4564
|
+
/** Delete an existing regular file. */
|
|
4565
|
+
delete?(path: string): Promise<void>;
|
|
4535
4566
|
/**
|
|
4536
4567
|
* Create a directory (and any missing parent directories).
|
|
4537
4568
|
*
|
|
@@ -4634,6 +4665,7 @@ declare class MicrosandboxServiceClient {
|
|
|
4634
4665
|
getStatus(name: string): Promise<SandboxLifecycleResponse>;
|
|
4635
4666
|
readFile(sandboxName: string, path: string): Promise<ReadFileResponse>;
|
|
4636
4667
|
writeFile(sandboxName: string, path: string, content: string): Promise<WriteFileResponse>;
|
|
4668
|
+
deleteFile(sandboxName: string, path: string): Promise<WriteFileResponse>;
|
|
4637
4669
|
listPath(sandboxName: string, path: string, recursive?: boolean): Promise<ListPathResponse>;
|
|
4638
4670
|
findFiles(sandboxName: string, path: string, pattern: string): Promise<FindFilesResponse>;
|
|
4639
4671
|
searchInFile(sandboxName: string, path: string, query: string): Promise<SearchInFileResponse>;
|
|
@@ -4647,6 +4679,7 @@ declare class MicrosandboxServiceClient {
|
|
|
4647
4679
|
execCommand(input: MicrosandboxShellExecInput): Promise<ExecCommandResponse>;
|
|
4648
4680
|
volumeFsRead(volumeName: string, path: string): Promise<string>;
|
|
4649
4681
|
volumeFsWrite(volumeName: string, path: string, content: string): Promise<void>;
|
|
4682
|
+
volumeFsDelete(volumeName: string, path: string): Promise<void>;
|
|
4650
4683
|
volumeFsList(volumeName: string, path: string): Promise<VolumeFsListResponse["entries"]>;
|
|
4651
4684
|
volumeFsDownload(volumeName: string, path: string): Promise<Buffer>;
|
|
4652
4685
|
volumeFsUpload(volumeName: string, path: string, data: Buffer): Promise<void>;
|
|
@@ -4666,7 +4699,7 @@ declare function createResourceAddress(config: {
|
|
|
4666
4699
|
resourcePath: string;
|
|
4667
4700
|
}): ResourceAddress;
|
|
4668
4701
|
|
|
4669
|
-
type MicrosandboxRemoteProviderClient = Pick<MicrosandboxServiceClient, "ensureSandbox" | "startSandbox" | "stopSandbox" | "killSandbox" | "deleteSandbox" | "getStatus" | "readFile" | "writeFile" | "listPath" | "findFiles" | "searchInFile" | "replaceInFile" | "uploadFile" | "downloadFile" | "execCommand" | "volumeFsRead" | "volumeFsWrite" | "volumeFsList" | "volumeFsDownload" | "volumeFsUpload" | "volumeFsCreateDirectory">;
|
|
4702
|
+
type MicrosandboxRemoteProviderClient = Pick<MicrosandboxServiceClient, "ensureSandbox" | "startSandbox" | "stopSandbox" | "killSandbox" | "deleteSandbox" | "getStatus" | "readFile" | "writeFile" | "deleteFile" | "listPath" | "findFiles" | "searchInFile" | "replaceInFile" | "uploadFile" | "downloadFile" | "execCommand" | "volumeFsRead" | "volumeFsWrite" | "volumeFsDelete" | "volumeFsList" | "volumeFsDownload" | "volumeFsUpload" | "volumeFsCreateDirectory">;
|
|
4670
4703
|
interface MicrosandboxRemoteProviderConfig extends MicrosandboxServiceClientConfig {
|
|
4671
4704
|
client?: MicrosandboxRemoteProviderClient;
|
|
4672
4705
|
image?: string;
|
|
@@ -4955,6 +4988,7 @@ declare class RemoteSandboxInstance implements SandboxInstance {
|
|
|
4955
4988
|
readonly name: string;
|
|
4956
4989
|
constructor(name: string, client: SandboxClient, workspace: string);
|
|
4957
4990
|
private resolvePath;
|
|
4991
|
+
private resolveDeletePath;
|
|
4958
4992
|
start(): Promise<void>;
|
|
4959
4993
|
stop(): Promise<void>;
|
|
4960
4994
|
kill(): Promise<void>;
|
|
@@ -5259,9 +5293,12 @@ interface EvalRunService {
|
|
|
5259
5293
|
*
|
|
5260
5294
|
* @param tenantId - Tenant that owns the project
|
|
5261
5295
|
* @param projectId - Project to evaluate
|
|
5296
|
+
* @param suiteIds - Optional suite filter — only these suites run.
|
|
5297
|
+
* Omit to run all suites. Used to keep the validation suite
|
|
5298
|
+
* untouched during the fix loop (hold-out isolation).
|
|
5262
5299
|
* @returns The newly created run ID
|
|
5263
5300
|
*/
|
|
5264
|
-
startRun(tenantId: string, projectId: string): Promise<string>;
|
|
5301
|
+
startRun(tenantId: string, projectId: string, suiteIds?: string[]): Promise<string>;
|
|
5265
5302
|
/**
|
|
5266
5303
|
* Abort a running evaluation.
|
|
5267
5304
|
*
|
|
@@ -5460,6 +5497,27 @@ interface CaseRunResult {
|
|
|
5460
5497
|
logs: LatticeEvalLogEvent[];
|
|
5461
5498
|
}
|
|
5462
5499
|
|
|
5500
|
+
interface JudgeVerdict {
|
|
5501
|
+
pass?: boolean;
|
|
5502
|
+
final_score?: number;
|
|
5503
|
+
dimension_results?: Array<{
|
|
5504
|
+
name: string;
|
|
5505
|
+
score: number;
|
|
5506
|
+
reason: string;
|
|
5507
|
+
}>;
|
|
5508
|
+
summary?: string;
|
|
5509
|
+
error?: string;
|
|
5510
|
+
}
|
|
5511
|
+
/**
|
|
5512
|
+
* Parse judge agent's raw output into a structured verdict.
|
|
5513
|
+
* Returns error when no valid JSON is found — callers should treat
|
|
5514
|
+
* unparseable output as FAIL (never guess pass from keywords).
|
|
5515
|
+
*
|
|
5516
|
+
* Type-guards verdict fields: a string `pass: "false"` or `final_score: "90"`
|
|
5517
|
+
* is treated as missing (undefined) rather than truthy — a judge emitting
|
|
5518
|
+
* wrong-typed verdicts must not produce a false PASS.
|
|
5519
|
+
*/
|
|
5520
|
+
declare function parseJudgeVerdict(raw: string): JudgeVerdict;
|
|
5463
5521
|
/**
|
|
5464
5522
|
* Configuration for Lattice evaluation.
|
|
5465
5523
|
*/
|
|
@@ -5575,6 +5633,15 @@ declare class LatticeEvalProject {
|
|
|
5575
5633
|
runCase(suiteName: string, caseId: string): Promise<CaseRunResult>;
|
|
5576
5634
|
runSuite(suiteName: string, concurrency?: number, signal?: AbortSignal): Promise<CaseRunResult[]>;
|
|
5577
5635
|
runAllSuites(concurrency?: number, signal?: AbortSignal): Promise<Map<string, CaseRunResult[]>>;
|
|
5636
|
+
/**
|
|
5637
|
+
* Verify the judge agent can produce parseable, correct verdicts
|
|
5638
|
+
* before committing to a full run. Uses two known-answer cases
|
|
5639
|
+
* (one expected PASS, one expected FAIL) to catch broken judges.
|
|
5640
|
+
*/
|
|
5641
|
+
calibrateJudge(): Promise<{
|
|
5642
|
+
ok: boolean;
|
|
5643
|
+
reason?: string;
|
|
5644
|
+
}>;
|
|
5578
5645
|
/**
|
|
5579
5646
|
* Run all suites as a batch and build an in-memory report.
|
|
5580
5647
|
*/
|
|
@@ -6212,6 +6279,8 @@ declare class StateBackend implements BackendProtocol {
|
|
|
6212
6279
|
* Returns EditResult with filesUpdate and occurrences.
|
|
6213
6280
|
*/
|
|
6214
6281
|
edit(filePath: string, oldString: string, newString: string, replaceAll?: boolean): EditResult;
|
|
6282
|
+
/** Delete an existing file through a LangGraph state update. */
|
|
6283
|
+
delete(filePath: string): DeleteResult;
|
|
6215
6284
|
/**
|
|
6216
6285
|
* Structured search results or error string for invalid input.
|
|
6217
6286
|
*/
|
|
@@ -6311,6 +6380,8 @@ declare class StoreBackend implements BackendProtocol {
|
|
|
6311
6380
|
* Returns EditResult. External storage sets filesUpdate=null.
|
|
6312
6381
|
*/
|
|
6313
6382
|
edit(filePath: string, oldString: string, newString: string, replaceAll?: boolean): Promise<EditResult>;
|
|
6383
|
+
/** Delete an existing persistent file. */
|
|
6384
|
+
delete(filePath: string): Promise<DeleteResult>;
|
|
6314
6385
|
/**
|
|
6315
6386
|
* Structured search results or error string for invalid input.
|
|
6316
6387
|
*/
|
|
@@ -6360,6 +6431,8 @@ declare class FilesystemBackend implements BackendProtocol {
|
|
|
6360
6431
|
* @throws Error if path traversal detected or path outside root
|
|
6361
6432
|
*/
|
|
6362
6433
|
private resolvePath;
|
|
6434
|
+
private assertVirtualParentContained;
|
|
6435
|
+
private validateDeleteTarget;
|
|
6363
6436
|
/**
|
|
6364
6437
|
* List files and directories in the specified directory (non-recursive).
|
|
6365
6438
|
*
|
|
@@ -6389,6 +6462,8 @@ declare class FilesystemBackend implements BackendProtocol {
|
|
|
6389
6462
|
* Returns WriteResult. External storage sets filesUpdate=null.
|
|
6390
6463
|
*/
|
|
6391
6464
|
write(filePath: string, content: string): Promise<WriteResult>;
|
|
6465
|
+
/** Delete an existing regular file without following symbolic links. */
|
|
6466
|
+
delete(filePath: string): Promise<DeleteResult>;
|
|
6392
6467
|
/**
|
|
6393
6468
|
* Edit a file by replacing string occurrences.
|
|
6394
6469
|
* Returns EditResult. External storage sets filesUpdate=null.
|
|
@@ -6479,6 +6554,8 @@ declare class CompositeBackend implements BackendProtocol {
|
|
|
6479
6554
|
* @returns WriteResult with path or error
|
|
6480
6555
|
*/
|
|
6481
6556
|
write(filePath: string, content: string): Promise<WriteResult>;
|
|
6557
|
+
/** Delete a file, routing to the same backend selected for write and edit. */
|
|
6558
|
+
delete(filePath: string): Promise<DeleteResult>;
|
|
6482
6559
|
/**
|
|
6483
6560
|
* Edit a file, routing to appropriate backend.
|
|
6484
6561
|
*
|
|
@@ -6509,6 +6586,8 @@ declare class MemoryBackend implements BackendProtocol {
|
|
|
6509
6586
|
readRaw(filePath: string): FileData;
|
|
6510
6587
|
write(filePath: string, content: string): WriteResult;
|
|
6511
6588
|
edit(filePath: string, oldString: string, newString: string, replaceAll?: boolean): EditResult;
|
|
6589
|
+
/** Delete an existing in-memory file. */
|
|
6590
|
+
delete(filePath: string): DeleteResult;
|
|
6512
6591
|
grepRaw(pattern: string, path?: string, glob?: string | null): GrepMatch[] | string;
|
|
6513
6592
|
globInfo(pattern: string, path?: string): FileInfo[];
|
|
6514
6593
|
}
|
|
@@ -6532,6 +6611,8 @@ declare class SandboxFilesystem implements BackendProtocol {
|
|
|
6532
6611
|
readRaw(filePath: string): Promise<FileData>;
|
|
6533
6612
|
readBinary(filePath: string): Promise<Buffer>;
|
|
6534
6613
|
write(filePath: string, content: string): Promise<WriteResult>;
|
|
6614
|
+
/** Delete an existing regular file in the sandbox. */
|
|
6615
|
+
delete(filePath: string): Promise<DeleteResult>;
|
|
6535
6616
|
edit(filePath: string, oldString: string, newString: string, replaceAll?: boolean): Promise<EditResult>;
|
|
6536
6617
|
grepRaw(pattern: string, searchPath?: string | null, glob?: string | null): Promise<GrepMatch[] | string>;
|
|
6537
6618
|
globInfo(pattern: string, searchPath?: string): Promise<FileInfo[]>;
|
|
@@ -6549,6 +6630,8 @@ declare class VolumeFilesystem implements BackendProtocol {
|
|
|
6549
6630
|
grepRaw(_pattern: string, _path?: string | null, _glob?: string | null): string | GrepMatch[];
|
|
6550
6631
|
globInfo(_pattern: string, _path?: string): FileInfo[];
|
|
6551
6632
|
write(filePath: string, content: string): Promise<WriteResult>;
|
|
6633
|
+
/** Delete an existing regular file from the mounted volume. */
|
|
6634
|
+
delete(filePath: string): Promise<DeleteResult>;
|
|
6552
6635
|
edit(_filePath: string, _oldString: string, _newString: string, _replaceAll?: boolean): EditResult;
|
|
6553
6636
|
}
|
|
6554
6637
|
|
|
@@ -8032,4 +8115,4 @@ declare class IdRemapper {
|
|
|
8032
8115
|
remapSkillIds(graphDefinition: Record<string, unknown>, skillRemap: Record<string, string>): Record<string, unknown>;
|
|
8033
8116
|
}
|
|
8034
8117
|
|
|
8035
|
-
export { AGENT_TASK_EVENT, type AddMessageParams, Agent, type AgentClient, type AgentExecutor, AgentInstanceManager, type AgentLattice, AgentLatticeManager, type AgentLifecycleEventName, AgentManager, type AgentStreamExecutor, type AgentThreadInterface, BUILTIN_PLUGINS, BUILTIN_SKILLS, type BackendFactory, type BackendProtocol, type BufferStats, type CacheEntry, type CaseRunResult, type Chunk, ChunkBuffer, ChunkBufferLatticeManager, CollectionLatticeManager, type ColumnInfo, CompositeBackend, type ConflictItem, type ConnectAllChannelsOptions, ConnectionRegistry, ConsoleLoggerClient, type CreateSandboxProviderConfig, type CronFields, CustomMetricsClient, type CustomMiddlewareFactory, CustomMiddlewareRegistry, type DatabaseConfig, type DatabaseType, DaytonaInstance, DaytonaProvider, type DaytonaProviderConfig, DefaultScheduleClient, DependencyResolver, E2BInstance, E2BProvider, type E2BProviderConfig, EMPTY_CONTENT_WARNING, type EditResult, type EmbeddingsInfo, type EmbeddingsLatticeInterface, EmbeddingsLatticeManager, type EnsureMicrosandboxInput, type EvalRunService, type ExportBundle, type ExportJob, type ExportableEntity, type ExportableEntityDefinition, ExportableEntityRegistry, type ExportableTypeInfo, type FileData, type FileInfo, FileSystemSkillStore, type FileSystemSkillStoreOptions, FilesystemBackend, type FsEntry, type GrepMatch, type IMessageQueueStore, type IMetricsServerClient, type ISqlDatabase, IdRemapper, type ImportApplyResult, type ImportEntityResult, type ImportEntityStatus, type ImportPreviewResult, InMemoryA2AApiKeyStore, InMemoryAssistantStore, InMemoryBindingStore, InMemoryChannelInstallationStore, InMemoryChunkBuffer, InMemoryCollectionStore, InMemoryDatabaseConfigStore, InMemoryMailboxStore, InMemoryMenuStore, InMemoryTaskListStore, InMemoryTaskStore, InMemoryTenantStore, InMemoryThreadMessageQueueStore, InMemoryThreadStore, InMemoryUserStore, InMemoryUserTenantLinkStore, type InsertionItem, LINE_NUMBER_WIDTH, type LangGraphStateChecker, type LatticeAgentStepConfig, LatticeEval, type LatticeEvalBatchReport, type LatticeEvalCase, type LatticeEvalCaseType, type LatticeEvalCaseWithTemplate, type LatticeEvalConfig, type LatticeEvalLogEvent, type LatticeEvalLogLevel, LatticeEvalProject, type LatticeEvalProjectType, type LatticeEvalResult, type LatticeEvalRubric, LatticeEvalSuite, type LatticeEvalSuiteType, type LatticeEvalTemplate, LocalSandboxInstance, LocalSandboxProvider, type LocalSandboxProviderConfig, 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, MysqlDatabase, type OutputType, type PendingMessage, PersonalAssistantConfig, PinoLoggerClient, PluginRegistry, PostgresDatabase, type PreviewError, PrometheusClient, type QueryResult, type QueueLattice, QueueLatticeManager, QueueMode, type QueuePendingEvent, RemoteSandboxInstance, RemoteSandboxProvider, type RemoteSandboxProviderConfig, type Resolution, type ResolutionAction, type ResolveAgentFn, type ResolvedConfig, type RunSandboxConfig, type RuntimeModelConfig, type STTModelInfo, STTModelLattice, type STTModelLatticeInterface, STTModelLatticeManager, type SandboxFileInfo, type SandboxFileService, SandboxFilesystem, type SandboxInstance, type SandboxIsolationLevel, SandboxLatticeManager, type SandboxManagerProtocol, type SandboxProvider, type SandboxProviderFactory, type SandboxProviderType, type SandboxShellService, SandboxSkillStore, type SandboxSkillStoreOptions, type SandboxVolumeDefinition, type ScheduleLattice, ScheduleLatticeManager, type SchedulerMiddlewareOptions, SemanticMetricsClient, type SharePayload, SimpleMemoryVectorStore, 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, TokenCache, type ToolDefinition, type ToolLattice, ToolLatticeManager, type UnknownToolHandlerConfig, type VectorStoreLatticeInterface, VectorStoreLatticeManager, type VectorStoreProviderLattice, VectorStoreProviderManager, VolumeFilesystem, type VolumeFsClient, type WorkflowValidationError, type WriteResult, abortWorkflowRun, agentInstanceManager, agentLatticeManager, buildGrepResultsDict, buildInput, buildNamedVolumeName, buildSandboxMetadataEnv, buildSkillFile, buildStateAnnotation, buildTableName, checkEmptyContent, clearEncryptionKeyCache, clearEvalRunService, collectionLatticeManager, compileInternal, compileWorkflow, computeSandboxName, configureStores, connectAllChannels, createAgentNode, createAgentTeam, createExecuteSqlQueryTool, createFileData, createInfoSqlTool, createListMetricsDataSourcesTool, createListMetricsServersTool, createListTablesSqlTool, createMapNode, createModelSelectorMiddleware, createNodeHandler, createQueryCheckerSqlTool, createQueryMetricDefinitionTool, createQueryMetricsListTool, createQuerySemanticMetricDataTool, createQuerySqlTool, createQueryTableDefinitionTool, createQueryTablesListTool, createResourceAddress, createSandboxProvider, createSchedulerMiddleware, createSharePayload, createTaskMiddleware, createTeamMiddleware, createTeammateTools, createUnknownToolHandlerMiddleware, createWidgetMiddleware, decrypt, describeCronExpression, documentLearningPlugin, documentParserPlugin, embeddingsLatticeManager, encrypt, ensureBuiltinAgentsForTenant, evaluateLatticeCaseWithLogs, eventBus, eventBus as eventBusDefault, extractFetcherError, extractOutput, fileDataToString, formatContentWithLineNumbers, formatGrepMatches, formatGrepResults, formatReadResponse, generateToken, getAgentClient, getAgentConfig, getAllAgentConfigs, getAllBuiltInSkillMetas, getAllToolDefinitions, getBindingRegistry, getBuiltInSkillContent, getBuiltInSkillMeta, getBuiltInSkillNames, getCheckpointSaver, getChunkBuffer, getCollectionEntryCount, getEmbeddingsClient, getEmbeddingsLattice, getEncryptionKey, getEvalRunService, getLoggerLattice, getMenuRegistry, getModelLattice, getNextCronTime, getOrCreateCollectionVectorStore, getQueueLattice, getSTTClient, getSTTClientWithTenant, getSTTModelLattice, getSandBoxManager, getScheduleLattice, getStoreLattice, getToolClient, getToolDefinition, getToolLattice, getVectorStoreClient, getVectorStoreLattice, getVectorStoreProvider, getWorkflowSignal, globSearchFiles, grepMatchesFromFiles, grepSearchFiles, hasChunkBuffer, invokeWithRetry, isBuiltInSkill, isUsingDefaultKey, isValidCronExpression, isValidSandboxName, isValidSkillName, listCollectionEntries, listSandboxProviderTypes, loggerLatticeManager, mcpManager, metricsServerManager, modelLatticeManager, normalizeSandboxName, parallelLimit, parseCronExpression, parseSkillFrontmatter, parseYaml, performStringReplacement, queueLatticeManager, registerAgentLattice, registerAgentLatticeWithTenant, registerAgentLattices, registerBuiltinSkill, registerCheckpointSaver, registerChunkBuffer, registerEmbeddingsLattice, registerExistingTool, registerLoggerLattice, registerModelLattice, registerQueueLattice, registerSTTModelLattice, registerSandboxProviderType, registerScheduleLattice, registerStoreLattice, registerTeammateAgent, registerToolLattice, registerVectorStoreLattice, registerVectorStoreProvider, registerWorkflowRun, removeCollectionVectorStore, renderTemplate, resolvePath, sandboxLatticeManager, sanitizeToolCallId, scheduleLatticeManager, serializePluginMeta, setBindingRegistry, setEvalRunService, setMenuRegistry, skillLatticeManager, sqlDatabaseManager, storeLatticeManager, sttModelLatticeManager, toJsonSchema, toSafeStateExpr, toolLatticeManager, truncateIfTooLong, unregisterTeammateAgent, unregisterWorkflowRun, updateFileData, validateAgentInput, validateDSL, validateEncryptionKey, validatePath, validateSkillName, validateToolInput, vectorStoreLatticeManager, vectorStoreProviderManager };
|
|
8118
|
+
export { AGENT_TASK_EVENT, type AddMessageParams, Agent, type AgentClient, type AgentExecutor, AgentInstanceManager, type AgentLattice, AgentLatticeManager, type AgentLifecycleEventName, AgentManager, type AgentStreamExecutor, type AgentThreadInterface, BUILTIN_PLUGINS, BUILTIN_SKILLS, type BackendFactory, type BackendProtocol, type BufferStats, type CacheEntry, type CaseRunResult, type Chunk, ChunkBuffer, ChunkBufferLatticeManager, CollectionLatticeManager, type ColumnInfo, CompositeBackend, type ConflictItem, type ConnectAllChannelsOptions, ConnectionRegistry, ConsoleLoggerClient, type CreateSandboxProviderConfig, type CronFields, CustomMetricsClient, type CustomMiddlewareFactory, CustomMiddlewareRegistry, type DatabaseConfig, type DatabaseType, DaytonaInstance, DaytonaProvider, type DaytonaProviderConfig, DefaultScheduleClient, type DeleteResult, DependencyResolver, E2BInstance, E2BProvider, type E2BProviderConfig, EMPTY_CONTENT_WARNING, type EditResult, type EmbeddingsInfo, type EmbeddingsLatticeInterface, EmbeddingsLatticeManager, type EnsureMicrosandboxInput, type EvalRunService, type ExportBundle, type ExportJob, type ExportableEntity, type ExportableEntityDefinition, ExportableEntityRegistry, type ExportableTypeInfo, type FileData, type FileInfo, FileSystemSkillStore, type FileSystemSkillStoreOptions, FilesystemBackend, type FsEntry, type GrepMatch, type IMessageQueueStore, type IMetricsServerClient, type ISqlDatabase, IdRemapper, type ImportApplyResult, type ImportEntityResult, type ImportEntityStatus, type ImportPreviewResult, InMemoryA2AApiKeyStore, InMemoryAssistantStore, InMemoryBindingStore, InMemoryChannelInstallationStore, InMemoryChunkBuffer, InMemoryCollectionStore, InMemoryDatabaseConfigStore, InMemoryMailboxStore, InMemoryMenuStore, InMemoryTaskListStore, InMemoryTaskStore, InMemoryTenantStore, InMemoryThreadMessageQueueStore, InMemoryThreadStore, InMemoryUserStore, InMemoryUserTenantLinkStore, type InsertionItem, type JudgeVerdict, LINE_NUMBER_WIDTH, type LangGraphStateChecker, type LatticeAgentStepConfig, LatticeEval, type LatticeEvalBatchReport, type LatticeEvalCase, type LatticeEvalCaseType, type LatticeEvalCaseWithTemplate, type LatticeEvalConfig, type LatticeEvalLogEvent, type LatticeEvalLogLevel, LatticeEvalProject, type LatticeEvalProjectType, type LatticeEvalResult, type LatticeEvalRubric, LatticeEvalSuite, type LatticeEvalSuiteType, type LatticeEvalTemplate, LocalSandboxInstance, LocalSandboxProvider, type LocalSandboxProviderConfig, 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, MysqlDatabase, type OutputType, type PendingMessage, PersonalAssistantConfig, PinoLoggerClient, PluginRegistry, PostgresDatabase, type PreviewError, PrometheusClient, type QueryResult, type QueueLattice, QueueLatticeManager, QueueMode, type QueuePendingEvent, RemoteSandboxInstance, RemoteSandboxProvider, type RemoteSandboxProviderConfig, type Resolution, type ResolutionAction, type ResolveAgentFn, type ResolvedConfig, type RunSandboxConfig, type RuntimeModelConfig, type STTModelInfo, STTModelLattice, type STTModelLatticeInterface, STTModelLatticeManager, type SandboxFileInfo, type SandboxFileService, SandboxFilesystem, type SandboxInstance, type SandboxIsolationLevel, SandboxLatticeManager, type SandboxManagerProtocol, type SandboxProvider, type SandboxProviderFactory, type SandboxProviderType, type SandboxShellService, SandboxSkillStore, type SandboxSkillStoreOptions, type SandboxVolumeDefinition, type ScheduleLattice, ScheduleLatticeManager, type SchedulerMiddlewareOptions, SemanticMetricsClient, type SharePayload, SimpleMemoryVectorStore, 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, TokenCache, type ToolDefinition, type ToolLattice, ToolLatticeManager, type UnknownToolHandlerConfig, type VectorStoreLatticeInterface, VectorStoreLatticeManager, type VectorStoreProviderLattice, VectorStoreProviderManager, VolumeFilesystem, type VolumeFsClient, type WorkflowValidationError, type WriteResult, abortWorkflowRun, agentInstanceManager, agentLatticeManager, buildGrepResultsDict, buildInput, buildNamedVolumeName, buildSandboxMetadataEnv, buildSkillFile, buildStateAnnotation, buildTableName, checkEmptyContent, clearEncryptionKeyCache, clearEvalRunService, collectionLatticeManager, compileInternal, compileWorkflow, computeSandboxName, configureStores, connectAllChannels, createAgentNode, createAgentTeam, createExecuteSqlQueryTool, createFileData, createInfoSqlTool, createListMetricsDataSourcesTool, createListMetricsServersTool, createListTablesSqlTool, createMapNode, createModelSelectorMiddleware, createNodeHandler, createQueryCheckerSqlTool, createQueryMetricDefinitionTool, createQueryMetricsListTool, createQuerySemanticMetricDataTool, createQuerySqlTool, createQueryTableDefinitionTool, createQueryTablesListTool, createResourceAddress, createSandboxProvider, createSchedulerMiddleware, createSharePayload, createTaskMiddleware, createTeamMiddleware, createTeammateTools, createUnknownToolHandlerMiddleware, createWidgetMiddleware, decrypt, describeCronExpression, documentLearningPlugin, documentParserPlugin, embeddingsLatticeManager, encrypt, ensureBuiltinAgentsForTenant, evaluateLatticeCaseWithLogs, eventBus, eventBus as eventBusDefault, extractFetcherError, extractOutput, fileDataToString, formatContentWithLineNumbers, formatGrepMatches, formatGrepResults, formatReadResponse, generateToken, getAgentClient, getAgentConfig, getAllAgentConfigs, getAllBuiltInSkillMetas, getAllToolDefinitions, getBindingRegistry, getBuiltInSkillContent, getBuiltInSkillMeta, getBuiltInSkillNames, getCheckpointSaver, getChunkBuffer, getCollectionEntryCount, getEmbeddingsClient, getEmbeddingsLattice, getEncryptionKey, getEvalRunService, getLoggerLattice, getMenuRegistry, getModelLattice, getNextCronTime, getOrCreateCollectionVectorStore, getQueueLattice, getSTTClient, getSTTClientWithTenant, getSTTModelLattice, getSandBoxManager, getScheduleLattice, getStoreLattice, getToolClient, getToolDefinition, getToolLattice, getVectorStoreClient, getVectorStoreLattice, getVectorStoreProvider, getWorkflowSignal, globSearchFiles, grepMatchesFromFiles, grepSearchFiles, hasChunkBuffer, invokeWithRetry, isBuiltInSkill, isUsingDefaultKey, isValidCronExpression, isValidSandboxName, isValidSkillName, listCollectionEntries, listSandboxProviderTypes, loggerLatticeManager, mcpManager, metricsServerManager, modelLatticeManager, normalizeSandboxName, parallelLimit, parseCronExpression, parseJudgeVerdict, parseSkillFrontmatter, parseYaml, performStringReplacement, queueLatticeManager, registerAgentLattice, registerAgentLatticeWithTenant, registerAgentLattices, registerBuiltinSkill, registerCheckpointSaver, registerChunkBuffer, registerEmbeddingsLattice, registerExistingTool, registerLoggerLattice, registerModelLattice, registerQueueLattice, registerSTTModelLattice, registerSandboxProviderType, registerScheduleLattice, registerStoreLattice, registerTeammateAgent, registerToolLattice, registerVectorStoreLattice, registerVectorStoreProvider, registerWorkflowRun, removeCollectionVectorStore, renderTemplate, resolvePath, sandboxLatticeManager, sanitizeToolCallId, scheduleLatticeManager, serializePluginMeta, setBindingRegistry, setEvalRunService, setMenuRegistry, skillLatticeManager, sqlDatabaseManager, storeLatticeManager, sttModelLatticeManager, toJsonSchema, toSafeStateExpr, toolLatticeManager, truncateIfTooLong, unregisterTeammateAgent, unregisterWorkflowRun, updateFileData, validateAgentInput, validateDSL, validateEncryptionKey, validatePath, validateSkillName, validateToolInput, vectorStoreLatticeManager, vectorStoreProviderManager };
|