data-analyzer-agent / src /__init__.py
davidleocadio94
feat: data analyzer agent with gradio interface
c8a4550
raw
history blame contribute delete
301 Bytes
"""Data Analyzer Agent - E2B Code Interpreter with OpenAI function calling."""
__version__ = "0.1.0"
from .tools import execute_code, execute_code_schema, execute_tool, tools
from .agent import coding_agent
__all__ = ["coding_agent", "execute_code", "execute_code_schema", "execute_tool", "tools"]