mirror of
https://github.com/msoedov/agentic_security.git
synced 2026-06-24 06:09:55 +02:00
feat(add IntegrationProto):
This commit is contained in:
@@ -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: ...
|
||||
|
||||
Reference in New Issue
Block a user