PythonRuntime Python 运行时
| 63 | |
| 64 | // PythonRuntime Python 运行时 |
| 65 | type PythonRuntime struct { |
| 66 | config *RuntimeConfig |
| 67 | pythonPath string |
| 68 | availableTools []string // PTC: 可用工具列表 |
| 69 | bridgeURL string // PTC: HTTP 桥接服务器地址 |
| 70 | } |
| 71 | |
| 72 | // NewPythonRuntime 创建 Python 运行时 |
| 73 | func NewPythonRuntime(config *RuntimeConfig) *PythonRuntime { |
nothing calls this directly
no outgoing calls
no test coverage detected