Update djezzy.py
Browse files
djezzy.py
CHANGED
@@ -29,8 +29,8 @@ def load_data(text_filename='docs_text.json', embeddings_filename='docs_embeddin
|
|
29 |
|
30 |
return docs_text, docs_embeddings
|
31 |
#docs_text, docs_embeddings = load_data()
|
32 |
-
def mot_cle(
|
33 |
-
with open(
|
34 |
contenu = fichier.read()
|
35 |
|
36 |
# Séparer les mots en utilisant la virgule comme séparateur
|
@@ -45,10 +45,8 @@ def mot_cle(path)
|
|
45 |
return tableau_de_mots
|
46 |
|
47 |
|
48 |
-
|
49 |
-
|
50 |
-
return loaded_vector_db
|
51 |
-
def pip(question)
|
52 |
query_text = question
|
53 |
query_embedding = embedding_llm.embed_query(query_text)
|
54 |
query_embedding_array = np.array(query_embedding)
|
|
|
29 |
|
30 |
return docs_text, docs_embeddings
|
31 |
#docs_text, docs_embeddings = load_data()
|
32 |
+
def mot_cle("mots_clés.txt"):
|
33 |
+
with open("mots_clés.txt", 'r') as fichier:
|
34 |
contenu = fichier.read()
|
35 |
|
36 |
# Séparer les mots en utilisant la virgule comme séparateur
|
|
|
45 |
return tableau_de_mots
|
46 |
|
47 |
|
48 |
+
|
49 |
+
def pip(question):
|
|
|
|
|
50 |
query_text = question
|
51 |
query_embedding = embedding_llm.embed_query(query_text)
|
52 |
query_embedding_array = np.array(query_embedding)
|