Spaces:
Configuration error
Configuration error
Update chat.py
Browse files
chat.py
CHANGED
@@ -1,78 +1,79 @@
|
|
1 |
-
from langchain_openai import OpenAIEmbeddings
|
2 |
-
from langchain_community.vectorstores import FAISS
|
3 |
-
|
4 |
-
import os
|
5 |
-
import gradio as gr
|
6 |
-
import json
|
7 |
-
import os
|
8 |
-
|
9 |
-
# get the root path of the project
|
10 |
-
current_file_path = os.path.dirname(os.path.abspath(__file__))
|
11 |
-
root_path = os.path.abspath(current_file_path)
|
12 |
-
|
13 |
-
class RepoSearch:
|
14 |
-
def __init__(self):
|
15 |
-
|
16 |
-
db_path = os.path.join(root_path, "database", "faiss_index")
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
response
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
prompt.
|
72 |
-
prompt.submit(
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
|
|
78 |
main()
|
|
|
1 |
+
from langchain_openai import OpenAIEmbeddings
|
2 |
+
from langchain_community.vectorstores import FAISS
|
3 |
+
|
4 |
+
import os
|
5 |
+
import gradio as gr
|
6 |
+
import json
|
7 |
+
import os
|
8 |
+
|
9 |
+
# get the root path of the project
|
10 |
+
current_file_path = os.path.dirname(os.path.abspath(__file__))
|
11 |
+
root_path = os.path.abspath(current_file_path)
|
12 |
+
|
13 |
+
class RepoSearch:
|
14 |
+
def __init__(self):
|
15 |
+
|
16 |
+
# db_path = os.path.join(root_path, "database", "faiss_index")
|
17 |
+
db_path = root_path
|
18 |
+
embeddings = OpenAIEmbeddings(api_key="sk-Mo5K9m2hKXjV1DeGeBAIzXLZFxxiOTvSwUoemKmfMXdmE9Bs",
|
19 |
+
base_url="https://api.wlai.vip/v1",
|
20 |
+
model="text-embedding-3-small")
|
21 |
+
|
22 |
+
assert os.path.exists(db_path), f"Database not found: {db_path}"
|
23 |
+
self.vector_db = FAISS.load_local(db_path, embeddings,
|
24 |
+
allow_dangerous_deserialization=True)
|
25 |
+
|
26 |
+
def search(self, query, k=10):
|
27 |
+
'''
|
28 |
+
name + description + html_url + topics
|
29 |
+
'''
|
30 |
+
results = self.vector_db.similarity_search(query + " technology", k=k)
|
31 |
+
|
32 |
+
simple_str = ""
|
33 |
+
for i, doc in enumerate(results):
|
34 |
+
content = json.loads(doc.page_content)
|
35 |
+
if content["description"] is None:
|
36 |
+
content["description"] = ""
|
37 |
+
desc = content["description"] if len(content["description"]) < 300 else content["description"][:300] + "..."
|
38 |
+
simple_str += f"\t**{i+1}. {content['name']}** || **Description:** {desc} || **Url:** {content['html_url']} \n"
|
39 |
+
|
40 |
+
return simple_str
|
41 |
+
|
42 |
+
|
43 |
+
def main():
|
44 |
+
search = RepoSearch()
|
45 |
+
|
46 |
+
def respond(
|
47 |
+
prompt: str,
|
48 |
+
history,
|
49 |
+
):
|
50 |
+
if not history:
|
51 |
+
history = [{"role": "system", "content": "You are a friendly chatbot"}]
|
52 |
+
history.append({"role": "user", "content": prompt})
|
53 |
+
|
54 |
+
yield history
|
55 |
+
|
56 |
+
response = {"role": "assistant", "content": ""}
|
57 |
+
response["content"] = search.search(prompt)
|
58 |
+
yield history + [response]
|
59 |
+
|
60 |
+
with gr.Blocks() as demo:
|
61 |
+
gr.Markdown("## Semantic github search (基于语义的 github 仓库搜索) 🌐")
|
62 |
+
chatbot = gr.Chatbot(
|
63 |
+
label="Agent",
|
64 |
+
type="messages",
|
65 |
+
avatar_images=(
|
66 |
+
None,
|
67 |
+
"https://img1.baidu.com/it/u=2193901176,1740242983&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500",
|
68 |
+
),
|
69 |
+
height="65vh"
|
70 |
+
)
|
71 |
+
prompt = gr.Textbox(max_lines=2, label="Chat Message")
|
72 |
+
prompt.submit(respond, [prompt, chatbot], [chatbot])
|
73 |
+
prompt.submit(lambda: "", None, [prompt])
|
74 |
+
|
75 |
+
demo.launch(share=True)
|
76 |
+
|
77 |
+
|
78 |
+
if __name__ == "__main__":
|
79 |
main()
|