10 lines
183 B
Python
10 lines
183 B
Python
from .base import BaseLLMClient
|
|
|
|
|
|
class OpenAIClient(BaseLLMClient):
|
|
def chat(self, messages, **kwargs):
|
|
pass
|
|
|
|
def stream_chat(self, messages, **kwargs):
|
|
pass
|