File size: 258 Bytes
09f1b19
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""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:
        ...