workflows/libs/llm_api/__init__.py
bobo 3e93883c4f feat: Enhance LLM API with new decorators and confirmations
- Added new decorators for LLM functions, parameters, and confirmations.
- Introduced confirmation dialogs for calls and edits within LLM interactions.
- Streamlined integration of LLM tool schemas and response handling.
2024-01-31 16:14:15 +08:00

4 lines
295 B
Python

from .openai import chat_completion_no_stream_return_json, chat_completion_stream, llm, llm_call_confirm, llm_edit_confirm, llm_func, llm_param
__all__ = ["chat_completion_stream", "chat_completion_no_stream_return_json", "llm", "llm_call_confirm", "llm_edit_confirm", "llm_func", "llm_param"]