mirror of
https://github.com/getzep/graphiti.git
synced 2025-07-23 09:00:29 +00:00

* ruff action * chore: Update Python version to 3.10 in lint.yml workflow * fix lint and formatting * cleanup
14 lines
266 B
Python
14 lines
266 B
Python
from abc import ABC, abstractmethod
|
|
|
|
from .config import LLMConfig
|
|
|
|
|
|
class LLMClient(ABC):
|
|
@abstractmethod
|
|
def __init__(self, config: LLMConfig):
|
|
pass
|
|
|
|
@abstractmethod
|
|
async def generate_response(self, messages: list[dict[str, str]]) -> dict[str, any]:
|
|
pass
|