Spaces:
Sleeping
Sleeping
| """ | |
| CoDA - Collaborative Data Visualization Agents | |
| A multi-agent system for automated data visualization from natural language queries. | |
| """ | |
| from coda.config import Config, get_config | |
| from coda.orchestrator import CodaOrchestrator, PipelineResult | |
| from coda.core import ( | |
| LLMProvider, | |
| GroqLLM, | |
| SharedMemory, | |
| BaseAgent, | |
| AgentContext, | |
| AgentFactory, | |
| ) | |
| __version__ = "1.0.0" | |
| __all__ = [ | |
| "Config", | |
| "get_config", | |
| "CodaOrchestrator", | |
| "PipelineResult", | |
| "LLMProvider", | |
| "GroqLLM", | |
| "SharedMemory", | |
| "BaseAgent", | |
| "AgentContext", | |
| "AgentFactory", | |
| ] | |