agentis
Version:
A TypeScript framework for building sophisticated multi-agent systems
18 lines (17 loc) • 426 B
TypeScript
export interface AgentMessage {
id: string;
sender_id: string;
recipient_id: string;
content: string;
timestamp: number;
metadata?: {
intent?: 'query' | 'response' | 'clarification' | 'update';
confidence?: number;
sources?: string[];
toolsUsed?: string[];
context?: string;
domain?: string;
};
threadId?: string;
parentMessageId?: string;
}