my_voice_assistant_v2/app/providers/llm/base.py

10 lines
238 B
Python
Raw Normal View History

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