mirror of
https://github.com/msoedov/agentic_security.git
synced 2026-06-24 14:19:55 +02:00
11 lines
227 B
Python
11 lines
227 B
Python
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: ...
|