Aniun commited on
Commit
653095e
·
verified ·
1 Parent(s): c4a099d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -10
app.py CHANGED
@@ -13,23 +13,25 @@ root_path = os.path.abspath(current_file_path)
13
  class RepoSearch:
14
  def __init__(self):
15
 
16
- # db_path = os.path.join(root_path, "database", "faiss_index")
17
-
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
 
23
- # assert os.path.exists(db_path), f"Database not found: {db_path}"
24
- # self.vector_db = FAISS.load_local(db_path, embeddings,
25
- # allow_dangerous_deserialization=True)
26
- pass
 
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 = ""