mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-15 14:11:14 +00:00
chore: Fix package name conflict error (#1099)
This commit is contained in:
13
dbgpt/model/operators/__init__.py
Normal file
13
dbgpt/model/operators/__init__.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from dbgpt.model.operators.llm_operator import ( # noqa: F401
|
||||
LLMOperator,
|
||||
MixinLLMOperator,
|
||||
StreamingLLMOperator,
|
||||
)
|
||||
from dbgpt.model.utils.chatgpt_utils import OpenAIStreamingOutputOperator # noqa: F401
|
||||
|
||||
__ALL__ = [
|
||||
"MixinLLMOperator",
|
||||
"LLMOperator",
|
||||
"StreamingLLMOperator",
|
||||
"OpenAIStreamingOutputOperator",
|
||||
]
|
Reference in New Issue
Block a user