mirror of
https://github.com/getzep/graphiti.git
synced 2025-07-03 07:05:16 +00:00

* chore: Initial draft of stubs * chore: Add comments and mock implementation of the add_episode method * chore: Add success and error callbacks * chore: Add success and error callbacks * refactor: Fix conflicts with the latest merge
13 lines
289 B
Python
13 lines
289 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
|