odin-protocol-core
Version:
The world's first standardized AI-to-AI communication infrastructure for JavaScript/TypeScript - 100% functional with 57K+ msgs/sec throughput
32 lines (31 loc) • 943 B
TypeScript
/**
* ODIN Protocol Core - JavaScript/TypeScript SDK
* World's First Standardized AI-to-AI Communication Infrastructure
*
* @version 1.0.0
* @author Travis Johnson <travjohnson831@gmail.com>
* @license MIT
*/
export { OdinProtocol } from './core/OdinProtocol';
export { HELRuleEngine } from './core/HELRuleEngine';
export * from './types/OdinTypes';
export * from './types/HELTypes';
export * from './types/MessageTypes';
export declare const ODIN_DEFAULT_CONFIG: {
maxConnections: number;
timeout: number;
heartbeatInterval: number;
debug: boolean;
maxRetries: number;
performanceMonitoring: boolean;
};
export declare const HEL_DEFAULT_CONFIG: {
maxParallelRules: number;
defaultTimeout: number;
enableCaching: boolean;
cacheTTL: number;
performanceMonitoring: boolean;
maxHistorySize: number;
};
export declare const VERSION = "1.0.0";
export declare const PROTOCOL_VERSION = "1.0.0";