mirror of
https://github.com/msoedov/agentic_security.git
synced 2026-06-25 06:39:57 +02:00
13 lines
243 B
Python
13 lines
243 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:
|
|
...
|