[实验] 历史上的今天(高级函数demo)

This commit is contained in:
Your Name 2023-03-29 11:34:03 +08:00
parent 71d2f01685
commit e76d8cfbc2
3 changed files with 12 additions and 10 deletions

View File

@ -1,16 +1,19 @@
from predict import predict_no_ui
from toolbox import CatchException, report_execption, write_results_to_file, predict_no_ui_but_counting_down
fast_debug = False
from predict import predict_no_ui_long_connection
from toolbox import CatchException, report_execption, write_results_to_file
import datetime
@CatchException
def 高阶功能模板函数(txt, top_p, temperature, chatbot, history, systemPromptTxt, WEB_PORT):
history = [] # 清空历史,以免输入溢出
for i in range(5):
i_say = f'我给出一个数字,你给出该数字的平方。我给出数字:{i}'
for i in range(3):
currentMonth = (datetime.date.today() + datetime.timedelta(days=i)).month
currentDay = (datetime.date.today() + datetime.timedelta(days=i)).day
i_say = f'今天是{currentMonth}{currentDay}日,历史中的{currentMonth}{currentDay}日发生了哪些大事?'
chatbot.append((i_say, "[Local Message] waiting gpt response."))
yield chatbot, history, '正常' # 由于请求gpt需要一段时间我们先及时地做一次状态显示
gpt_say = predict_no_ui(inputs=i_say, top_p=top_p, temperature=temperature) # 请求gpt需要一段时间
# history = [] 每次询问不携带之前的询问历史
gpt_say = predict_no_ui_long_connection(inputs=i_say, top_p=top_p, temperature=temperature, history=[], sys_prompt="You are a history teacher.") # 请求gpt需要一段时间
chatbot[-1] = (i_say, gpt_say)
history.append(i_say);history.append(gpt_say)

View File

@ -33,12 +33,10 @@ def get_crazy_functionals():
"Color": "stop", # 按钮颜色
"Function": 批量生成函数注释
},
"[实验] 把本项目源代码切换成全英文(多线程)": {
"Color": "stop", # 按钮颜色
"[实验] 把本项目源代码切换成全英文多线程demo": {
"Function": 全项目切换英文
},
"[实验] 实验功能函数模板": {
"Color": "stop", # 按钮颜色
"[实验] 历史上的今天高级函数demo": {
"Function": 高阶功能模板函数
},
}

@ -0,0 +1 @@
Subproject commit 46f6536fae8650b4c9f8564c45f4b9f0a46bb8e4