You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
try:
from openai.types.chat import ChatCompletion
openai_new_api = True # old openai api version
except ImportError:
openai_new_api = False # old openai api version
问题描述
我在尝试对ChatDev进行二次开发,以使用Openai之外的模型进行生成。
在开发过程中我发现有一些代码可能更适合被集中在一个py文件中,通过import的方式导入他们,而非在每一个py文件中进行单独的声明/定义。
(我关注到这些内容是因为,如果我希望添加一个新的LLM,我就必须把每个地方的定义/声明都改了,实在是太过繁琐和细碎了hhhh,所以我更希望在代码中做一下模块化的集成)
例如:
我想知道
camel/utils.py
中,放在这个地方是否合适?如果放在这个地方是合适的,我很乐意提交一个PR来进行一些更改。The text was updated successfully, but these errors were encountered: