| """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"] | |