Spaces:
Running
Running
File size: 600 Bytes
9281fab | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | """
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",
]
|