Spaces:
Configuration error
Configuration error
Update app.py
Browse files
app.py
CHANGED
@@ -13,23 +13,25 @@ root_path = os.path.abspath(current_file_path)
|
|
13 |
class RepoSearch:
|
14 |
def __init__(self):
|
15 |
|
16 |
-
|
17 |
-
|
18 |
# db_path = root_path
|
19 |
-
|
20 |
-
|
21 |
-
|
|
|
22 |
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
|
|
27 |
|
28 |
def search(self, query, k=10):
|
29 |
'''
|
30 |
name + description + html_url + topics
|
31 |
'''
|
32 |
-
return "sss"
|
33 |
results = self.vector_db.similarity_search(query + " technology", k=k)
|
34 |
|
35 |
simple_str = ""
|
|
|
13 |
class RepoSearch:
|
14 |
def __init__(self):
|
15 |
|
16 |
+
db_path = os.path.join(root_path, "database", "faiss_index")
|
17 |
+
print(db_path)
|
18 |
# db_path = root_path
|
19 |
+
embeddings = OpenAIEmbeddings(api_key="sk-Mo5K9m2hKXjV1DeGeBAIzXLZFxxiOTvSwUoemKmfMXdmE9Bs",
|
20 |
+
base_url="https://api.wlai.vip/v1",
|
21 |
+
model="text-embedding-3-small")
|
22 |
+
print("embeddings already")
|
23 |
|
24 |
+
assert os.path.exists(db_path), f"Database not found: {db_path}"
|
25 |
+
self.vector_db = FAISS.load_local(db_path, embeddings,
|
26 |
+
allow_dangerous_deserialization=True)
|
27 |
+
print("vector_db already")
|
28 |
+
# pass
|
29 |
|
30 |
def search(self, query, k=10):
|
31 |
'''
|
32 |
name + description + html_url + topics
|
33 |
'''
|
34 |
+
# return "sss"
|
35 |
results = self.vector_db.similarity_search(query + " technology", k=k)
|
36 |
|
37 |
simple_str = ""
|