Execute 执行代码
(ctx context.Context, code string, input map[string]any)
| 26 | type CodeRuntime interface { |
| 27 | // Execute 执行代码 |
| 28 | Execute(ctx context.Context, code string, input map[string]any) (*ExecutionResult, error) |
| 29 | // Language 返回支持的语言 |
| 30 | Language() Language |
| 31 | // IsAvailable 检查运行时是否可用 |
no outgoing calls