derful commited on
Commit
7b408d6
·
1 Parent(s): 350beb0

Update crazy_functions/解析项目源代码.py

Browse files
crazy_functions/解析项目源代码.py CHANGED
@@ -2,7 +2,7 @@ from predict import predict_no_ui
2
  from toolbox import CatchException, report_execption, write_results_to_file, predict_no_ui_but_counting_down
3
  fast_debug = False
4
 
5
- def 解析源代码(file_manifest, project_folder, top_p, temperature, chatbot, history, systemPromptTxt):
6
  import time, glob, os
7
  print('begin analysis on:', file_manifest)
8
  for index, fp in enumerate(file_manifest):
@@ -19,7 +19,7 @@ def 解析源代码(file_manifest, project_folder, top_p, temperature, chatbot,
19
  msg = '正常'
20
 
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
  chatbot[-1] = (i_say_show_user, gpt_say)
25
  history.append(i_say_show_user); history.append(gpt_say)
@@ -34,7 +34,7 @@ def 解析源代码(file_manifest, project_folder, top_p, temperature, chatbot,
34
  if not fast_debug:
35
  msg = '正常'
36
  # ** gpt request **
37
- gpt_say = yield from predict_no_ui_but_counting_down(i_say, i_say, chatbot, top_p, temperature, history=history) # 带超时倒计时
38
 
39
  chatbot[-1] = (i_say, gpt_say)
40
  history.append(i_say); history.append(gpt_say)
@@ -47,7 +47,7 @@ def 解析源代码(file_manifest, project_folder, top_p, temperature, chatbot,
47
 
48
 
49
  @CatchException
50
- def 解析项目本身(txt, top_p, temperature, chatbot, history, systemPromptTxt, WEB_PORT):
51
  history = [] # 清空历史,以免输入溢出
52
  import time, glob, os
53
  file_manifest = [f for f in glob.glob('*.py')]
@@ -65,7 +65,7 @@ def 解析项目本身(txt, top_p, temperature, chatbot, history, systemPromptTx
65
  if not fast_debug:
66
  # ** gpt request **
67
  # gpt_say = predict_no_ui(inputs=i_say, top_p=top_p, temperature=temperature)
68
- gpt_say = yield from predict_no_ui_but_counting_down(i_say, i_say_show_user, chatbot, top_p, temperature, history=[]) # 带超时倒计时
69
 
70
  chatbot[-1] = (i_say_show_user, gpt_say)
71
  history.append(i_say_show_user); history.append(gpt_say)
@@ -79,7 +79,7 @@ def 解析项目本身(txt, top_p, temperature, chatbot, history, systemPromptTx
79
  if not fast_debug:
80
  # ** gpt request **
81
  # gpt_say = predict_no_ui(inputs=i_say, top_p=top_p, temperature=temperature, history=history)
82
- gpt_say = yield from predict_no_ui_but_counting_down(i_say, i_say, chatbot, top_p, temperature, history=history) # 带超时倒计时
83
 
84
  chatbot[-1] = (i_say, gpt_say)
85
  history.append(i_say); history.append(gpt_say)
@@ -104,11 +104,11 @@ def 解析一个Python项目(txt, top_p, temperature, chatbot, history, systemPr
104
  report_execption(chatbot, history, a = f"解析项目: {txt}", b = f"找不到任何python文件: {txt}")
105
  yield chatbot, history, '正常'
106
  return
107
- yield from 解析源代码(file_manifest, project_folder, top_p, temperature, chatbot, history, systemPromptTxt)
108
 
109
 
110
  @CatchException
111
- def 解析一个C项目的头文件(txt, top_p, temperature, chatbot, history, systemPromptTxt, WEB_PORT):
112
  history = [] # 清空历史,以免输入溢出
113
  import glob, os
114
  if os.path.exists(txt):
@@ -125,10 +125,10 @@ def 解析一个C项目的头文件(txt, top_p, temperature, chatbot, history, s
125
  report_execption(chatbot, history, a = f"解析项目: {txt}", b = f"找不到任何.h头文件: {txt}")
126
  yield chatbot, history, '正常'
127
  return
128
- yield from 解析源代码(file_manifest, project_folder, top_p, temperature, chatbot, history, systemPromptTxt)
129
 
130
  @CatchException
131
- def 解析一个C项目(txt, top_p, temperature, chatbot, history, systemPromptTxt, WEB_PORT):
132
  history = [] # 清��历史,以免输入溢出
133
  import glob, os
134
  if os.path.exists(txt):
@@ -145,5 +145,5 @@ def 解析一个C项目(txt, top_p, temperature, chatbot, history, systemPromptT
145
  report_execption(chatbot, history, a = f"解析项目: {txt}", b = f"找不到任何.h头文件: {txt}")
146
  yield chatbot, history, '正常'
147
  return
148
- yield from 解析源代码(file_manifest, project_folder, top_p, temperature, chatbot, history, systemPromptTxt)
149
 
 
2
  from toolbox import CatchException, report_execption, write_results_to_file, predict_no_ui_but_counting_down
3
  fast_debug = False
4
 
5
+ def 解析源代码(api, file_manifest, project_folder, top_p, temperature, chatbot, history, systemPromptTxt):
6
  import time, glob, os
7
  print('begin analysis on:', file_manifest)
8
  for index, fp in enumerate(file_manifest):
 
19
  msg = '正常'
20
 
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
  chatbot[-1] = (i_say_show_user, gpt_say)
25
  history.append(i_say_show_user); history.append(gpt_say)
 
34
  if not fast_debug:
35
  msg = '正常'
36
  # ** gpt request **
37
+ gpt_say = yield from predict_no_ui_but_counting_down(api, i_say, i_say, chatbot, top_p, temperature, history=history) # 带超时倒计时
38
 
39
  chatbot[-1] = (i_say, gpt_say)
40
  history.append(i_say); history.append(gpt_say)
 
47
 
48
 
49
  @CatchException
50
+ def 解析项目本身(api, txt, top_p, temperature, chatbot, history, systemPromptTxt, WEB_PORT):
51
  history = [] # 清空历史,以免输入溢出
52
  import time, glob, os
53
  file_manifest = [f for f in glob.glob('*.py')]
 
65
  if not fast_debug:
66
  # ** gpt request **
67
  # gpt_say = predict_no_ui(inputs=i_say, top_p=top_p, temperature=temperature)
68
+ gpt_say = yield from predict_no_ui_but_counting_down(api, i_say, i_say_show_user, chatbot, top_p, temperature, history=[]) # 带超时倒计时
69
 
70
  chatbot[-1] = (i_say_show_user, gpt_say)
71
  history.append(i_say_show_user); history.append(gpt_say)
 
79
  if not fast_debug:
80
  # ** gpt request **
81
  # gpt_say = predict_no_ui(inputs=i_say, top_p=top_p, temperature=temperature, history=history)
82
+ gpt_say = yield from predict_no_ui_but_counting_down(api, i_say, i_say, chatbot, top_p, temperature, history=history) # 带超时倒计时
83
 
84
  chatbot[-1] = (i_say, gpt_say)
85
  history.append(i_say); history.append(gpt_say)
 
104
  report_execption(chatbot, history, a = f"解析项目: {txt}", b = f"找不到任何python文件: {txt}")
105
  yield chatbot, history, '正常'
106
  return
107
+ yield from 解析源代码(api, file_manifest, project_folder, top_p, temperature, chatbot, history, systemPromptTxt)
108
 
109
 
110
  @CatchException
111
+ def 解析一个C项目的头文件(api, txt, top_p, temperature, chatbot, history, systemPromptTxt, WEB_PORT):
112
  history = [] # 清空历史,以免输入溢出
113
  import glob, os
114
  if os.path.exists(txt):
 
125
  report_execption(chatbot, history, a = f"解析项目: {txt}", b = f"找不到任何.h头文件: {txt}")
126
  yield chatbot, history, '正常'
127
  return
128
+ yield from 解析源代码(api, file_manifest, project_folder, top_p, temperature, chatbot, history, systemPromptTxt)
129
 
130
  @CatchException
131
+ def 解析一个C项目(api, txt, top_p, temperature, chatbot, history, systemPromptTxt, WEB_PORT):
132
  history = [] # 清��历史,以免输入溢出
133
  import glob, os
134
  if os.path.exists(txt):
 
145
  report_execption(chatbot, history, a = f"解析项目: {txt}", b = f"找不到任何.h头文件: {txt}")
146
  yield chatbot, history, '正常'
147
  return
148
+ yield from 解析源代码(api, file_manifest, project_folder, top_p, temperature, chatbot, history, systemPromptTxt)
149