Data Connectors
Providers are essential components within the CYNE AI framework, enabling agents to access real-time blockchain data, contextual information, and other external data sources.
Overview
Core Structure
interface Provider {
get: (
runtime: IAgentRuntime,
message: Memory,
state?: State
) => Promise<string>;
}Built-in Providers in CYNE AI
Comprehensive Provider Example
Troubleshooting
Further Reading
Last updated