feat: 支持跟踪函数调用过程并默认启用

This commit is contained in:
RockChinQ
2023-08-05 21:44:11 +08:00
parent 054d0839ac
commit 3586cd941f
3 changed files with 34 additions and 3 deletions

View File

@@ -239,6 +239,11 @@ image_api_params = {
"size": "256x256", # 图片尺寸支持256x256, 512x512, 1024x1024
}
# 跟踪函数调用
# 为True时在每次GPT进行Function Calling时都会输出发送一条回复给用户
# 同时一次提问内所有的Function Calling和普通回复消息都会单独发送给用户
trace_function_calls = True
# 群内回复消息时是否引用原消息
quote_origin = True