feat(add IntegrationProto):

This commit is contained in:
Alexander Myasoedov
2025-02-14 11:20:53 +02:00
parent f0fb95828a
commit 0987f05c4d
+10
View File
@@ -0,0 +1,10 @@
import asyncio
from typing import Protocol
class IntegrationProto(Protocol):
def __init__(
self, prompt_groups: list, tools_inbox: asyncio.Queue, opts: dict = {}
): ...
async def apply(self) -> list: ...