from abc import ABC, abstractmethod class LLMProvider(ABC): @abstractmethod async def complete(self, text: str, session_id: str | None = None) -> str: ...