workflows/libs/llm_api/__init__.py
bobo.yang f3d867623c feat: Integrate LLM API and UI utility functions
- Added new LLM API functions for non-streaming chat completions
- Introduced UI utility functions for input/output interaction
- Implemented multi-select and single-select UI components
2023-12-08 10:37:32 +08:00

7 lines
174 B
Python

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