@axiom-lattice/protocols 2.1.5 → 2.1.7
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/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +12 -0
- package/dist/index.d.mts +339 -50
- package/dist/index.d.ts +339 -50
- package/dist/index.js +8 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/AssistantStoreProtocol.ts +113 -0
- package/src/EmbeddingsLatticeProtocol.ts +30 -0
- package/src/ScheduleLatticeProtocol.ts +115 -0
- package/src/ThreadStoreProtocol.ts +113 -0
- package/src/VectorStoreLatticeProtocol.ts +73 -0
- package/src/index.ts +5 -1
- package/src/StorageLatticeProtocol.ts +0 -55
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,9 @@ import { BaseChatModel } from '@langchain/core/language_models/chat_models';
|
|
|
4
4
|
import { BaseMessage as BaseMessage$1 } from '@langchain/core/messages';
|
|
5
5
|
import { ChatResult } from '@langchain/core/outputs';
|
|
6
6
|
import { CompiledStateGraph } from '@langchain/langgraph';
|
|
7
|
+
import { Embeddings } from '@langchain/core/embeddings';
|
|
8
|
+
import { VectorStore } from '@langchain/core/vectorstores';
|
|
9
|
+
import { DocumentInterface } from '@langchain/core/documents';
|
|
7
10
|
|
|
8
11
|
/**
|
|
9
12
|
* BaseLatticeProtocol
|
|
@@ -257,55 +260,6 @@ interface MemoryLatticeProtocol extends BaseLatticeProtocol<MemoryConfig, Memory
|
|
|
257
260
|
clear: () => Promise<void>;
|
|
258
261
|
}
|
|
259
262
|
|
|
260
|
-
/**
|
|
261
|
-
* StorageLatticeProtocol
|
|
262
|
-
*
|
|
263
|
-
* 存储Lattice的协议,用于数据持久化和状态管理
|
|
264
|
-
*/
|
|
265
|
-
|
|
266
|
-
/**
|
|
267
|
-
* 存储类型枚举
|
|
268
|
-
*/
|
|
269
|
-
declare enum StorageType {
|
|
270
|
-
MEMORY = "memory",
|
|
271
|
-
LOCAL = "local",
|
|
272
|
-
DATABASE = "database",
|
|
273
|
-
CLOUD = "cloud",
|
|
274
|
-
DISTRIBUTED = "distributed"
|
|
275
|
-
}
|
|
276
|
-
/**
|
|
277
|
-
* 存储配置接口
|
|
278
|
-
*/
|
|
279
|
-
interface StorageConfig {
|
|
280
|
-
name: string;
|
|
281
|
-
description: string;
|
|
282
|
-
type: StorageType;
|
|
283
|
-
connectionString?: string;
|
|
284
|
-
options?: Record<string, any>;
|
|
285
|
-
}
|
|
286
|
-
/**
|
|
287
|
-
* 存储客户端接口
|
|
288
|
-
*/
|
|
289
|
-
interface StorageClient {
|
|
290
|
-
set: (key: string, value: any) => Promise<void>;
|
|
291
|
-
get: (key: string) => Promise<any>;
|
|
292
|
-
has: (key: string) => Promise<boolean>;
|
|
293
|
-
delete: (key: string) => Promise<boolean>;
|
|
294
|
-
clear: () => Promise<void>;
|
|
295
|
-
transaction: <T>(operations: () => Promise<T>) => Promise<T>;
|
|
296
|
-
}
|
|
297
|
-
/**
|
|
298
|
-
* 存储Lattice协议接口
|
|
299
|
-
*/
|
|
300
|
-
interface StorageLatticeProtocol extends BaseLatticeProtocol<StorageConfig, StorageClient> {
|
|
301
|
-
set: (key: string, value: any) => Promise<void>;
|
|
302
|
-
get: (key: string) => Promise<any>;
|
|
303
|
-
has: (key: string) => Promise<boolean>;
|
|
304
|
-
delete: (key: string) => Promise<boolean>;
|
|
305
|
-
clear: () => Promise<void>;
|
|
306
|
-
transaction: <T>(operations: () => Promise<T>) => Promise<T>;
|
|
307
|
-
}
|
|
308
|
-
|
|
309
263
|
/**
|
|
310
264
|
* UILatticeProtocol
|
|
311
265
|
*
|
|
@@ -410,6 +364,154 @@ interface QueueLatticeProtocol extends BaseLatticeProtocol<QueueConfig, QueueCli
|
|
|
410
364
|
}>;
|
|
411
365
|
}
|
|
412
366
|
|
|
367
|
+
/**
|
|
368
|
+
* ScheduleLatticeProtocol
|
|
369
|
+
*
|
|
370
|
+
* Schedule Lattice protocol for delayed task execution management
|
|
371
|
+
*/
|
|
372
|
+
|
|
373
|
+
/**
|
|
374
|
+
* Schedule service type enumeration
|
|
375
|
+
*/
|
|
376
|
+
declare enum ScheduleType {
|
|
377
|
+
MEMORY = "memory"
|
|
378
|
+
}
|
|
379
|
+
/**
|
|
380
|
+
* Schedule configuration interface
|
|
381
|
+
*/
|
|
382
|
+
interface ScheduleConfig {
|
|
383
|
+
name: string;
|
|
384
|
+
description: string;
|
|
385
|
+
type: ScheduleType;
|
|
386
|
+
options?: Record<string, any>;
|
|
387
|
+
}
|
|
388
|
+
/**
|
|
389
|
+
* Scheduled task information interface
|
|
390
|
+
*/
|
|
391
|
+
interface ScheduledTaskInfo {
|
|
392
|
+
taskId: string;
|
|
393
|
+
scheduledAt: number;
|
|
394
|
+
timeoutMs: number;
|
|
395
|
+
remainingMs: number;
|
|
396
|
+
}
|
|
397
|
+
/**
|
|
398
|
+
* Schedule client interface
|
|
399
|
+
*/
|
|
400
|
+
interface ScheduleClient {
|
|
401
|
+
/**
|
|
402
|
+
* Register a function to be executed after the specified timeout
|
|
403
|
+
* @param taskId - Unique identifier for the task
|
|
404
|
+
* @param callback - Function to execute when timeout expires
|
|
405
|
+
* @param timeoutMs - Delay in milliseconds before execution
|
|
406
|
+
* @returns true if registered successfully
|
|
407
|
+
*/
|
|
408
|
+
register: (taskId: string, callback: () => void | Promise<void>, timeoutMs: number) => boolean;
|
|
409
|
+
/**
|
|
410
|
+
* Cancel a scheduled task by its ID
|
|
411
|
+
* @param taskId - The task identifier to cancel
|
|
412
|
+
* @returns true if task was found and cancelled, false otherwise
|
|
413
|
+
*/
|
|
414
|
+
cancel: (taskId: string) => boolean;
|
|
415
|
+
/**
|
|
416
|
+
* Check if a task is currently scheduled
|
|
417
|
+
* @param taskId - The task identifier to check
|
|
418
|
+
*/
|
|
419
|
+
has: (taskId: string) => boolean;
|
|
420
|
+
/**
|
|
421
|
+
* Get the remaining time in milliseconds for a scheduled task
|
|
422
|
+
* @param taskId - The task identifier
|
|
423
|
+
* @returns Remaining time in ms, or -1 if task not found
|
|
424
|
+
*/
|
|
425
|
+
getRemainingTime: (taskId: string) => number;
|
|
426
|
+
/**
|
|
427
|
+
* Get the count of currently scheduled tasks
|
|
428
|
+
*/
|
|
429
|
+
getTaskCount: () => number;
|
|
430
|
+
/**
|
|
431
|
+
* Get all scheduled task IDs
|
|
432
|
+
*/
|
|
433
|
+
getTaskIds: () => string[];
|
|
434
|
+
/**
|
|
435
|
+
* Cancel all scheduled tasks
|
|
436
|
+
*/
|
|
437
|
+
cancelAll: () => void;
|
|
438
|
+
/**
|
|
439
|
+
* Get task information
|
|
440
|
+
* @param taskId - The task identifier
|
|
441
|
+
* @returns Task info or null if not found
|
|
442
|
+
*/
|
|
443
|
+
getTaskInfo?: (taskId: string) => ScheduledTaskInfo | null;
|
|
444
|
+
}
|
|
445
|
+
/**
|
|
446
|
+
* Schedule Lattice protocol interface
|
|
447
|
+
*/
|
|
448
|
+
interface ScheduleLatticeProtocol extends BaseLatticeProtocol<ScheduleConfig, ScheduleClient> {
|
|
449
|
+
register: (taskId: string, callback: () => void | Promise<void>, timeoutMs: number) => boolean;
|
|
450
|
+
cancel: (taskId: string) => boolean;
|
|
451
|
+
has: (taskId: string) => boolean;
|
|
452
|
+
getRemainingTime: (taskId: string) => number;
|
|
453
|
+
getTaskCount: () => number;
|
|
454
|
+
getTaskIds: () => string[];
|
|
455
|
+
cancelAll: () => void;
|
|
456
|
+
getTaskInfo?: (taskId: string) => ScheduledTaskInfo | null;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
/**
|
|
460
|
+
* EmbeddingsLatticeProtocol
|
|
461
|
+
*
|
|
462
|
+
* Embeddings Lattice protocol for defining unified interface for embedding models
|
|
463
|
+
*/
|
|
464
|
+
|
|
465
|
+
/**
|
|
466
|
+
* Embeddings configuration interface
|
|
467
|
+
*/
|
|
468
|
+
interface EmbeddingsConfig {
|
|
469
|
+
name: string;
|
|
470
|
+
description?: string;
|
|
471
|
+
dimensions?: number;
|
|
472
|
+
maxChunkSize?: number;
|
|
473
|
+
}
|
|
474
|
+
/**
|
|
475
|
+
* Embeddings Lattice protocol interface
|
|
476
|
+
*/
|
|
477
|
+
interface EmbeddingsLatticeProtocol extends BaseLatticeProtocol<EmbeddingsConfig, Embeddings> {
|
|
478
|
+
embedDocuments: (texts: string[]) => Promise<number[][]>;
|
|
479
|
+
embedQuery: (text: string) => Promise<number[]>;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
/**
|
|
483
|
+
* VectorStoreLatticeProtocol
|
|
484
|
+
*
|
|
485
|
+
* VectorStore Lattice protocol for defining unified interface for vector store implementations
|
|
486
|
+
*/
|
|
487
|
+
|
|
488
|
+
/**
|
|
489
|
+
* VectorStore configuration interface
|
|
490
|
+
*/
|
|
491
|
+
interface VectorStoreConfig {
|
|
492
|
+
name: string;
|
|
493
|
+
description?: string;
|
|
494
|
+
type?: string;
|
|
495
|
+
config?: Record<string, any>;
|
|
496
|
+
}
|
|
497
|
+
/**
|
|
498
|
+
* VectorStore Lattice protocol interface
|
|
499
|
+
*/
|
|
500
|
+
interface VectorStoreLatticeProtocol extends BaseLatticeProtocol<VectorStoreConfig, VectorStore> {
|
|
501
|
+
addVectors: (vectors: number[][], documents: DocumentInterface[], options?: Record<string, any>) => Promise<string[] | void>;
|
|
502
|
+
addDocuments: (documents: DocumentInterface[], options?: Record<string, any>) => Promise<string[] | void>;
|
|
503
|
+
delete: (params?: Record<string, any>) => Promise<void>;
|
|
504
|
+
similaritySearchVectorWithScore: (query: number[], k: number, filter?: VectorStore["FilterType"]) => Promise<[DocumentInterface, number][]>;
|
|
505
|
+
similaritySearch: (query: string, k?: number, filter?: VectorStore["FilterType"]) => Promise<DocumentInterface[]>;
|
|
506
|
+
similaritySearchWithScore: (query: string, k?: number, filter?: VectorStore["FilterType"]) => Promise<[DocumentInterface, number][]>;
|
|
507
|
+
maxMarginalRelevanceSearch?: (query: string, options: {
|
|
508
|
+
k: number;
|
|
509
|
+
fetchK?: number;
|
|
510
|
+
lambda?: number;
|
|
511
|
+
filter?: VectorStore["FilterType"];
|
|
512
|
+
}) => Promise<DocumentInterface[]>;
|
|
513
|
+
}
|
|
514
|
+
|
|
413
515
|
/**
|
|
414
516
|
* MessageProtocol
|
|
415
517
|
*
|
|
@@ -513,6 +615,193 @@ interface MessageChunk {
|
|
|
513
615
|
*/
|
|
514
616
|
type Message = UserMessage | AssistantMessage | SystemMessage | ToolMessage | DeveloperMessage;
|
|
515
617
|
|
|
618
|
+
/**
|
|
619
|
+
* ThreadStoreProtocol
|
|
620
|
+
*
|
|
621
|
+
* Thread store protocol definitions for the Axiom Lattice framework
|
|
622
|
+
* Provides standardized interfaces for thread management across all implementations
|
|
623
|
+
*/
|
|
624
|
+
/**
|
|
625
|
+
* Thread type definition
|
|
626
|
+
*/
|
|
627
|
+
interface Thread {
|
|
628
|
+
/**
|
|
629
|
+
* Thread identifier
|
|
630
|
+
*/
|
|
631
|
+
id: string;
|
|
632
|
+
/**
|
|
633
|
+
* Assistant identifier this thread belongs to
|
|
634
|
+
*/
|
|
635
|
+
assistantId: string;
|
|
636
|
+
/**
|
|
637
|
+
* Thread metadata
|
|
638
|
+
*/
|
|
639
|
+
metadata?: Record<string, any>;
|
|
640
|
+
/**
|
|
641
|
+
* Thread creation timestamp
|
|
642
|
+
*/
|
|
643
|
+
createdAt: Date;
|
|
644
|
+
/**
|
|
645
|
+
* Thread last update timestamp
|
|
646
|
+
*/
|
|
647
|
+
updatedAt: Date;
|
|
648
|
+
}
|
|
649
|
+
/**
|
|
650
|
+
* Create thread request type
|
|
651
|
+
*/
|
|
652
|
+
interface CreateThreadRequest {
|
|
653
|
+
/**
|
|
654
|
+
* Thread metadata
|
|
655
|
+
*/
|
|
656
|
+
metadata?: Record<string, any>;
|
|
657
|
+
}
|
|
658
|
+
/**
|
|
659
|
+
* ThreadStore interface
|
|
660
|
+
* Provides CRUD operations for thread data
|
|
661
|
+
* All operations are scoped to an assistant ID
|
|
662
|
+
*/
|
|
663
|
+
interface ThreadStore {
|
|
664
|
+
/**
|
|
665
|
+
* Get all threads for a specific assistant
|
|
666
|
+
* @param assistantId Assistant identifier
|
|
667
|
+
* @returns Array of threads for the assistant
|
|
668
|
+
*/
|
|
669
|
+
getThreadsByAssistantId(assistantId: string): Promise<Thread[]>;
|
|
670
|
+
/**
|
|
671
|
+
* Get a thread by ID for a specific assistant
|
|
672
|
+
* @param assistantId Assistant identifier
|
|
673
|
+
* @param threadId Thread identifier
|
|
674
|
+
* @returns Thread if found, undefined otherwise
|
|
675
|
+
*/
|
|
676
|
+
getThreadById(assistantId: string, threadId: string): Promise<Thread | undefined>;
|
|
677
|
+
/**
|
|
678
|
+
* Create a new thread for an assistant
|
|
679
|
+
* @param assistantId Assistant identifier
|
|
680
|
+
* @param threadId Thread identifier
|
|
681
|
+
* @param data Thread creation data
|
|
682
|
+
* @returns Created thread
|
|
683
|
+
*/
|
|
684
|
+
createThread(assistantId: string, threadId: string, data: CreateThreadRequest): Promise<Thread>;
|
|
685
|
+
/**
|
|
686
|
+
* Update an existing thread
|
|
687
|
+
* @param assistantId Assistant identifier
|
|
688
|
+
* @param threadId Thread identifier
|
|
689
|
+
* @param updates Partial thread data to update
|
|
690
|
+
* @returns Updated thread if found, null otherwise
|
|
691
|
+
*/
|
|
692
|
+
updateThread(assistantId: string, threadId: string, updates: Partial<CreateThreadRequest>): Promise<Thread | null>;
|
|
693
|
+
/**
|
|
694
|
+
* Delete a thread by ID
|
|
695
|
+
* @param assistantId Assistant identifier
|
|
696
|
+
* @param threadId Thread identifier
|
|
697
|
+
* @returns true if deleted, false otherwise
|
|
698
|
+
*/
|
|
699
|
+
deleteThread(assistantId: string, threadId: string): Promise<boolean>;
|
|
700
|
+
/**
|
|
701
|
+
* Check if thread exists
|
|
702
|
+
* @param assistantId Assistant identifier
|
|
703
|
+
* @param threadId Thread identifier
|
|
704
|
+
* @returns true if thread exists, false otherwise
|
|
705
|
+
*/
|
|
706
|
+
hasThread(assistantId: string, threadId: string): Promise<boolean>;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
/**
|
|
710
|
+
* AssistantStoreProtocol
|
|
711
|
+
*
|
|
712
|
+
* Assistant store protocol definitions for the Axiom Lattice framework
|
|
713
|
+
* Provides standardized interfaces for assistant management across all implementations
|
|
714
|
+
*/
|
|
715
|
+
/**
|
|
716
|
+
* Assistant type definition
|
|
717
|
+
*/
|
|
718
|
+
interface Assistant {
|
|
719
|
+
/**
|
|
720
|
+
* Assistant identifier
|
|
721
|
+
*/
|
|
722
|
+
id: string;
|
|
723
|
+
/**
|
|
724
|
+
* Assistant name
|
|
725
|
+
*/
|
|
726
|
+
name: string;
|
|
727
|
+
/**
|
|
728
|
+
* Assistant description
|
|
729
|
+
*/
|
|
730
|
+
description?: string;
|
|
731
|
+
/**
|
|
732
|
+
* Graph definition for the assistant
|
|
733
|
+
*/
|
|
734
|
+
graphDefinition: any;
|
|
735
|
+
/**
|
|
736
|
+
* Assistant creation timestamp
|
|
737
|
+
*/
|
|
738
|
+
createdAt: Date;
|
|
739
|
+
/**
|
|
740
|
+
* Assistant last update timestamp
|
|
741
|
+
*/
|
|
742
|
+
updatedAt: Date;
|
|
743
|
+
}
|
|
744
|
+
/**
|
|
745
|
+
* Create assistant request type
|
|
746
|
+
*/
|
|
747
|
+
interface CreateAssistantRequest {
|
|
748
|
+
/**
|
|
749
|
+
* Assistant name
|
|
750
|
+
*/
|
|
751
|
+
name: string;
|
|
752
|
+
/**
|
|
753
|
+
* Assistant description
|
|
754
|
+
*/
|
|
755
|
+
description?: string;
|
|
756
|
+
/**
|
|
757
|
+
* Graph definition for the assistant
|
|
758
|
+
*/
|
|
759
|
+
graphDefinition: any;
|
|
760
|
+
}
|
|
761
|
+
/**
|
|
762
|
+
* AssistantStore interface
|
|
763
|
+
* Provides CRUD operations for assistant data
|
|
764
|
+
*/
|
|
765
|
+
interface AssistantStore {
|
|
766
|
+
/**
|
|
767
|
+
* Get all assistants
|
|
768
|
+
* @returns Array of all assistants
|
|
769
|
+
*/
|
|
770
|
+
getAllAssistants(): Promise<Assistant[]>;
|
|
771
|
+
/**
|
|
772
|
+
* Get assistant by ID
|
|
773
|
+
* @param id Assistant identifier
|
|
774
|
+
* @returns Assistant if found, undefined otherwise
|
|
775
|
+
*/
|
|
776
|
+
getAssistantById(id: string): Promise<Assistant | null>;
|
|
777
|
+
/**
|
|
778
|
+
* Create a new assistant
|
|
779
|
+
* @param id Assistant identifier
|
|
780
|
+
* @param data Assistant creation data
|
|
781
|
+
* @returns Created assistant
|
|
782
|
+
*/
|
|
783
|
+
createAssistant(id: string, data: CreateAssistantRequest): Promise<Assistant>;
|
|
784
|
+
/**
|
|
785
|
+
* Update an existing assistant
|
|
786
|
+
* @param id Assistant identifier
|
|
787
|
+
* @param updates Partial assistant data to update
|
|
788
|
+
* @returns Updated assistant if found, null otherwise
|
|
789
|
+
*/
|
|
790
|
+
updateAssistant(id: string, updates: Partial<CreateAssistantRequest>): Promise<Assistant | null>;
|
|
791
|
+
/**
|
|
792
|
+
* Delete an assistant by ID
|
|
793
|
+
* @param id Assistant identifier
|
|
794
|
+
* @returns true if deleted, false otherwise
|
|
795
|
+
*/
|
|
796
|
+
deleteAssistant(id: string): Promise<boolean>;
|
|
797
|
+
/**
|
|
798
|
+
* Check if assistant exists
|
|
799
|
+
* @param id Assistant identifier
|
|
800
|
+
* @returns true if assistant exists, false otherwise
|
|
801
|
+
*/
|
|
802
|
+
hasAssistant(id: string): Promise<boolean>;
|
|
803
|
+
}
|
|
804
|
+
|
|
516
805
|
/**
|
|
517
806
|
* 通用类型定义
|
|
518
807
|
*
|
|
@@ -576,4 +865,4 @@ type Timestamp = number;
|
|
|
576
865
|
*/
|
|
577
866
|
type Callback<T = any, R = void> = (data: T) => R | Promise<R>;
|
|
578
867
|
|
|
579
|
-
export { type AgentClient, type AgentConfig, type AgentConfigWithTools, type AgentLatticeProtocol, AgentType, type AssistantMessage, type BaseLatticeProtocol, type BaseMessage, type Callback, type DeepAgentConfig, type DeveloperMessage, type FilterCondition, type GraphBuildOptions, type ID, type InterruptMessage, type LLMConfig, type LatticeError, type LatticeEventBus, type LatticeMessage, type MemoryClient, type MemoryConfig, type MemoryLatticeProtocol, MemoryType, type Message, type MessageChunk, type ModelLatticeProtocol, type PaginatedResult, type PaginationParams, type PlanExecuteAgentConfig, type QueryParams, type QueueClient, type QueueConfig, type QueueLatticeProtocol, type QueueResult, QueueType, type ReactAgentConfig, type Result, type
|
|
868
|
+
export { type AgentClient, type AgentConfig, type AgentConfigWithTools, type AgentLatticeProtocol, AgentType, type Assistant, type AssistantMessage, type AssistantStore, type BaseLatticeProtocol, type BaseMessage, type Callback, type CreateAssistantRequest, type CreateThreadRequest, type DeepAgentConfig, type DeveloperMessage, type EmbeddingsConfig, type EmbeddingsLatticeProtocol, type FilterCondition, type GraphBuildOptions, type ID, type InterruptMessage, type LLMConfig, type LatticeError, type LatticeEventBus, type LatticeMessage, type MemoryClient, type MemoryConfig, type MemoryLatticeProtocol, MemoryType, type Message, type MessageChunk, type ModelLatticeProtocol, type PaginatedResult, type PaginationParams, type PlanExecuteAgentConfig, type QueryParams, type QueueClient, type QueueConfig, type QueueLatticeProtocol, type QueueResult, QueueType, type ReactAgentConfig, type Result, type ScheduleClient, type ScheduleConfig, type ScheduleLatticeProtocol, ScheduleType, type ScheduledTaskInfo, type SequentialAgentConfig, type SystemMessage, type Thread, type ThreadStore, type Timestamp, type ToolCall, type ToolConfig, type ToolExecutor, type ToolLatticeProtocol, type ToolMessage, type UIComponent, UIComponentType, type UIConfig, type UILatticeProtocol, type UserMessage, type VectorStoreConfig, type VectorStoreLatticeProtocol, getSubAgentsFromConfig, getToolsFromConfig, hasTools, isDeepAgentConfig };
|
package/dist/index.js
CHANGED
|
@@ -23,7 +23,7 @@ __export(index_exports, {
|
|
|
23
23
|
AgentType: () => AgentType,
|
|
24
24
|
MemoryType: () => MemoryType,
|
|
25
25
|
QueueType: () => QueueType,
|
|
26
|
-
|
|
26
|
+
ScheduleType: () => ScheduleType,
|
|
27
27
|
UIComponentType: () => UIComponentType,
|
|
28
28
|
getSubAgentsFromConfig: () => getSubAgentsFromConfig,
|
|
29
29
|
getToolsFromConfig: () => getToolsFromConfig,
|
|
@@ -69,16 +69,6 @@ var MemoryType = /* @__PURE__ */ ((MemoryType2) => {
|
|
|
69
69
|
return MemoryType2;
|
|
70
70
|
})(MemoryType || {});
|
|
71
71
|
|
|
72
|
-
// src/StorageLatticeProtocol.ts
|
|
73
|
-
var StorageType = /* @__PURE__ */ ((StorageType2) => {
|
|
74
|
-
StorageType2["MEMORY"] = "memory";
|
|
75
|
-
StorageType2["LOCAL"] = "local";
|
|
76
|
-
StorageType2["DATABASE"] = "database";
|
|
77
|
-
StorageType2["CLOUD"] = "cloud";
|
|
78
|
-
StorageType2["DISTRIBUTED"] = "distributed";
|
|
79
|
-
return StorageType2;
|
|
80
|
-
})(StorageType || {});
|
|
81
|
-
|
|
82
72
|
// src/UILatticeProtocol.ts
|
|
83
73
|
var UIComponentType = /* @__PURE__ */ ((UIComponentType2) => {
|
|
84
74
|
UIComponentType2["CONTAINER"] = "container";
|
|
@@ -100,12 +90,18 @@ var QueueType = /* @__PURE__ */ ((QueueType2) => {
|
|
|
100
90
|
QueueType2["REDIS"] = "redis";
|
|
101
91
|
return QueueType2;
|
|
102
92
|
})(QueueType || {});
|
|
93
|
+
|
|
94
|
+
// src/ScheduleLatticeProtocol.ts
|
|
95
|
+
var ScheduleType = /* @__PURE__ */ ((ScheduleType2) => {
|
|
96
|
+
ScheduleType2["MEMORY"] = "memory";
|
|
97
|
+
return ScheduleType2;
|
|
98
|
+
})(ScheduleType || {});
|
|
103
99
|
// Annotate the CommonJS export names for ESM import in node:
|
|
104
100
|
0 && (module.exports = {
|
|
105
101
|
AgentType,
|
|
106
102
|
MemoryType,
|
|
107
103
|
QueueType,
|
|
108
|
-
|
|
104
|
+
ScheduleType,
|
|
109
105
|
UIComponentType,
|
|
110
106
|
getSubAgentsFromConfig,
|
|
111
107
|
getToolsFromConfig,
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts","../src/AgentLatticeProtocol.ts","../src/MemoryLatticeProtocol.ts","../src/StorageLatticeProtocol.ts","../src/UILatticeProtocol.ts","../src/QueueLatticeProtocol.ts"],"sourcesContent":["/**\n * Protocols\n *\n * 导出所有Lattice协议接口,为整个系统提供统一的接口规范\n */\n\nexport * from \"./BaseLatticeProtocol\";\nexport * from \"./ToolLatticeProtocol\";\nexport * from \"./ModelLatticeProtocol\";\nexport * from \"./AgentLatticeProtocol\";\nexport * from \"./MemoryLatticeProtocol\";\nexport * from \"./StorageLatticeProtocol\";\nexport * from \"./UILatticeProtocol\";\nexport * from \"./QueueLatticeProtocol\";\nexport * from \"./MessageProtocol\";\n\n// 导出通用类型\nexport * from \"./types\";\n","/**\n * AgentLatticeProtocol\n *\n * 智能体Lattice的协议,定义了智能体的行为和组合方式\n */\n\nimport { CompiledStateGraph } from \"@langchain/langgraph\";\nimport z, { ZodObject, ZodSchema } from \"zod\";\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * 智能体类型枚举\n */\nexport enum AgentType {\n REACT = \"react\",\n DEEP_AGENT = \"deep_agent\",\n PLAN_EXECUTE = \"plan_execute\",\n SEQUENTIAL = \"sequential\",\n}\n\n/**\n * Base agent configuration shared by all agent types\n */\ninterface BaseAgentConfig {\n key: string; // Unique key\n name: string; // Name\n description: string; // Description\n prompt: string; // Prompt\n schema?: ZodObject<any, any, any, any, any>; // Input validation schema\n modelKey?: string; // Model key to use\n}\n\n/**\n * REACT agent configuration\n */\nexport interface ReactAgentConfig extends BaseAgentConfig {\n type: AgentType.REACT;\n tools?: string[]; // Tool list\n}\n\n/**\n * DEEP_AGENT configuration - only this type supports subAgents\n */\nexport interface DeepAgentConfig extends BaseAgentConfig {\n type: AgentType.DEEP_AGENT;\n tools?: string[]; // Tool list\n subAgents?: string[]; // Sub-agent list (unique to DEEP_AGENT)\n internalSubAgents?: AgentConfig[]; // Internal sub-agent list (unique to DEEP_AGENT)\n}\n\n/**\n * PLAN_EXECUTE agent configuration\n */\nexport interface PlanExecuteAgentConfig extends BaseAgentConfig {\n type: AgentType.PLAN_EXECUTE;\n tools?: string[]; // Tool list\n}\n\n/**\n * SEQUENTIAL agent configuration\n */\nexport interface SequentialAgentConfig extends BaseAgentConfig {\n type: AgentType.SEQUENTIAL;\n}\n\n/**\n * Agent configuration union type\n * Different agent types have different configuration options\n */\nexport type AgentConfig =\n | ReactAgentConfig\n | DeepAgentConfig\n | PlanExecuteAgentConfig\n | SequentialAgentConfig;\n\n/**\n * Agent configuration with tools property\n */\nexport type AgentConfigWithTools =\n | ReactAgentConfig\n | DeepAgentConfig\n | PlanExecuteAgentConfig;\n\n/**\n * Type guard to check if config has tools property\n */\nexport function hasTools(config: AgentConfig): config is AgentConfigWithTools {\n return config.type !== AgentType.SEQUENTIAL;\n}\n\n/**\n * Type guard to check if config is DeepAgentConfig (has subAgents)\n */\nexport function isDeepAgentConfig(\n config: AgentConfig\n): config is DeepAgentConfig {\n return config.type === AgentType.DEEP_AGENT;\n}\n\n/**\n * Get tools from config safely\n */\nexport function getToolsFromConfig(config: AgentConfig): string[] {\n if (hasTools(config)) {\n return config.tools || [];\n }\n return [];\n}\n\n/**\n * Get subAgents from config safely (only DeepAgentConfig has subAgents)\n */\nexport function getSubAgentsFromConfig(config: AgentConfig): string[] {\n if (isDeepAgentConfig(config)) {\n return config.subAgents || [];\n }\n return [];\n}\n\n/**\n * 智能体客户端类型\n */\nexport type AgentClient = CompiledStateGraph<any, any, any, any, any>;\n\n/**\n * Graph构建选项\n */\nexport interface GraphBuildOptions {\n overrideTools?: string[];\n overrideModel?: string;\n metadata?: Record<string, any>;\n}\n\n/**\n * 智能体Lattice协议接口\n */\nexport interface AgentLatticeProtocol\n extends BaseLatticeProtocol<AgentConfig, AgentClient> {\n // 智能体执行函数\n invoke: (input: any, options?: any) => Promise<any>;\n\n // 构建智能体图\n buildGraph: (options?: GraphBuildOptions) => Promise<AgentClient>;\n}\n","/**\n * MemoryLatticeProtocol\n *\n * 记忆Lattice的协议,用于管理智能体的上下文和记忆\n */\n\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * 记忆类型枚举\n */\nexport enum MemoryType {\n SHORT_TERM = \"short_term\",\n LONG_TERM = \"long_term\",\n EPISODIC = \"episodic\",\n SEMANTIC = \"semantic\",\n WORKING = \"working\",\n}\n\n/**\n * 记忆配置接口\n */\nexport interface MemoryConfig {\n name: string; // 名称\n description: string; // 描述\n type: MemoryType; // 记忆类型\n ttl?: number; // 生存时间\n capacity?: number; // 容量限制\n}\n\n/**\n * 记忆客户端接口\n */\nexport interface MemoryClient {\n add: (key: string, value: any) => Promise<void>;\n get: (key: string) => Promise<any>;\n update: (key: string, value: any) => Promise<void>;\n delete: (key: string) => Promise<void>;\n search: (query: string, options?: any) => Promise<any[]>;\n clear: () => Promise<void>;\n}\n\n/**\n * 记忆Lattice协议接口\n */\nexport interface MemoryLatticeProtocol\n extends BaseLatticeProtocol<MemoryConfig, MemoryClient> {\n // 记忆操作方法\n add: (key: string, value: any) => Promise<void>;\n get: (key: string) => Promise<any>;\n update: (key: string, value: any) => Promise<void>;\n delete: (key: string) => Promise<void>;\n search: (query: string, options?: any) => Promise<any[]>;\n clear: () => Promise<void>;\n}\n","/**\n * StorageLatticeProtocol\n *\n * 存储Lattice的协议,用于数据持久化和状态管理\n */\n\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * 存储类型枚举\n */\nexport enum StorageType {\n MEMORY = \"memory\",\n LOCAL = \"local\",\n DATABASE = \"database\",\n CLOUD = \"cloud\",\n DISTRIBUTED = \"distributed\",\n}\n\n/**\n * 存储配置接口\n */\nexport interface StorageConfig {\n name: string; // 名称\n description: string; // 描述\n type: StorageType; // 存储类型\n connectionString?: string; // 连接字符串\n options?: Record<string, any>; // 其他选项\n}\n\n/**\n * 存储客户端接口\n */\nexport interface StorageClient {\n set: (key: string, value: any) => Promise<void>;\n get: (key: string) => Promise<any>;\n has: (key: string) => Promise<boolean>;\n delete: (key: string) => Promise<boolean>;\n clear: () => Promise<void>;\n transaction: <T>(operations: () => Promise<T>) => Promise<T>;\n}\n\n/**\n * 存储Lattice协议接口\n */\nexport interface StorageLatticeProtocol\n extends BaseLatticeProtocol<StorageConfig, StorageClient> {\n // 存储操作方法\n set: (key: string, value: any) => Promise<void>;\n get: (key: string) => Promise<any>;\n has: (key: string) => Promise<boolean>;\n delete: (key: string) => Promise<boolean>;\n clear: () => Promise<void>;\n transaction: <T>(operations: () => Promise<T>) => Promise<T>;\n}\n","/**\n * UILatticeProtocol\n *\n * UI Lattice的协议,用于定义用户界面组件\n */\n\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * UI组件类型枚举\n */\nexport enum UIComponentType {\n CONTAINER = \"container\",\n INPUT = \"input\",\n BUTTON = \"button\",\n LIST = \"list\",\n TABLE = \"table\",\n CHART = \"chart\",\n FORM = \"form\",\n CARD = \"card\",\n MODAL = \"modal\",\n CUSTOM = \"custom\",\n}\n\n/**\n * UI配置接口\n */\nexport interface UIConfig {\n name: string; // 组件名称\n description: string; // 组件描述\n type: UIComponentType; // 组件类型\n props?: Record<string, any>; // 组件属性\n children?: string[]; // 子组件列表\n}\n\n/**\n * UI组件接口\n * 使用泛型以适应不同的UI框架(React, Vue等)\n */\nexport interface UIComponent<T = any> {\n render: (props?: any) => T;\n addEventListener: (event: string, handler: Function) => void;\n removeEventListener: (event: string, handler: Function) => void;\n}\n\n/**\n * UI Lattice协议接口\n */\nexport interface UILatticeProtocol<T = any>\n extends BaseLatticeProtocol<UIConfig, UIComponent<T>> {\n // UI渲染方法\n render: (props?: any) => T;\n\n // 事件处理\n addEventListener: (event: string, handler: Function) => void;\n removeEventListener: (event: string, handler: Function) => void;\n}\n","/**\n * QueueLatticeProtocol\n *\n * Queue Lattice protocol for task queue management\n */\n\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * Queue service type enumeration\n */\nexport enum QueueType {\n MEMORY = \"memory\",\n REDIS = \"redis\",\n}\n\n/**\n * Queue configuration interface\n */\nexport interface QueueConfig {\n name: string; // Queue name\n description: string; // Queue description\n type: QueueType; // Queue service type\n queueName?: string; // Specific queue name (e.g., \"tasks\")\n options?: Record<string, any>; // Additional options (e.g., Redis connection options)\n}\n\n/**\n * Queue operation result interface\n */\nexport interface QueueResult<T = any> {\n data: T | null;\n error: any | null;\n}\n\n/**\n * Queue client interface\n */\nexport interface QueueClient {\n push: (item: any) => Promise<QueueResult<number>>;\n pop: () => Promise<QueueResult<any>>;\n createQueue?: () => Promise<{ success: boolean; queue_name?: string; error?: any }>;\n}\n\n/**\n * Queue Lattice protocol interface\n */\nexport interface QueueLatticeProtocol\n extends BaseLatticeProtocol<QueueConfig, QueueClient> {\n // Queue operations\n push: (item: any) => Promise<QueueResult<number>>;\n pop: () => Promise<QueueResult<any>>;\n createQueue?: () => Promise<{ success: boolean; queue_name?: string; error?: any }>;\n}\n\n\n\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACaO,IAAK,YAAL,kBAAKA,eAAL;AACL,EAAAA,WAAA,WAAQ;AACR,EAAAA,WAAA,gBAAa;AACb,EAAAA,WAAA,kBAAe;AACf,EAAAA,WAAA,gBAAa;AAJH,SAAAA;AAAA,GAAA;AAyEL,SAAS,SAAS,QAAqD;AAC5E,SAAO,OAAO,SAAS;AACzB;AAKO,SAAS,kBACd,QAC2B;AAC3B,SAAO,OAAO,SAAS;AACzB;AAKO,SAAS,mBAAmB,QAA+B;AAChE,MAAI,SAAS,MAAM,GAAG;AACpB,WAAO,OAAO,SAAS,CAAC;AAAA,EAC1B;AACA,SAAO,CAAC;AACV;AAKO,SAAS,uBAAuB,QAA+B;AACpE,MAAI,kBAAkB,MAAM,GAAG;AAC7B,WAAO,OAAO,aAAa,CAAC;AAAA,EAC9B;AACA,SAAO,CAAC;AACV;;;AC1GO,IAAK,aAAL,kBAAKC,gBAAL;AACL,EAAAA,YAAA,gBAAa;AACb,EAAAA,YAAA,eAAY;AACZ,EAAAA,YAAA,cAAW;AACX,EAAAA,YAAA,cAAW;AACX,EAAAA,YAAA,aAAU;AALA,SAAAA;AAAA,GAAA;;;ACAL,IAAK,cAAL,kBAAKC,iBAAL;AACL,EAAAA,aAAA,YAAS;AACT,EAAAA,aAAA,WAAQ;AACR,EAAAA,aAAA,cAAW;AACX,EAAAA,aAAA,WAAQ;AACR,EAAAA,aAAA,iBAAc;AALJ,SAAAA;AAAA,GAAA;;;ACAL,IAAK,kBAAL,kBAAKC,qBAAL;AACL,EAAAA,iBAAA,eAAY;AACZ,EAAAA,iBAAA,WAAQ;AACR,EAAAA,iBAAA,YAAS;AACT,EAAAA,iBAAA,UAAO;AACP,EAAAA,iBAAA,WAAQ;AACR,EAAAA,iBAAA,WAAQ;AACR,EAAAA,iBAAA,UAAO;AACP,EAAAA,iBAAA,UAAO;AACP,EAAAA,iBAAA,WAAQ;AACR,EAAAA,iBAAA,YAAS;AAVC,SAAAA;AAAA,GAAA;;;ACAL,IAAK,YAAL,kBAAKC,eAAL;AACL,EAAAA,WAAA,YAAS;AACT,EAAAA,WAAA,WAAQ;AAFE,SAAAA;AAAA,GAAA;","names":["AgentType","MemoryType","StorageType","UIComponentType","QueueType"]}
|
|
1
|
+
{"version":3,"sources":["../src/index.ts","../src/AgentLatticeProtocol.ts","../src/MemoryLatticeProtocol.ts","../src/UILatticeProtocol.ts","../src/QueueLatticeProtocol.ts","../src/ScheduleLatticeProtocol.ts"],"sourcesContent":["/**\n * Protocols\n *\n * 导出所有Lattice协议接口,为整个系统提供统一的接口规范\n */\n\nexport * from \"./BaseLatticeProtocol\";\nexport * from \"./ToolLatticeProtocol\";\nexport * from \"./ModelLatticeProtocol\";\nexport * from \"./AgentLatticeProtocol\";\nexport * from \"./MemoryLatticeProtocol\";\nexport * from \"./UILatticeProtocol\";\nexport * from \"./QueueLatticeProtocol\";\nexport * from \"./ScheduleLatticeProtocol\";\nexport * from \"./EmbeddingsLatticeProtocol\";\nexport * from \"./VectorStoreLatticeProtocol\";\nexport * from \"./MessageProtocol\";\nexport * from \"./ThreadStoreProtocol\";\nexport * from \"./AssistantStoreProtocol\";\n\n// 导出通用类型\nexport * from \"./types\";\n","/**\n * AgentLatticeProtocol\n *\n * 智能体Lattice的协议,定义了智能体的行为和组合方式\n */\n\nimport { CompiledStateGraph } from \"@langchain/langgraph\";\nimport z, { ZodObject, ZodSchema } from \"zod\";\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * 智能体类型枚举\n */\nexport enum AgentType {\n REACT = \"react\",\n DEEP_AGENT = \"deep_agent\",\n PLAN_EXECUTE = \"plan_execute\",\n SEQUENTIAL = \"sequential\",\n}\n\n/**\n * Base agent configuration shared by all agent types\n */\ninterface BaseAgentConfig {\n key: string; // Unique key\n name: string; // Name\n description: string; // Description\n prompt: string; // Prompt\n schema?: ZodObject<any, any, any, any, any>; // Input validation schema\n modelKey?: string; // Model key to use\n}\n\n/**\n * REACT agent configuration\n */\nexport interface ReactAgentConfig extends BaseAgentConfig {\n type: AgentType.REACT;\n tools?: string[]; // Tool list\n}\n\n/**\n * DEEP_AGENT configuration - only this type supports subAgents\n */\nexport interface DeepAgentConfig extends BaseAgentConfig {\n type: AgentType.DEEP_AGENT;\n tools?: string[]; // Tool list\n subAgents?: string[]; // Sub-agent list (unique to DEEP_AGENT)\n internalSubAgents?: AgentConfig[]; // Internal sub-agent list (unique to DEEP_AGENT)\n}\n\n/**\n * PLAN_EXECUTE agent configuration\n */\nexport interface PlanExecuteAgentConfig extends BaseAgentConfig {\n type: AgentType.PLAN_EXECUTE;\n tools?: string[]; // Tool list\n}\n\n/**\n * SEQUENTIAL agent configuration\n */\nexport interface SequentialAgentConfig extends BaseAgentConfig {\n type: AgentType.SEQUENTIAL;\n}\n\n/**\n * Agent configuration union type\n * Different agent types have different configuration options\n */\nexport type AgentConfig =\n | ReactAgentConfig\n | DeepAgentConfig\n | PlanExecuteAgentConfig\n | SequentialAgentConfig;\n\n/**\n * Agent configuration with tools property\n */\nexport type AgentConfigWithTools =\n | ReactAgentConfig\n | DeepAgentConfig\n | PlanExecuteAgentConfig;\n\n/**\n * Type guard to check if config has tools property\n */\nexport function hasTools(config: AgentConfig): config is AgentConfigWithTools {\n return config.type !== AgentType.SEQUENTIAL;\n}\n\n/**\n * Type guard to check if config is DeepAgentConfig (has subAgents)\n */\nexport function isDeepAgentConfig(\n config: AgentConfig\n): config is DeepAgentConfig {\n return config.type === AgentType.DEEP_AGENT;\n}\n\n/**\n * Get tools from config safely\n */\nexport function getToolsFromConfig(config: AgentConfig): string[] {\n if (hasTools(config)) {\n return config.tools || [];\n }\n return [];\n}\n\n/**\n * Get subAgents from config safely (only DeepAgentConfig has subAgents)\n */\nexport function getSubAgentsFromConfig(config: AgentConfig): string[] {\n if (isDeepAgentConfig(config)) {\n return config.subAgents || [];\n }\n return [];\n}\n\n/**\n * 智能体客户端类型\n */\nexport type AgentClient = CompiledStateGraph<any, any, any, any, any>;\n\n/**\n * Graph构建选项\n */\nexport interface GraphBuildOptions {\n overrideTools?: string[];\n overrideModel?: string;\n metadata?: Record<string, any>;\n}\n\n/**\n * 智能体Lattice协议接口\n */\nexport interface AgentLatticeProtocol\n extends BaseLatticeProtocol<AgentConfig, AgentClient> {\n // 智能体执行函数\n invoke: (input: any, options?: any) => Promise<any>;\n\n // 构建智能体图\n buildGraph: (options?: GraphBuildOptions) => Promise<AgentClient>;\n}\n","/**\n * MemoryLatticeProtocol\n *\n * 记忆Lattice的协议,用于管理智能体的上下文和记忆\n */\n\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * 记忆类型枚举\n */\nexport enum MemoryType {\n SHORT_TERM = \"short_term\",\n LONG_TERM = \"long_term\",\n EPISODIC = \"episodic\",\n SEMANTIC = \"semantic\",\n WORKING = \"working\",\n}\n\n/**\n * 记忆配置接口\n */\nexport interface MemoryConfig {\n name: string; // 名称\n description: string; // 描述\n type: MemoryType; // 记忆类型\n ttl?: number; // 生存时间\n capacity?: number; // 容量限制\n}\n\n/**\n * 记忆客户端接口\n */\nexport interface MemoryClient {\n add: (key: string, value: any) => Promise<void>;\n get: (key: string) => Promise<any>;\n update: (key: string, value: any) => Promise<void>;\n delete: (key: string) => Promise<void>;\n search: (query: string, options?: any) => Promise<any[]>;\n clear: () => Promise<void>;\n}\n\n/**\n * 记忆Lattice协议接口\n */\nexport interface MemoryLatticeProtocol\n extends BaseLatticeProtocol<MemoryConfig, MemoryClient> {\n // 记忆操作方法\n add: (key: string, value: any) => Promise<void>;\n get: (key: string) => Promise<any>;\n update: (key: string, value: any) => Promise<void>;\n delete: (key: string) => Promise<void>;\n search: (query: string, options?: any) => Promise<any[]>;\n clear: () => Promise<void>;\n}\n","/**\n * UILatticeProtocol\n *\n * UI Lattice的协议,用于定义用户界面组件\n */\n\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * UI组件类型枚举\n */\nexport enum UIComponentType {\n CONTAINER = \"container\",\n INPUT = \"input\",\n BUTTON = \"button\",\n LIST = \"list\",\n TABLE = \"table\",\n CHART = \"chart\",\n FORM = \"form\",\n CARD = \"card\",\n MODAL = \"modal\",\n CUSTOM = \"custom\",\n}\n\n/**\n * UI配置接口\n */\nexport interface UIConfig {\n name: string; // 组件名称\n description: string; // 组件描述\n type: UIComponentType; // 组件类型\n props?: Record<string, any>; // 组件属性\n children?: string[]; // 子组件列表\n}\n\n/**\n * UI组件接口\n * 使用泛型以适应不同的UI框架(React, Vue等)\n */\nexport interface UIComponent<T = any> {\n render: (props?: any) => T;\n addEventListener: (event: string, handler: Function) => void;\n removeEventListener: (event: string, handler: Function) => void;\n}\n\n/**\n * UI Lattice协议接口\n */\nexport interface UILatticeProtocol<T = any>\n extends BaseLatticeProtocol<UIConfig, UIComponent<T>> {\n // UI渲染方法\n render: (props?: any) => T;\n\n // 事件处理\n addEventListener: (event: string, handler: Function) => void;\n removeEventListener: (event: string, handler: Function) => void;\n}\n","/**\n * QueueLatticeProtocol\n *\n * Queue Lattice protocol for task queue management\n */\n\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * Queue service type enumeration\n */\nexport enum QueueType {\n MEMORY = \"memory\",\n REDIS = \"redis\",\n}\n\n/**\n * Queue configuration interface\n */\nexport interface QueueConfig {\n name: string; // Queue name\n description: string; // Queue description\n type: QueueType; // Queue service type\n queueName?: string; // Specific queue name (e.g., \"tasks\")\n options?: Record<string, any>; // Additional options (e.g., Redis connection options)\n}\n\n/**\n * Queue operation result interface\n */\nexport interface QueueResult<T = any> {\n data: T | null;\n error: any | null;\n}\n\n/**\n * Queue client interface\n */\nexport interface QueueClient {\n push: (item: any) => Promise<QueueResult<number>>;\n pop: () => Promise<QueueResult<any>>;\n createQueue?: () => Promise<{ success: boolean; queue_name?: string; error?: any }>;\n}\n\n/**\n * Queue Lattice protocol interface\n */\nexport interface QueueLatticeProtocol\n extends BaseLatticeProtocol<QueueConfig, QueueClient> {\n // Queue operations\n push: (item: any) => Promise<QueueResult<number>>;\n pop: () => Promise<QueueResult<any>>;\n createQueue?: () => Promise<{ success: boolean; queue_name?: string; error?: any }>;\n}\n\n\n\n","/**\n * ScheduleLatticeProtocol\n *\n * Schedule Lattice protocol for delayed task execution management\n */\n\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * Schedule service type enumeration\n */\nexport enum ScheduleType {\n MEMORY = \"memory\",\n // Future implementations can add more types like REDIS, DATABASE, etc.\n}\n\n/**\n * Schedule configuration interface\n */\nexport interface ScheduleConfig {\n name: string; // Schedule name\n description: string; // Schedule description\n type: ScheduleType; // Schedule service type\n options?: Record<string, any>; // Additional options\n}\n\n/**\n * Scheduled task information interface\n */\nexport interface ScheduledTaskInfo {\n taskId: string;\n scheduledAt: number;\n timeoutMs: number;\n remainingMs: number;\n}\n\n/**\n * Schedule client interface\n */\nexport interface ScheduleClient {\n /**\n * Register a function to be executed after the specified timeout\n * @param taskId - Unique identifier for the task\n * @param callback - Function to execute when timeout expires\n * @param timeoutMs - Delay in milliseconds before execution\n * @returns true if registered successfully\n */\n register: (\n taskId: string,\n callback: () => void | Promise<void>,\n timeoutMs: number\n ) => boolean;\n\n /**\n * Cancel a scheduled task by its ID\n * @param taskId - The task identifier to cancel\n * @returns true if task was found and cancelled, false otherwise\n */\n cancel: (taskId: string) => boolean;\n\n /**\n * Check if a task is currently scheduled\n * @param taskId - The task identifier to check\n */\n has: (taskId: string) => boolean;\n\n /**\n * Get the remaining time in milliseconds for a scheduled task\n * @param taskId - The task identifier\n * @returns Remaining time in ms, or -1 if task not found\n */\n getRemainingTime: (taskId: string) => number;\n\n /**\n * Get the count of currently scheduled tasks\n */\n getTaskCount: () => number;\n\n /**\n * Get all scheduled task IDs\n */\n getTaskIds: () => string[];\n\n /**\n * Cancel all scheduled tasks\n */\n cancelAll: () => void;\n\n /**\n * Get task information\n * @param taskId - The task identifier\n * @returns Task info or null if not found\n */\n getTaskInfo?: (taskId: string) => ScheduledTaskInfo | null;\n}\n\n/**\n * Schedule Lattice protocol interface\n */\nexport interface ScheduleLatticeProtocol\n extends BaseLatticeProtocol<ScheduleConfig, ScheduleClient> {\n // Schedule operations\n register: (\n taskId: string,\n callback: () => void | Promise<void>,\n timeoutMs: number\n ) => boolean;\n cancel: (taskId: string) => boolean;\n has: (taskId: string) => boolean;\n getRemainingTime: (taskId: string) => number;\n getTaskCount: () => number;\n getTaskIds: () => string[];\n cancelAll: () => void;\n getTaskInfo?: (taskId: string) => ScheduledTaskInfo | null;\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACaO,IAAK,YAAL,kBAAKA,eAAL;AACL,EAAAA,WAAA,WAAQ;AACR,EAAAA,WAAA,gBAAa;AACb,EAAAA,WAAA,kBAAe;AACf,EAAAA,WAAA,gBAAa;AAJH,SAAAA;AAAA,GAAA;AAyEL,SAAS,SAAS,QAAqD;AAC5E,SAAO,OAAO,SAAS;AACzB;AAKO,SAAS,kBACd,QAC2B;AAC3B,SAAO,OAAO,SAAS;AACzB;AAKO,SAAS,mBAAmB,QAA+B;AAChE,MAAI,SAAS,MAAM,GAAG;AACpB,WAAO,OAAO,SAAS,CAAC;AAAA,EAC1B;AACA,SAAO,CAAC;AACV;AAKO,SAAS,uBAAuB,QAA+B;AACpE,MAAI,kBAAkB,MAAM,GAAG;AAC7B,WAAO,OAAO,aAAa,CAAC;AAAA,EAC9B;AACA,SAAO,CAAC;AACV;;;AC1GO,IAAK,aAAL,kBAAKC,gBAAL;AACL,EAAAA,YAAA,gBAAa;AACb,EAAAA,YAAA,eAAY;AACZ,EAAAA,YAAA,cAAW;AACX,EAAAA,YAAA,cAAW;AACX,EAAAA,YAAA,aAAU;AALA,SAAAA;AAAA,GAAA;;;ACAL,IAAK,kBAAL,kBAAKC,qBAAL;AACL,EAAAA,iBAAA,eAAY;AACZ,EAAAA,iBAAA,WAAQ;AACR,EAAAA,iBAAA,YAAS;AACT,EAAAA,iBAAA,UAAO;AACP,EAAAA,iBAAA,WAAQ;AACR,EAAAA,iBAAA,WAAQ;AACR,EAAAA,iBAAA,UAAO;AACP,EAAAA,iBAAA,UAAO;AACP,EAAAA,iBAAA,WAAQ;AACR,EAAAA,iBAAA,YAAS;AAVC,SAAAA;AAAA,GAAA;;;ACAL,IAAK,YAAL,kBAAKC,eAAL;AACL,EAAAA,WAAA,YAAS;AACT,EAAAA,WAAA,WAAQ;AAFE,SAAAA;AAAA,GAAA;;;ACAL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,YAAS;AADC,SAAAA;AAAA,GAAA;","names":["AgentType","MemoryType","UIComponentType","QueueType","ScheduleType"]}
|
package/dist/index.mjs
CHANGED
|
@@ -35,16 +35,6 @@ var MemoryType = /* @__PURE__ */ ((MemoryType2) => {
|
|
|
35
35
|
return MemoryType2;
|
|
36
36
|
})(MemoryType || {});
|
|
37
37
|
|
|
38
|
-
// src/StorageLatticeProtocol.ts
|
|
39
|
-
var StorageType = /* @__PURE__ */ ((StorageType2) => {
|
|
40
|
-
StorageType2["MEMORY"] = "memory";
|
|
41
|
-
StorageType2["LOCAL"] = "local";
|
|
42
|
-
StorageType2["DATABASE"] = "database";
|
|
43
|
-
StorageType2["CLOUD"] = "cloud";
|
|
44
|
-
StorageType2["DISTRIBUTED"] = "distributed";
|
|
45
|
-
return StorageType2;
|
|
46
|
-
})(StorageType || {});
|
|
47
|
-
|
|
48
38
|
// src/UILatticeProtocol.ts
|
|
49
39
|
var UIComponentType = /* @__PURE__ */ ((UIComponentType2) => {
|
|
50
40
|
UIComponentType2["CONTAINER"] = "container";
|
|
@@ -66,11 +56,17 @@ var QueueType = /* @__PURE__ */ ((QueueType2) => {
|
|
|
66
56
|
QueueType2["REDIS"] = "redis";
|
|
67
57
|
return QueueType2;
|
|
68
58
|
})(QueueType || {});
|
|
59
|
+
|
|
60
|
+
// src/ScheduleLatticeProtocol.ts
|
|
61
|
+
var ScheduleType = /* @__PURE__ */ ((ScheduleType2) => {
|
|
62
|
+
ScheduleType2["MEMORY"] = "memory";
|
|
63
|
+
return ScheduleType2;
|
|
64
|
+
})(ScheduleType || {});
|
|
69
65
|
export {
|
|
70
66
|
AgentType,
|
|
71
67
|
MemoryType,
|
|
72
68
|
QueueType,
|
|
73
|
-
|
|
69
|
+
ScheduleType,
|
|
74
70
|
UIComponentType,
|
|
75
71
|
getSubAgentsFromConfig,
|
|
76
72
|
getToolsFromConfig,
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/AgentLatticeProtocol.ts","../src/MemoryLatticeProtocol.ts","../src/StorageLatticeProtocol.ts","../src/UILatticeProtocol.ts","../src/QueueLatticeProtocol.ts"],"sourcesContent":["/**\n * AgentLatticeProtocol\n *\n * 智能体Lattice的协议,定义了智能体的行为和组合方式\n */\n\nimport { CompiledStateGraph } from \"@langchain/langgraph\";\nimport z, { ZodObject, ZodSchema } from \"zod\";\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * 智能体类型枚举\n */\nexport enum AgentType {\n REACT = \"react\",\n DEEP_AGENT = \"deep_agent\",\n PLAN_EXECUTE = \"plan_execute\",\n SEQUENTIAL = \"sequential\",\n}\n\n/**\n * Base agent configuration shared by all agent types\n */\ninterface BaseAgentConfig {\n key: string; // Unique key\n name: string; // Name\n description: string; // Description\n prompt: string; // Prompt\n schema?: ZodObject<any, any, any, any, any>; // Input validation schema\n modelKey?: string; // Model key to use\n}\n\n/**\n * REACT agent configuration\n */\nexport interface ReactAgentConfig extends BaseAgentConfig {\n type: AgentType.REACT;\n tools?: string[]; // Tool list\n}\n\n/**\n * DEEP_AGENT configuration - only this type supports subAgents\n */\nexport interface DeepAgentConfig extends BaseAgentConfig {\n type: AgentType.DEEP_AGENT;\n tools?: string[]; // Tool list\n subAgents?: string[]; // Sub-agent list (unique to DEEP_AGENT)\n internalSubAgents?: AgentConfig[]; // Internal sub-agent list (unique to DEEP_AGENT)\n}\n\n/**\n * PLAN_EXECUTE agent configuration\n */\nexport interface PlanExecuteAgentConfig extends BaseAgentConfig {\n type: AgentType.PLAN_EXECUTE;\n tools?: string[]; // Tool list\n}\n\n/**\n * SEQUENTIAL agent configuration\n */\nexport interface SequentialAgentConfig extends BaseAgentConfig {\n type: AgentType.SEQUENTIAL;\n}\n\n/**\n * Agent configuration union type\n * Different agent types have different configuration options\n */\nexport type AgentConfig =\n | ReactAgentConfig\n | DeepAgentConfig\n | PlanExecuteAgentConfig\n | SequentialAgentConfig;\n\n/**\n * Agent configuration with tools property\n */\nexport type AgentConfigWithTools =\n | ReactAgentConfig\n | DeepAgentConfig\n | PlanExecuteAgentConfig;\n\n/**\n * Type guard to check if config has tools property\n */\nexport function hasTools(config: AgentConfig): config is AgentConfigWithTools {\n return config.type !== AgentType.SEQUENTIAL;\n}\n\n/**\n * Type guard to check if config is DeepAgentConfig (has subAgents)\n */\nexport function isDeepAgentConfig(\n config: AgentConfig\n): config is DeepAgentConfig {\n return config.type === AgentType.DEEP_AGENT;\n}\n\n/**\n * Get tools from config safely\n */\nexport function getToolsFromConfig(config: AgentConfig): string[] {\n if (hasTools(config)) {\n return config.tools || [];\n }\n return [];\n}\n\n/**\n * Get subAgents from config safely (only DeepAgentConfig has subAgents)\n */\nexport function getSubAgentsFromConfig(config: AgentConfig): string[] {\n if (isDeepAgentConfig(config)) {\n return config.subAgents || [];\n }\n return [];\n}\n\n/**\n * 智能体客户端类型\n */\nexport type AgentClient = CompiledStateGraph<any, any, any, any, any>;\n\n/**\n * Graph构建选项\n */\nexport interface GraphBuildOptions {\n overrideTools?: string[];\n overrideModel?: string;\n metadata?: Record<string, any>;\n}\n\n/**\n * 智能体Lattice协议接口\n */\nexport interface AgentLatticeProtocol\n extends BaseLatticeProtocol<AgentConfig, AgentClient> {\n // 智能体执行函数\n invoke: (input: any, options?: any) => Promise<any>;\n\n // 构建智能体图\n buildGraph: (options?: GraphBuildOptions) => Promise<AgentClient>;\n}\n","/**\n * MemoryLatticeProtocol\n *\n * 记忆Lattice的协议,用于管理智能体的上下文和记忆\n */\n\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * 记忆类型枚举\n */\nexport enum MemoryType {\n SHORT_TERM = \"short_term\",\n LONG_TERM = \"long_term\",\n EPISODIC = \"episodic\",\n SEMANTIC = \"semantic\",\n WORKING = \"working\",\n}\n\n/**\n * 记忆配置接口\n */\nexport interface MemoryConfig {\n name: string; // 名称\n description: string; // 描述\n type: MemoryType; // 记忆类型\n ttl?: number; // 生存时间\n capacity?: number; // 容量限制\n}\n\n/**\n * 记忆客户端接口\n */\nexport interface MemoryClient {\n add: (key: string, value: any) => Promise<void>;\n get: (key: string) => Promise<any>;\n update: (key: string, value: any) => Promise<void>;\n delete: (key: string) => Promise<void>;\n search: (query: string, options?: any) => Promise<any[]>;\n clear: () => Promise<void>;\n}\n\n/**\n * 记忆Lattice协议接口\n */\nexport interface MemoryLatticeProtocol\n extends BaseLatticeProtocol<MemoryConfig, MemoryClient> {\n // 记忆操作方法\n add: (key: string, value: any) => Promise<void>;\n get: (key: string) => Promise<any>;\n update: (key: string, value: any) => Promise<void>;\n delete: (key: string) => Promise<void>;\n search: (query: string, options?: any) => Promise<any[]>;\n clear: () => Promise<void>;\n}\n","/**\n * StorageLatticeProtocol\n *\n * 存储Lattice的协议,用于数据持久化和状态管理\n */\n\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * 存储类型枚举\n */\nexport enum StorageType {\n MEMORY = \"memory\",\n LOCAL = \"local\",\n DATABASE = \"database\",\n CLOUD = \"cloud\",\n DISTRIBUTED = \"distributed\",\n}\n\n/**\n * 存储配置接口\n */\nexport interface StorageConfig {\n name: string; // 名称\n description: string; // 描述\n type: StorageType; // 存储类型\n connectionString?: string; // 连接字符串\n options?: Record<string, any>; // 其他选项\n}\n\n/**\n * 存储客户端接口\n */\nexport interface StorageClient {\n set: (key: string, value: any) => Promise<void>;\n get: (key: string) => Promise<any>;\n has: (key: string) => Promise<boolean>;\n delete: (key: string) => Promise<boolean>;\n clear: () => Promise<void>;\n transaction: <T>(operations: () => Promise<T>) => Promise<T>;\n}\n\n/**\n * 存储Lattice协议接口\n */\nexport interface StorageLatticeProtocol\n extends BaseLatticeProtocol<StorageConfig, StorageClient> {\n // 存储操作方法\n set: (key: string, value: any) => Promise<void>;\n get: (key: string) => Promise<any>;\n has: (key: string) => Promise<boolean>;\n delete: (key: string) => Promise<boolean>;\n clear: () => Promise<void>;\n transaction: <T>(operations: () => Promise<T>) => Promise<T>;\n}\n","/**\n * UILatticeProtocol\n *\n * UI Lattice的协议,用于定义用户界面组件\n */\n\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * UI组件类型枚举\n */\nexport enum UIComponentType {\n CONTAINER = \"container\",\n INPUT = \"input\",\n BUTTON = \"button\",\n LIST = \"list\",\n TABLE = \"table\",\n CHART = \"chart\",\n FORM = \"form\",\n CARD = \"card\",\n MODAL = \"modal\",\n CUSTOM = \"custom\",\n}\n\n/**\n * UI配置接口\n */\nexport interface UIConfig {\n name: string; // 组件名称\n description: string; // 组件描述\n type: UIComponentType; // 组件类型\n props?: Record<string, any>; // 组件属性\n children?: string[]; // 子组件列表\n}\n\n/**\n * UI组件接口\n * 使用泛型以适应不同的UI框架(React, Vue等)\n */\nexport interface UIComponent<T = any> {\n render: (props?: any) => T;\n addEventListener: (event: string, handler: Function) => void;\n removeEventListener: (event: string, handler: Function) => void;\n}\n\n/**\n * UI Lattice协议接口\n */\nexport interface UILatticeProtocol<T = any>\n extends BaseLatticeProtocol<UIConfig, UIComponent<T>> {\n // UI渲染方法\n render: (props?: any) => T;\n\n // 事件处理\n addEventListener: (event: string, handler: Function) => void;\n removeEventListener: (event: string, handler: Function) => void;\n}\n","/**\n * QueueLatticeProtocol\n *\n * Queue Lattice protocol for task queue management\n */\n\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * Queue service type enumeration\n */\nexport enum QueueType {\n MEMORY = \"memory\",\n REDIS = \"redis\",\n}\n\n/**\n * Queue configuration interface\n */\nexport interface QueueConfig {\n name: string; // Queue name\n description: string; // Queue description\n type: QueueType; // Queue service type\n queueName?: string; // Specific queue name (e.g., \"tasks\")\n options?: Record<string, any>; // Additional options (e.g., Redis connection options)\n}\n\n/**\n * Queue operation result interface\n */\nexport interface QueueResult<T = any> {\n data: T | null;\n error: any | null;\n}\n\n/**\n * Queue client interface\n */\nexport interface QueueClient {\n push: (item: any) => Promise<QueueResult<number>>;\n pop: () => Promise<QueueResult<any>>;\n createQueue?: () => Promise<{ success: boolean; queue_name?: string; error?: any }>;\n}\n\n/**\n * Queue Lattice protocol interface\n */\nexport interface QueueLatticeProtocol\n extends BaseLatticeProtocol<QueueConfig, QueueClient> {\n // Queue operations\n push: (item: any) => Promise<QueueResult<number>>;\n pop: () => Promise<QueueResult<any>>;\n createQueue?: () => Promise<{ success: boolean; queue_name?: string; error?: any }>;\n}\n\n\n\n"],"mappings":";AAaO,IAAK,YAAL,kBAAKA,eAAL;AACL,EAAAA,WAAA,WAAQ;AACR,EAAAA,WAAA,gBAAa;AACb,EAAAA,WAAA,kBAAe;AACf,EAAAA,WAAA,gBAAa;AAJH,SAAAA;AAAA,GAAA;AAyEL,SAAS,SAAS,QAAqD;AAC5E,SAAO,OAAO,SAAS;AACzB;AAKO,SAAS,kBACd,QAC2B;AAC3B,SAAO,OAAO,SAAS;AACzB;AAKO,SAAS,mBAAmB,QAA+B;AAChE,MAAI,SAAS,MAAM,GAAG;AACpB,WAAO,OAAO,SAAS,CAAC;AAAA,EAC1B;AACA,SAAO,CAAC;AACV;AAKO,SAAS,uBAAuB,QAA+B;AACpE,MAAI,kBAAkB,MAAM,GAAG;AAC7B,WAAO,OAAO,aAAa,CAAC;AAAA,EAC9B;AACA,SAAO,CAAC;AACV;;;AC1GO,IAAK,aAAL,kBAAKC,gBAAL;AACL,EAAAA,YAAA,gBAAa;AACb,EAAAA,YAAA,eAAY;AACZ,EAAAA,YAAA,cAAW;AACX,EAAAA,YAAA,cAAW;AACX,EAAAA,YAAA,aAAU;AALA,SAAAA;AAAA,GAAA;;;ACAL,IAAK,cAAL,kBAAKC,iBAAL;AACL,EAAAA,aAAA,YAAS;AACT,EAAAA,aAAA,WAAQ;AACR,EAAAA,aAAA,cAAW;AACX,EAAAA,aAAA,WAAQ;AACR,EAAAA,aAAA,iBAAc;AALJ,SAAAA;AAAA,GAAA;;;ACAL,IAAK,kBAAL,kBAAKC,qBAAL;AACL,EAAAA,iBAAA,eAAY;AACZ,EAAAA,iBAAA,WAAQ;AACR,EAAAA,iBAAA,YAAS;AACT,EAAAA,iBAAA,UAAO;AACP,EAAAA,iBAAA,WAAQ;AACR,EAAAA,iBAAA,WAAQ;AACR,EAAAA,iBAAA,UAAO;AACP,EAAAA,iBAAA,UAAO;AACP,EAAAA,iBAAA,WAAQ;AACR,EAAAA,iBAAA,YAAS;AAVC,SAAAA;AAAA,GAAA;;;ACAL,IAAK,YAAL,kBAAKC,eAAL;AACL,EAAAA,WAAA,YAAS;AACT,EAAAA,WAAA,WAAQ;AAFE,SAAAA;AAAA,GAAA;","names":["AgentType","MemoryType","StorageType","UIComponentType","QueueType"]}
|
|
1
|
+
{"version":3,"sources":["../src/AgentLatticeProtocol.ts","../src/MemoryLatticeProtocol.ts","../src/UILatticeProtocol.ts","../src/QueueLatticeProtocol.ts","../src/ScheduleLatticeProtocol.ts"],"sourcesContent":["/**\n * AgentLatticeProtocol\n *\n * 智能体Lattice的协议,定义了智能体的行为和组合方式\n */\n\nimport { CompiledStateGraph } from \"@langchain/langgraph\";\nimport z, { ZodObject, ZodSchema } from \"zod\";\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * 智能体类型枚举\n */\nexport enum AgentType {\n REACT = \"react\",\n DEEP_AGENT = \"deep_agent\",\n PLAN_EXECUTE = \"plan_execute\",\n SEQUENTIAL = \"sequential\",\n}\n\n/**\n * Base agent configuration shared by all agent types\n */\ninterface BaseAgentConfig {\n key: string; // Unique key\n name: string; // Name\n description: string; // Description\n prompt: string; // Prompt\n schema?: ZodObject<any, any, any, any, any>; // Input validation schema\n modelKey?: string; // Model key to use\n}\n\n/**\n * REACT agent configuration\n */\nexport interface ReactAgentConfig extends BaseAgentConfig {\n type: AgentType.REACT;\n tools?: string[]; // Tool list\n}\n\n/**\n * DEEP_AGENT configuration - only this type supports subAgents\n */\nexport interface DeepAgentConfig extends BaseAgentConfig {\n type: AgentType.DEEP_AGENT;\n tools?: string[]; // Tool list\n subAgents?: string[]; // Sub-agent list (unique to DEEP_AGENT)\n internalSubAgents?: AgentConfig[]; // Internal sub-agent list (unique to DEEP_AGENT)\n}\n\n/**\n * PLAN_EXECUTE agent configuration\n */\nexport interface PlanExecuteAgentConfig extends BaseAgentConfig {\n type: AgentType.PLAN_EXECUTE;\n tools?: string[]; // Tool list\n}\n\n/**\n * SEQUENTIAL agent configuration\n */\nexport interface SequentialAgentConfig extends BaseAgentConfig {\n type: AgentType.SEQUENTIAL;\n}\n\n/**\n * Agent configuration union type\n * Different agent types have different configuration options\n */\nexport type AgentConfig =\n | ReactAgentConfig\n | DeepAgentConfig\n | PlanExecuteAgentConfig\n | SequentialAgentConfig;\n\n/**\n * Agent configuration with tools property\n */\nexport type AgentConfigWithTools =\n | ReactAgentConfig\n | DeepAgentConfig\n | PlanExecuteAgentConfig;\n\n/**\n * Type guard to check if config has tools property\n */\nexport function hasTools(config: AgentConfig): config is AgentConfigWithTools {\n return config.type !== AgentType.SEQUENTIAL;\n}\n\n/**\n * Type guard to check if config is DeepAgentConfig (has subAgents)\n */\nexport function isDeepAgentConfig(\n config: AgentConfig\n): config is DeepAgentConfig {\n return config.type === AgentType.DEEP_AGENT;\n}\n\n/**\n * Get tools from config safely\n */\nexport function getToolsFromConfig(config: AgentConfig): string[] {\n if (hasTools(config)) {\n return config.tools || [];\n }\n return [];\n}\n\n/**\n * Get subAgents from config safely (only DeepAgentConfig has subAgents)\n */\nexport function getSubAgentsFromConfig(config: AgentConfig): string[] {\n if (isDeepAgentConfig(config)) {\n return config.subAgents || [];\n }\n return [];\n}\n\n/**\n * 智能体客户端类型\n */\nexport type AgentClient = CompiledStateGraph<any, any, any, any, any>;\n\n/**\n * Graph构建选项\n */\nexport interface GraphBuildOptions {\n overrideTools?: string[];\n overrideModel?: string;\n metadata?: Record<string, any>;\n}\n\n/**\n * 智能体Lattice协议接口\n */\nexport interface AgentLatticeProtocol\n extends BaseLatticeProtocol<AgentConfig, AgentClient> {\n // 智能体执行函数\n invoke: (input: any, options?: any) => Promise<any>;\n\n // 构建智能体图\n buildGraph: (options?: GraphBuildOptions) => Promise<AgentClient>;\n}\n","/**\n * MemoryLatticeProtocol\n *\n * 记忆Lattice的协议,用于管理智能体的上下文和记忆\n */\n\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * 记忆类型枚举\n */\nexport enum MemoryType {\n SHORT_TERM = \"short_term\",\n LONG_TERM = \"long_term\",\n EPISODIC = \"episodic\",\n SEMANTIC = \"semantic\",\n WORKING = \"working\",\n}\n\n/**\n * 记忆配置接口\n */\nexport interface MemoryConfig {\n name: string; // 名称\n description: string; // 描述\n type: MemoryType; // 记忆类型\n ttl?: number; // 生存时间\n capacity?: number; // 容量限制\n}\n\n/**\n * 记忆客户端接口\n */\nexport interface MemoryClient {\n add: (key: string, value: any) => Promise<void>;\n get: (key: string) => Promise<any>;\n update: (key: string, value: any) => Promise<void>;\n delete: (key: string) => Promise<void>;\n search: (query: string, options?: any) => Promise<any[]>;\n clear: () => Promise<void>;\n}\n\n/**\n * 记忆Lattice协议接口\n */\nexport interface MemoryLatticeProtocol\n extends BaseLatticeProtocol<MemoryConfig, MemoryClient> {\n // 记忆操作方法\n add: (key: string, value: any) => Promise<void>;\n get: (key: string) => Promise<any>;\n update: (key: string, value: any) => Promise<void>;\n delete: (key: string) => Promise<void>;\n search: (query: string, options?: any) => Promise<any[]>;\n clear: () => Promise<void>;\n}\n","/**\n * UILatticeProtocol\n *\n * UI Lattice的协议,用于定义用户界面组件\n */\n\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * UI组件类型枚举\n */\nexport enum UIComponentType {\n CONTAINER = \"container\",\n INPUT = \"input\",\n BUTTON = \"button\",\n LIST = \"list\",\n TABLE = \"table\",\n CHART = \"chart\",\n FORM = \"form\",\n CARD = \"card\",\n MODAL = \"modal\",\n CUSTOM = \"custom\",\n}\n\n/**\n * UI配置接口\n */\nexport interface UIConfig {\n name: string; // 组件名称\n description: string; // 组件描述\n type: UIComponentType; // 组件类型\n props?: Record<string, any>; // 组件属性\n children?: string[]; // 子组件列表\n}\n\n/**\n * UI组件接口\n * 使用泛型以适应不同的UI框架(React, Vue等)\n */\nexport interface UIComponent<T = any> {\n render: (props?: any) => T;\n addEventListener: (event: string, handler: Function) => void;\n removeEventListener: (event: string, handler: Function) => void;\n}\n\n/**\n * UI Lattice协议接口\n */\nexport interface UILatticeProtocol<T = any>\n extends BaseLatticeProtocol<UIConfig, UIComponent<T>> {\n // UI渲染方法\n render: (props?: any) => T;\n\n // 事件处理\n addEventListener: (event: string, handler: Function) => void;\n removeEventListener: (event: string, handler: Function) => void;\n}\n","/**\n * QueueLatticeProtocol\n *\n * Queue Lattice protocol for task queue management\n */\n\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * Queue service type enumeration\n */\nexport enum QueueType {\n MEMORY = \"memory\",\n REDIS = \"redis\",\n}\n\n/**\n * Queue configuration interface\n */\nexport interface QueueConfig {\n name: string; // Queue name\n description: string; // Queue description\n type: QueueType; // Queue service type\n queueName?: string; // Specific queue name (e.g., \"tasks\")\n options?: Record<string, any>; // Additional options (e.g., Redis connection options)\n}\n\n/**\n * Queue operation result interface\n */\nexport interface QueueResult<T = any> {\n data: T | null;\n error: any | null;\n}\n\n/**\n * Queue client interface\n */\nexport interface QueueClient {\n push: (item: any) => Promise<QueueResult<number>>;\n pop: () => Promise<QueueResult<any>>;\n createQueue?: () => Promise<{ success: boolean; queue_name?: string; error?: any }>;\n}\n\n/**\n * Queue Lattice protocol interface\n */\nexport interface QueueLatticeProtocol\n extends BaseLatticeProtocol<QueueConfig, QueueClient> {\n // Queue operations\n push: (item: any) => Promise<QueueResult<number>>;\n pop: () => Promise<QueueResult<any>>;\n createQueue?: () => Promise<{ success: boolean; queue_name?: string; error?: any }>;\n}\n\n\n\n","/**\n * ScheduleLatticeProtocol\n *\n * Schedule Lattice protocol for delayed task execution management\n */\n\nimport { BaseLatticeProtocol } from \"./BaseLatticeProtocol\";\n\n/**\n * Schedule service type enumeration\n */\nexport enum ScheduleType {\n MEMORY = \"memory\",\n // Future implementations can add more types like REDIS, DATABASE, etc.\n}\n\n/**\n * Schedule configuration interface\n */\nexport interface ScheduleConfig {\n name: string; // Schedule name\n description: string; // Schedule description\n type: ScheduleType; // Schedule service type\n options?: Record<string, any>; // Additional options\n}\n\n/**\n * Scheduled task information interface\n */\nexport interface ScheduledTaskInfo {\n taskId: string;\n scheduledAt: number;\n timeoutMs: number;\n remainingMs: number;\n}\n\n/**\n * Schedule client interface\n */\nexport interface ScheduleClient {\n /**\n * Register a function to be executed after the specified timeout\n * @param taskId - Unique identifier for the task\n * @param callback - Function to execute when timeout expires\n * @param timeoutMs - Delay in milliseconds before execution\n * @returns true if registered successfully\n */\n register: (\n taskId: string,\n callback: () => void | Promise<void>,\n timeoutMs: number\n ) => boolean;\n\n /**\n * Cancel a scheduled task by its ID\n * @param taskId - The task identifier to cancel\n * @returns true if task was found and cancelled, false otherwise\n */\n cancel: (taskId: string) => boolean;\n\n /**\n * Check if a task is currently scheduled\n * @param taskId - The task identifier to check\n */\n has: (taskId: string) => boolean;\n\n /**\n * Get the remaining time in milliseconds for a scheduled task\n * @param taskId - The task identifier\n * @returns Remaining time in ms, or -1 if task not found\n */\n getRemainingTime: (taskId: string) => number;\n\n /**\n * Get the count of currently scheduled tasks\n */\n getTaskCount: () => number;\n\n /**\n * Get all scheduled task IDs\n */\n getTaskIds: () => string[];\n\n /**\n * Cancel all scheduled tasks\n */\n cancelAll: () => void;\n\n /**\n * Get task information\n * @param taskId - The task identifier\n * @returns Task info or null if not found\n */\n getTaskInfo?: (taskId: string) => ScheduledTaskInfo | null;\n}\n\n/**\n * Schedule Lattice protocol interface\n */\nexport interface ScheduleLatticeProtocol\n extends BaseLatticeProtocol<ScheduleConfig, ScheduleClient> {\n // Schedule operations\n register: (\n taskId: string,\n callback: () => void | Promise<void>,\n timeoutMs: number\n ) => boolean;\n cancel: (taskId: string) => boolean;\n has: (taskId: string) => boolean;\n getRemainingTime: (taskId: string) => number;\n getTaskCount: () => number;\n getTaskIds: () => string[];\n cancelAll: () => void;\n getTaskInfo?: (taskId: string) => ScheduledTaskInfo | null;\n}\n"],"mappings":";AAaO,IAAK,YAAL,kBAAKA,eAAL;AACL,EAAAA,WAAA,WAAQ;AACR,EAAAA,WAAA,gBAAa;AACb,EAAAA,WAAA,kBAAe;AACf,EAAAA,WAAA,gBAAa;AAJH,SAAAA;AAAA,GAAA;AAyEL,SAAS,SAAS,QAAqD;AAC5E,SAAO,OAAO,SAAS;AACzB;AAKO,SAAS,kBACd,QAC2B;AAC3B,SAAO,OAAO,SAAS;AACzB;AAKO,SAAS,mBAAmB,QAA+B;AAChE,MAAI,SAAS,MAAM,GAAG;AACpB,WAAO,OAAO,SAAS,CAAC;AAAA,EAC1B;AACA,SAAO,CAAC;AACV;AAKO,SAAS,uBAAuB,QAA+B;AACpE,MAAI,kBAAkB,MAAM,GAAG;AAC7B,WAAO,OAAO,aAAa,CAAC;AAAA,EAC9B;AACA,SAAO,CAAC;AACV;;;AC1GO,IAAK,aAAL,kBAAKC,gBAAL;AACL,EAAAA,YAAA,gBAAa;AACb,EAAAA,YAAA,eAAY;AACZ,EAAAA,YAAA,cAAW;AACX,EAAAA,YAAA,cAAW;AACX,EAAAA,YAAA,aAAU;AALA,SAAAA;AAAA,GAAA;;;ACAL,IAAK,kBAAL,kBAAKC,qBAAL;AACL,EAAAA,iBAAA,eAAY;AACZ,EAAAA,iBAAA,WAAQ;AACR,EAAAA,iBAAA,YAAS;AACT,EAAAA,iBAAA,UAAO;AACP,EAAAA,iBAAA,WAAQ;AACR,EAAAA,iBAAA,WAAQ;AACR,EAAAA,iBAAA,UAAO;AACP,EAAAA,iBAAA,UAAO;AACP,EAAAA,iBAAA,WAAQ;AACR,EAAAA,iBAAA,YAAS;AAVC,SAAAA;AAAA,GAAA;;;ACAL,IAAK,YAAL,kBAAKC,eAAL;AACL,EAAAA,WAAA,YAAS;AACT,EAAAA,WAAA,WAAQ;AAFE,SAAAA;AAAA,GAAA;;;ACAL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,YAAS;AADC,SAAAA;AAAA,GAAA;","names":["AgentType","MemoryType","UIComponentType","QueueType","ScheduleType"]}
|