workflows/libs/llm_api/__init__.py

7 lines
174 B
Python
Raw Normal View History

from .openai import chat_completion_no_stream, chat_completion_no_stream_return_json
__all__ = [
'chat_completion_no_stream',
'chat_completion_no_stream_return_json'
]