Spaces:
Sleeping
Sleeping
| from __future__ import annotations | |
| from typing import Protocol, runtime_checkable, Any, Dict | |
| class LLMResponder(Protocol): | |
| """Minimal interface for an LLM/chain callable.""" | |
| def invoke(self, inputs: Dict[str, Any]) -> str: ... | |