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