17 lines
337 B
Python
17 lines
337 B
Python
"""
|
|
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",
|
|
]
|