workflows/libs/ui_utils/__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

17 lines
428 B
Python

from .iobase import parse_response_from_ui, pipe_interaction, pipe_interaction_mock
from .multi_selections import ui_checkbox_select, CheckboxOption
from .single_select import ui_radio_select, RadioOption
from .text_edit import ui_text_edit
__all__ = [
'parse_response_from_ui',
'pipe_interaction',
'pipe_interaction_mock',
'ui_checkbox_select',
'ui_radio_select',
'ui_text_edit',
'CheckboxOption',
'RadioOption'
]