Spaces:
Runtime error
Runtime error
| """CORE.XDA module interface.""" | |
| from __future__ import annotations | |
| from typing import Protocol | |
| class CoreXDAInterface(Protocol): | |
| async def generate(self, prompt: str) -> str: | |
| ... | |
| async def run_task(self, task: str) -> dict: | |
| ... | |