workflows/libs/llm_api/__init__.py
bobo 788a6f08f8 fix: Update chat_completion_stream function names
- Update function names in openai.py
- Modify function import in __init__.py
- Update function call in openai.py
2024-01-03 11:08:38 +08:00

4 lines
161 B
Python

from .openai import chat_completion_stream, chat_completion_no_stream_return_json
__all__ = ["chat_completion_stream", "chat_completion_no_stream_return_json"]