forked from llmware-ai/llmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docs2vecs_with_milvus-un_resolutions.py
83 lines (54 loc) · 3.34 KB
/
docs2vecs_with_milvus-un_resolutions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
"""
# *** FAST START to create vector embeddings from documents ***
#
# docs2vecs_with_milvus-un_resolutions - parses, text chunks and embeds 500 United Nations (UN) Resolutions
# the sample documents (500 PDFs - 2-15 pages each) can be pulled down from a public S3 repo with the command:
# sample_files_path = Setup().load_sample_files()
# note: the example assumes that you have installed Milvus and MongoDB per the separate instructions in the README
"""
import os
from llmware.library import Library
from llmware.retrieval import Query
from llmware.setup import Setup
from llmware.status import Status
def parse_and_generate_vector_embeddings(library_name):
# Step 0 - Configuration - we will use these in Step 4 to install the embeddings
embedding_model = "mini-lm-sbert"
vector_db = "milvus"
# Step 1 - Create library which is the main 'organizing construct' in llmware
print ("\nupdate: Step 1 - Creating library: {}".format(library_name))
library = Library().create_new_library(library_name)
# Step 2 - Pull down the sample files from S3 through the .load_sample_files() command
# --note: if you need to refresh the sample files, set 'over_write=True'
print ("update: Step 2 - Downloading Sample Files")
sample_files_path = Setup().load_sample_files(over_write=False)
# Step 3 - point ".add_files" method to the folder of documents that was just created
# this method parses all of the documents, text chunks, and captures in MongoDB
print("update: Step 3 - Parsing and Text Indexing Files")
library.add_files(input_folder_path=os.path.join(sample_files_path, "UN-Resolutions-500"))
# Step 4 - Install the embeddings
print("\nupdate: Step 4 - Generating Embeddings in {} db - with Model- {}".format(vector_db, embedding_model))
library.install_new_embedding(embedding_model_name=embedding_model, vector_db=vector_db)
# note: for using llmware as part of a larger application, you can check the real-time status by polling Status()
# --both the EmbeddingHandler and Parsers write to Status() at intervals while processing
update = Status().get_embedding_status(library_name, embedding_model)
print("update: Embeddings Complete - Status() check at end of embedding - ", update)
# Step 5 - start using the new vector embeddings with Query
sample_query = "sustainability issues impacting women"
print("\n\nupdate: Step 5 - Query: {}".format(sample_query))
query_results = Query(library).semantic_query(sample_query, result_count=20)
for i, entries in enumerate(query_results):
# each query result is a dictionary with many useful keys
text = entries["text"]
document_source = entries["file_source"]
page_num = entries["page_num"]
vector_distance = entries["distance"]
# for display purposes only, we will only show the first 100 characters of the text
if len(text) > 125: text = text[0:125] + " ... "
print("\nupdate: query results - {} - document - {} - page num - {} - distance - {} "
.format( i, document_source, page_num, vector_distance))
print("update: text sample - ", text)
if __name__ == "__main__":
# pick any name for the library
user_selected_name = "un_resolutions500"
parse_and_generate_vector_embeddings(user_selected_name)