Aniun commited on
Commit
6dc1074
·
verified ·
1 Parent(s): d33e8f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -293,7 +293,7 @@ def main():
293
 
294
  response["content"] = "开始通过 LLM 评分得到最匹配的仓库..."
295
  yield history + [response]
296
- simple_str, simple_list = search.search(json_obj, 40)
297
  query = '用户需要的仓库内容:' + prompt + '\n 搜索结果列表:' + simple_str
298
  out = llm.ask_question(query, system_prompt=llm.get_system_prompt("github_score")).content
299
 
 
293
 
294
  response["content"] = "开始通过 LLM 评分得到最匹配的仓库..."
295
  yield history + [response]
296
+ simple_str, simple_list = search.search(json_obj, 60)
297
  query = '用户需要的仓库内容:' + prompt + '\n 搜索结果列表:' + simple_str
298
  out = llm.ask_question(query, system_prompt=llm.get_system_prompt("github_score")).content
299