kbdebugger-demo / src /kbdebugger /llm /llm_protocol.py
faris-abuali's picture
Upload 227 files
399944f verified
Raw
History Blame Contribute Delete
256 Bytes
from __future__ import annotations
from typing import Protocol, runtime_checkable, Any, Dict
@runtime_checkable
class LLMResponder(Protocol):
"""Minimal interface for an LLM/chain callable."""
def invoke(self, inputs: Dict[str, Any]) -> str: ...