
- 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
7 lines
174 B
Python
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'
|
|
]
|