derful commited on
Commit
350beb0
·
1 Parent(s): 58c1a67

Update crazy_functions/生成函数注释.py

Browse files
crazy_functions/生成函数注释.py CHANGED
@@ -3,7 +3,7 @@ from toolbox import CatchException, report_execption, write_results_to_file, pre
3
  fast_debug = False
4
 
5
 
6
- def 生成函数注释(file_manifest, project_folder, top_p, temperature, chatbot, history, systemPromptTxt):
7
  import time, glob, os
8
  print('begin analysis on:', file_manifest)
9
  for index, fp in enumerate(file_manifest):
@@ -19,7 +19,7 @@ def 生成函数注释(file_manifest, project_folder, top_p, temperature, chatbo
19
  if not fast_debug:
20
  msg = '正常'
21
  # ** gpt request **
22
- gpt_say = yield from predict_no_ui_but_counting_down(i_say, i_say_show_user, chatbot, top_p, temperature, history=[]) # 带超时倒计时
23
 
24
  print('[2] end gpt req')
25
  chatbot[-1] = (i_say_show_user, gpt_say)
@@ -37,7 +37,7 @@ def 生成函数注释(file_manifest, project_folder, top_p, temperature, chatbo
37
 
38
 
39
  @CatchException
40
- def 批量生成函数注释(txt, top_p, temperature, chatbot, history, systemPromptTxt, WEB_PORT):
41
  history = [] # 清空历史,以免输入溢出
42
  import glob, os
43
  if os.path.exists(txt):
@@ -54,4 +54,4 @@ def 批量生成函数注释(txt, top_p, temperature, chatbot, history, systemPr
54
  report_execption(chatbot, history, a = f"解析项目: {txt}", b = f"找不到任何.tex文件: {txt}")
55
  yield chatbot, history, '正常'
56
  return
57
- yield from 生成函数注释(file_manifest, project_folder, top_p, temperature, chatbot, history, systemPromptTxt)
 
3
  fast_debug = False
4
 
5
 
6
+ def 生成函数注释(api, file_manifest, project_folder, top_p, temperature, chatbot, history, systemPromptTxt):
7
  import time, glob, os
8
  print('begin analysis on:', file_manifest)
9
  for index, fp in enumerate(file_manifest):
 
19
  if not fast_debug:
20
  msg = '正常'
21
  # ** gpt request **
22
+ gpt_say = yield from predict_no_ui_but_counting_down(api, i_say, i_say_show_user, chatbot, top_p, temperature, history=[]) # 带超时倒计时
23
 
24
  print('[2] end gpt req')
25
  chatbot[-1] = (i_say_show_user, gpt_say)
 
37
 
38
 
39
  @CatchException
40
+ def 批量生成函数注释(api, txt, top_p, temperature, chatbot, history, systemPromptTxt, WEB_PORT):
41
  history = [] # 清空历史,以免输入溢出
42
  import glob, os
43
  if os.path.exists(txt):
 
54
  report_execption(chatbot, history, a = f"解析项目: {txt}", b = f"找不到任何.tex文件: {txt}")
55
  yield chatbot, history, '正常'
56
  return
57
+ yield from 生成函数注释(api, file_manifest, project_folder, top_p, temperature, chatbot, history, systemPromptTxt)