File size: 301 Bytes
c8a4550 |
1 2 3 4 5 6 7 8 9 |
"""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"]
|