Files

17 lines
337 B
Python
Raw Permalink Normal View History

"""
Runtime Module
Multi-runtime support for tool execution:
- Python runtime: native Python execution
- JavaScript runtime: Node.js stdio protocol
- Native runtime: binary execution
"""
from tools.runtime.base import BaseRuntime
from tools.runtime.manager import RuntimeManager
__all__ = [
"BaseRuntime",
"RuntimeManager",
]