mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-10 07:46:02 +00:00
feat: 热更新和热重载功能
This commit is contained in:
34
pkg/openai/modelmgr.py
Normal file
34
pkg/openai/modelmgr.py
Normal file
@@ -0,0 +1,34 @@
|
||||
# 提供与模型交互的抽象接口
|
||||
|
||||
COMPLETION_MODELS = {
|
||||
'text-davinci-003'
|
||||
}
|
||||
|
||||
EDIT_MODELS = {
|
||||
|
||||
}
|
||||
|
||||
IMAGE_MODELS = {
|
||||
|
||||
}
|
||||
|
||||
|
||||
# ModelManager
|
||||
# 由session包含
|
||||
class ModelMgr(object):
|
||||
|
||||
using_completion_model = ""
|
||||
using_edit_model = ""
|
||||
using_image_model = ""
|
||||
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def get_using_completion_model(self):
|
||||
return self.using_completion_model
|
||||
|
||||
def get_using_edit_model(self):
|
||||
return self.using_edit_model
|
||||
|
||||
def get_using_image_model(self):
|
||||
return self.using_image_model
|
||||
Reference in New Issue
Block a user