feat(core): More AWEL operators and new prompt manager API (#972)

Co-authored-by: csunny <cfqsunny@163.com>
This commit is contained in:
Fangyin Cheng
2023-12-25 20:03:22 +08:00
committed by GitHub
parent 048fb6c402
commit 69fb97e508
46 changed files with 2556 additions and 294 deletions

View File

@@ -1,4 +1,13 @@
from dbgpt.model.cluster.client import DefaultLLMClient
from dbgpt.model.utils.chatgpt_utils import OpenAILLMClient
from dbgpt.model.utils.chatgpt_utils import (
OpenAILLMClient,
OpenAIStreamingOperator,
MixinLLMOperator,
)
__ALL__ = ["DefaultLLMClient", "OpenAILLMClient"]
__ALL__ = [
"DefaultLLMClient",
"OpenAILLMClient",
"OpenAIStreamingOperator",
"MixinLLMOperator",
]