Synchronous wrapper for execute().
(self,
executor_type: ExecutorType,
skill_id: str = 'unknown',
**kwargs)
| 1390 | raise ValueError(f'Unsupported executor type: {executor_type}') |
| 1391 | |
| 1392 | def execute_sync(self, |
| 1393 | executor_type: ExecutorType, |
| 1394 | skill_id: str = 'unknown', |
| 1395 | **kwargs) -> ExecutionOutput: |
| 1396 | """Synchronous wrapper for execute().""" |
| 1397 | return asyncio.run(self.execute(executor_type, skill_id, **kwargs)) |
| 1398 | |
| 1399 | def link_skills(self, |
| 1400 | upstream_skill_id: str, |