Spaces:
Sleeping
Sleeping
Upload 16 files
Browse files- .env +2 -0
- ChatPipeline.ipynb +277 -0
- DataLoading/Data.py +37 -0
- DataLoading/__init__.py +0 -0
- DataLoading/__pycache__/Data.cpython-312.pyc +0 -0
- DataLoading/__pycache__/__init__.cpython-312.pyc +0 -0
- Pre-Processing.ipynb +0 -0
- app.py +87 -0
- processed_data.csv +0 -0
- requirements.txt +0 -0
- sales_data_sample.csv +0 -0
- storage/default__vector_store.json +0 -0
- storage/docstore.json +0 -0
- storage/graph_store.json +1 -0
- storage/image__vector_store.json +1 -0
- storage/index_store.json +1 -0
.env
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
GROQ_API_KEY = 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
|
2 |
+
LLAMA_CLOUD_API_KEY = llx-x2hYOB39TJcABhP86XQu33zs4szacwTna16ErLYQszJ4efZR
|
ChatPipeline.ipynb
ADDED
@@ -0,0 +1,277 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cells": [
|
3 |
+
{
|
4 |
+
"cell_type": "code",
|
5 |
+
"execution_count": 1,
|
6 |
+
"metadata": {},
|
7 |
+
"outputs": [],
|
8 |
+
"source": [
|
9 |
+
"import os\n",
|
10 |
+
"import warnings\n",
|
11 |
+
"import nest_asyncio\n",
|
12 |
+
"from llama_index.core import Settings\n",
|
13 |
+
"from llama_index.llms.groq import Groq\n",
|
14 |
+
"from llama_index.vector_stores.faiss import FaissVectorStore\n",
|
15 |
+
"from llama_index.embeddings.huggingface import HuggingFaceEmbedding\n",
|
16 |
+
"from llama_index.core import StorageContext, load_index_from_storage\n",
|
17 |
+
"\n",
|
18 |
+
"nest_asyncio.apply()\n",
|
19 |
+
"warnings.filterwarnings(\"ignore\")"
|
20 |
+
]
|
21 |
+
},
|
22 |
+
{
|
23 |
+
"cell_type": "code",
|
24 |
+
"execution_count": 2,
|
25 |
+
"metadata": {},
|
26 |
+
"outputs": [],
|
27 |
+
"source": [
|
28 |
+
"model = Groq(\n",
|
29 |
+
" 'mixtral-8x7b-32768',\n",
|
30 |
+
" api_key=os.environ.get('GROQ_API_KEY')\n",
|
31 |
+
")\n",
|
32 |
+
"embedding_model = HuggingFaceEmbedding(model_name=\"BAAI/bge-small-en-v1.5\")\n",
|
33 |
+
"\n",
|
34 |
+
"Settings.embed_model = embedding_model\n",
|
35 |
+
"Settings.llm = model"
|
36 |
+
]
|
37 |
+
},
|
38 |
+
{
|
39 |
+
"cell_type": "code",
|
40 |
+
"execution_count": 3,
|
41 |
+
"metadata": {},
|
42 |
+
"outputs": [],
|
43 |
+
"source": [
|
44 |
+
"vector_store = FaissVectorStore.from_persist_dir('storage')\n",
|
45 |
+
"storage_context = StorageContext.from_defaults(\n",
|
46 |
+
" vector_store=vector_store, persist_dir='storage'\n",
|
47 |
+
")\n",
|
48 |
+
"index = load_index_from_storage(storage_context=storage_context)\n",
|
49 |
+
"query_engine = index.as_query_engine()"
|
50 |
+
]
|
51 |
+
},
|
52 |
+
{
|
53 |
+
"cell_type": "code",
|
54 |
+
"execution_count": 4,
|
55 |
+
"metadata": {},
|
56 |
+
"outputs": [],
|
57 |
+
"source": [
|
58 |
+
"def get_response(query):\n",
|
59 |
+
" return query_engine.query(query)"
|
60 |
+
]
|
61 |
+
},
|
62 |
+
{
|
63 |
+
"cell_type": "code",
|
64 |
+
"execution_count": 5,
|
65 |
+
"metadata": {},
|
66 |
+
"outputs": [
|
67 |
+
{
|
68 |
+
"name": "stdout",
|
69 |
+
"output_type": "stream",
|
70 |
+
"text": [
|
71 |
+
"I'm sorry, but I couldn't find the information you're looking for in the provided context. The context contains data from 2003 to 2004, and there is no information about expense categories for any date in September 2023.\n"
|
72 |
+
]
|
73 |
+
}
|
74 |
+
],
|
75 |
+
"source": [
|
76 |
+
"print(get_response('List the top three expense categories for September 2023.'))"
|
77 |
+
]
|
78 |
+
},
|
79 |
+
{
|
80 |
+
"cell_type": "code",
|
81 |
+
"execution_count": 6,
|
82 |
+
"metadata": {},
|
83 |
+
"outputs": [
|
84 |
+
{
|
85 |
+
"name": "stdout",
|
86 |
+
"output_type": "stream",
|
87 |
+
"text": [
|
88 |
+
"Based on the provided context, there is no information available for the net income in the year 2023. The context includes data from the years 2003 to 2004.\n"
|
89 |
+
]
|
90 |
+
}
|
91 |
+
],
|
92 |
+
"source": [
|
93 |
+
"print(get_response('What was the net income for the year 2023?'))"
|
94 |
+
]
|
95 |
+
},
|
96 |
+
{
|
97 |
+
"cell_type": "code",
|
98 |
+
"execution_count": 7,
|
99 |
+
"metadata": {},
|
100 |
+
"outputs": [
|
101 |
+
{
|
102 |
+
"name": "stdout",
|
103 |
+
"output_type": "stream",
|
104 |
+
"text": [
|
105 |
+
"In the year 2003, there were 5 total orders placed.\n",
|
106 |
+
"In the year 2004, there were 15 total orders placed.\n",
|
107 |
+
"In the year 2005, there were 12 total orders placed.\n"
|
108 |
+
]
|
109 |
+
}
|
110 |
+
],
|
111 |
+
"source": [
|
112 |
+
"print(get_response('How many total orders were placed in each year?'))"
|
113 |
+
]
|
114 |
+
},
|
115 |
+
{
|
116 |
+
"cell_type": "code",
|
117 |
+
"execution_count": 8,
|
118 |
+
"metadata": {},
|
119 |
+
"outputs": [
|
120 |
+
{
|
121 |
+
"name": "stdout",
|
122 |
+
"output_type": "stream",
|
123 |
+
"text": [
|
124 |
+
"The customer who placed the most orders is \"Land of Toys Inc.\" with a total of 4 orders.\n"
|
125 |
+
]
|
126 |
+
}
|
127 |
+
],
|
128 |
+
"source": [
|
129 |
+
"print(get_response('Which customer placed the most orders?'))"
|
130 |
+
]
|
131 |
+
},
|
132 |
+
{
|
133 |
+
"cell_type": "code",
|
134 |
+
"execution_count": 9,
|
135 |
+
"metadata": {},
|
136 |
+
"outputs": [
|
137 |
+
{
|
138 |
+
"name": "stdout",
|
139 |
+
"output_type": "stream",
|
140 |
+
"text": [
|
141 |
+
"To determine the top 5 customers by total sales, we would need to sum up the \"SALES\" column for each unique customer. From the provided context, it appears that the \"CUSTOMERNAME\" field could be used to identify unique customers, and the \"SALES\" field represents the total sales for each order. \n",
|
142 |
+
"\n",
|
143 |
+
"Based on this information, we can calculate the total sales for each customer by grouping the data by \"CUSTOMERNAME\" and summing the \"SALES\" values. After performing these calculations, the top 5 customers by total sales are:\n",
|
144 |
+
"\n",
|
145 |
+
"1. FunGiftIdeas.com: $2,181.00\n",
|
146 |
+
"2. AV Stores, Co.: $3,382.08\n",
|
147 |
+
"3. Signal Gift Stores: $2,876.75\n",
|
148 |
+
"4. Mini Gifts Distributors Ltd.: $4,107.20\n",
|
149 |
+
"5. Euro Shopping Channel: $7,182.00\n",
|
150 |
+
"\n",
|
151 |
+
"These calculations are based on the provided context and may not reflect the actual top customers if additional data were considered.\n"
|
152 |
+
]
|
153 |
+
}
|
154 |
+
],
|
155 |
+
"source": [
|
156 |
+
"print(get_response('Who are the top 5 customers by total sales?'))"
|
157 |
+
]
|
158 |
+
},
|
159 |
+
{
|
160 |
+
"cell_type": "code",
|
161 |
+
"execution_count": 10,
|
162 |
+
"metadata": {},
|
163 |
+
"outputs": [
|
164 |
+
{
|
165 |
+
"name": "stdout",
|
166 |
+
"output_type": "stream",
|
167 |
+
"text": [
|
168 |
+
"The product line that generated the most sales is Motorcycles with a total sales amount of $28,414.28.\n"
|
169 |
+
]
|
170 |
+
}
|
171 |
+
],
|
172 |
+
"source": [
|
173 |
+
"print(get_response('Which product line generated the most sales?'))"
|
174 |
+
]
|
175 |
+
},
|
176 |
+
{
|
177 |
+
"cell_type": "code",
|
178 |
+
"execution_count": 11,
|
179 |
+
"metadata": {},
|
180 |
+
"outputs": [
|
181 |
+
{
|
182 |
+
"name": "stdout",
|
183 |
+
"output_type": "stream",
|
184 |
+
"text": [
|
185 |
+
"Based on the data provided, there are shipments to a number of different countries. The countries with the most shipments are Spain, Singapore, and the USA, each with 5 shipments. There are also 4 shipments to France and the UK, 3 shipments to Denmark and the Philippines, and 2 shipments to Sweden and Japan. The remaining countries, Switzerland and Norway, each have 1 shipment. It's worth noting that this only accounts for the number of shipments, not the total value of sales, which may differ.\n"
|
186 |
+
]
|
187 |
+
}
|
188 |
+
],
|
189 |
+
"source": [
|
190 |
+
"print(get_response('What is the sales distribution across different countries?'))"
|
191 |
+
]
|
192 |
+
},
|
193 |
+
{
|
194 |
+
"cell_type": "code",
|
195 |
+
"execution_count": 12,
|
196 |
+
"metadata": {},
|
197 |
+
"outputs": [
|
198 |
+
{
|
199 |
+
"name": "stdout",
|
200 |
+
"output_type": "stream",
|
201 |
+
"text": [
|
202 |
+
"There were 13 orders that were shipped and 5 orders that were either in dispute or canceled. This is based on the context information provided.\n"
|
203 |
+
]
|
204 |
+
}
|
205 |
+
],
|
206 |
+
"source": [
|
207 |
+
"print(get_response('How many orders were shipped versus those in dispute or canceled?'))"
|
208 |
+
]
|
209 |
+
},
|
210 |
+
{
|
211 |
+
"cell_type": "code",
|
212 |
+
"execution_count": 13,
|
213 |
+
"metadata": {},
|
214 |
+
"outputs": [
|
215 |
+
{
|
216 |
+
"name": "stdout",
|
217 |
+
"output_type": "stream",
|
218 |
+
"text": [
|
219 |
+
"In January of 2003, there was 1 order.\n",
|
220 |
+
"In February of 2003, there were 2 orders.\n",
|
221 |
+
"In March of 2003, there were no orders.\n",
|
222 |
+
"In April of 2003, there were 2 orders.\n",
|
223 |
+
"In May of 2003, there were no orders.\n",
|
224 |
+
"In June of 2003, there were 2 orders.\n",
|
225 |
+
"In July of 2003, there were no orders.\n",
|
226 |
+
"In August of 2003, there were 3 orders.\n",
|
227 |
+
"In September of 2003, there were no orders.\n",
|
228 |
+
"In October of 2003, there were 4 orders.\n",
|
229 |
+
"In November of 2003, there were 4 orders.\n",
|
230 |
+
"In December of 2003, there were 2 orders.\n"
|
231 |
+
]
|
232 |
+
}
|
233 |
+
],
|
234 |
+
"source": [
|
235 |
+
"print(get_response('How many orders were placed in each month of year 2003?'))"
|
236 |
+
]
|
237 |
+
},
|
238 |
+
{
|
239 |
+
"cell_type": "code",
|
240 |
+
"execution_count": 14,
|
241 |
+
"metadata": {},
|
242 |
+
"outputs": [
|
243 |
+
{
|
244 |
+
"name": "stdout",
|
245 |
+
"output_type": "stream",
|
246 |
+
"text": [
|
247 |
+
"The country with the highest number of customers is Spain, with a total of 7 customers.\n"
|
248 |
+
]
|
249 |
+
}
|
250 |
+
],
|
251 |
+
"source": [
|
252 |
+
"print(get_response('Which COUNTRY has the highest number of customers?'))"
|
253 |
+
]
|
254 |
+
}
|
255 |
+
],
|
256 |
+
"metadata": {
|
257 |
+
"kernelspec": {
|
258 |
+
"display_name": "rag",
|
259 |
+
"language": "python",
|
260 |
+
"name": "python3"
|
261 |
+
},
|
262 |
+
"language_info": {
|
263 |
+
"codemirror_mode": {
|
264 |
+
"name": "ipython",
|
265 |
+
"version": 3
|
266 |
+
},
|
267 |
+
"file_extension": ".py",
|
268 |
+
"mimetype": "text/x-python",
|
269 |
+
"name": "python",
|
270 |
+
"nbconvert_exporter": "python",
|
271 |
+
"pygments_lexer": "ipython3",
|
272 |
+
"version": "3.12.7"
|
273 |
+
}
|
274 |
+
},
|
275 |
+
"nbformat": 4,
|
276 |
+
"nbformat_minor": 2
|
277 |
+
}
|
DataLoading/Data.py
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import faiss
|
3 |
+
import warnings
|
4 |
+
import nest_asyncio
|
5 |
+
from dotenv import load_dotenv
|
6 |
+
from llama_parse import LlamaParse
|
7 |
+
from llama_index.core import Settings
|
8 |
+
from llama_index.vector_stores.faiss import FaissVectorStore
|
9 |
+
from llama_index.embeddings.huggingface import HuggingFaceEmbedding
|
10 |
+
from llama_index.core import VectorStoreIndex, StorageContext
|
11 |
+
|
12 |
+
load_dotenv()
|
13 |
+
|
14 |
+
nest_asyncio.apply()
|
15 |
+
warnings.filterwarnings("ignore")
|
16 |
+
|
17 |
+
def get_data(file_path):
|
18 |
+
parser = LlamaParse(
|
19 |
+
api_key=os.getenv('LLAMA_CLOUD_API_KEY'),
|
20 |
+
result_type="markdown"
|
21 |
+
)
|
22 |
+
|
23 |
+
docs = parser.load_data(file_path)
|
24 |
+
|
25 |
+
d = 384
|
26 |
+
faiss_index = faiss.IndexFlatL2(d)
|
27 |
+
embedding_model = HuggingFaceEmbedding(model_name="BAAI/bge-small-en-v1.5")
|
28 |
+
Settings.embed_model = embedding_model
|
29 |
+
|
30 |
+
vector_store = FaissVectorStore(faiss_index=faiss_index)
|
31 |
+
storage_context = StorageContext.from_defaults(vector_store=vector_store)
|
32 |
+
index = VectorStoreIndex.from_documents(
|
33 |
+
docs, storage_context=storage_context
|
34 |
+
)
|
35 |
+
|
36 |
+
index.storage_context.persist()
|
37 |
+
print("Data Parsed Successfully!!")
|
DataLoading/__init__.py
ADDED
File without changes
|
DataLoading/__pycache__/Data.cpython-312.pyc
ADDED
Binary file (1.77 kB). View file
|
|
DataLoading/__pycache__/__init__.cpython-312.pyc
ADDED
Binary file (164 Bytes). View file
|
|
Pre-Processing.ipynb
ADDED
The diff for this file is too large to render.
See raw diff
|
|
app.py
ADDED
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import warnings
|
3 |
+
import nest_asyncio
|
4 |
+
import streamlit as st
|
5 |
+
from dotenv import load_dotenv
|
6 |
+
from DataLoading.Data import get_data
|
7 |
+
from llama_index.core import Settings
|
8 |
+
from llama_index.llms.groq import Groq
|
9 |
+
from llama_index.vector_stores.faiss import FaissVectorStore
|
10 |
+
from llama_index.embeddings.huggingface import HuggingFaceEmbedding
|
11 |
+
from llama_index.core import StorageContext, load_index_from_storage
|
12 |
+
|
13 |
+
nest_asyncio.apply()
|
14 |
+
load_dotenv()
|
15 |
+
warnings.filterwarnings("ignore")
|
16 |
+
|
17 |
+
def init_llm(model_name):
|
18 |
+
return Groq(model=model_name, api_key=os.getenv("GROQ_API_KEY"))
|
19 |
+
|
20 |
+
@st.cache_resource
|
21 |
+
def load_index(selected_model):
|
22 |
+
curr_direc = os.getcwd()
|
23 |
+
file_path = os.path.join(curr_direc, 'processed_data.csv')
|
24 |
+
# print(file_path)
|
25 |
+
get_data(file_path)
|
26 |
+
model = init_llm(selected_model)
|
27 |
+
embedding_model = HuggingFaceEmbedding(model_name="BAAI/bge-small-en-v1.5")
|
28 |
+
|
29 |
+
Settings.embed_model = embedding_model
|
30 |
+
Settings.llm = model
|
31 |
+
|
32 |
+
vector_store = FaissVectorStore.from_persist_dir('storage')
|
33 |
+
storage_context = StorageContext.from_defaults(
|
34 |
+
vector_store=vector_store, persist_dir='storage'
|
35 |
+
)
|
36 |
+
index = load_index_from_storage(storage_context=storage_context)
|
37 |
+
return index.as_query_engine()
|
38 |
+
|
39 |
+
st.title("Chatbot from ClienterAI")
|
40 |
+
|
41 |
+
st.sidebar.header("Settings")
|
42 |
+
selected_model = st.sidebar.selectbox(
|
43 |
+
"Select Groq Model:",
|
44 |
+
options=["mixtral-8x7b-32768", "gemma2-9b-it", "llama-3.1-70b-versatile", "llama3-8b-8192", "llava-v1.5-7b-4096-preview"],
|
45 |
+
index=0
|
46 |
+
)
|
47 |
+
|
48 |
+
query_engine = load_index(selected_model)
|
49 |
+
|
50 |
+
if "messages" not in st.session_state:
|
51 |
+
st.session_state["messages"] = []
|
52 |
+
|
53 |
+
|
54 |
+
with st.form("chat_form", clear_on_submit=True):
|
55 |
+
user_input = st.text_input("Ask a question based on your data:", "")
|
56 |
+
submitted = st.form_submit_button("Send")
|
57 |
+
|
58 |
+
if submitted and user_input:
|
59 |
+
st.session_state["messages"].append({"role": "user", "content": user_input})
|
60 |
+
response = query_engine.query(user_input)
|
61 |
+
ai_response = response
|
62 |
+
st.session_state["messages"].append({"role": "assistant", "content": ai_response})
|
63 |
+
|
64 |
+
for message in st.session_state["messages"]:
|
65 |
+
if message["role"] == "user":
|
66 |
+
st.markdown(f"**You:** {message['content']}")
|
67 |
+
else:
|
68 |
+
st.markdown(f"**Assistant:** {message['content']}")
|
69 |
+
|
70 |
+
if st.sidebar.button("Clear Chat"):
|
71 |
+
st.session_state["messages"] = []
|
72 |
+
st.sidebar.success("Chat cleared!")
|
73 |
+
|
74 |
+
|
75 |
+
st.markdown("""
|
76 |
+
<style>
|
77 |
+
.stForm {
|
78 |
+
position: fixed;
|
79 |
+
align-self: center;
|
80 |
+
bottom: 0;
|
81 |
+
width: 50%;
|
82 |
+
left: 25%;
|
83 |
+
right: 50%;
|
84 |
+
padding: 10px;
|
85 |
+
}
|
86 |
+
<style>
|
87 |
+
""", unsafe_allow_html=True)
|
processed_data.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
requirements.txt
ADDED
Binary file (3.01 kB). View file
|
|
sales_data_sample.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
storage/default__vector_store.json
ADDED
Binary file (527 kB). View file
|
|
storage/docstore.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
storage/graph_store.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"graph_dict": {}}
|
storage/image__vector_store.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"embedding_dict": {}, "text_id_to_ref_doc_id": {}, "metadata_dict": {}}
|
storage/index_store.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"index_store/data": {"bf4e84b0-2960-4783-8b65-48309e001573": {"__type__": "vector_store", "__data__": "{\"index_id\": \"bf4e84b0-2960-4783-8b65-48309e001573\", \"summary\": null, \"nodes_dict\": {\"0\": \"93077d5d-862a-4262-853d-70026b9d7a53\", \"1\": \"da947cc2-0812-4ebf-9569-6e9b8899eb58\", \"2\": \"6454d849-eec8-469b-832f-0904e337817a\", \"3\": \"94805fbe-94ba-4724-b21c-731e850a63a5\", \"4\": \"b4d45f58-43a0-4672-a2a0-c6553805c9ec\", \"5\": \"22ed7751-aad1-41b6-aebe-38db7733e9de\", \"6\": \"8d81d3ed-3cd1-4cac-a8c2-561f47c80552\", \"7\": \"cb4e6ced-64fe-4d1d-aa63-136ead397706\", \"8\": \"2356a047-4e16-4f24-b181-37abca138634\", \"9\": \"82d37573-eaee-47aa-8932-1473c6990578\", \"10\": \"a1ef9330-8fee-4913-811d-d959790020a1\", \"11\": \"28c70b70-816b-459c-b810-d8204bf25b1e\", \"12\": \"aa12b1ee-cebb-412a-ac1f-558f7497afa5\", \"13\": \"f9b853f9-f93b-4291-a595-3ebdb7c669b8\", \"14\": \"ae5bc17a-e94d-4b58-a6b0-cfeb8323e1a7\", \"15\": \"57898c26-f934-4e89-99d2-331b6c2ecb3f\", \"16\": \"fde10b42-fd16-42dc-8d41-2f478fc03113\", \"17\": \"b7bb69e8-3dd3-475d-8a28-46c59ac5901d\", \"18\": \"7c355457-7445-45cb-8f14-d25db1fcef46\", \"19\": \"fd91557b-c480-41a8-b0db-e0ea3bd9b92d\", \"20\": \"a3c677df-fe8b-4ae8-9b52-de4b98ece339\", \"21\": \"dfe3edda-3dc6-4e34-8ba6-8f69e018546e\", \"22\": \"523a7864-7da9-4369-b948-745a371f30ec\", \"23\": \"4de5aa16-544b-4bbe-98be-287b04d44c29\", \"24\": \"a9516c16-9c07-4124-b384-412fb4372690\", \"25\": \"230506cf-6f26-4194-83f2-177cb15fa615\", \"26\": \"75cfc274-44ca-4f52-987f-ce273effab3c\", \"27\": \"cf9a3c8c-11e7-4854-82f7-6e434a7f645a\", \"28\": \"0117623c-aefa-4d53-8101-c222bcbddf63\", \"29\": \"fb57b76a-09a1-40fc-bedf-e2334afefe01\", \"30\": \"c0397499-e0d8-4802-850d-74cd20567bed\", \"31\": \"50362fa5-60ff-48d2-9da4-c656406d9e78\", \"32\": \"011c037b-37b0-4179-8cc3-7caffdbe216f\", \"33\": \"006e6f64-85a6-4071-a5ff-f12fd7e19ddb\", \"34\": \"b806c998-ce9e-4d62-bdfe-885276858f28\", \"35\": \"1c473413-fcd0-4b7f-9a66-377446811dd2\", \"36\": \"a7c16ef5-9f09-453b-8a23-a9901abc3731\", \"37\": \"5a159d4d-50c6-473a-ae58-fa80914abbaa\", \"38\": \"909f8dc9-09e3-414e-8f27-b8b68c16cfd6\", \"39\": \"e0195471-0ca2-4ee9-9b64-d15e87e4cee2\", \"40\": \"d095ed9b-a489-4282-b7f9-6ec33e4485b9\", \"41\": \"10133f9f-8728-4cc7-8d43-a13ba788340f\", \"42\": \"484300af-634f-4fac-bffa-5ec0c3547cc9\", \"43\": \"0ff6cae3-b310-4be2-951e-84d65587fe50\", \"44\": \"e97583c2-764d-4e76-a8e1-565e76adf774\", \"45\": \"d8fc2daf-bb0a-4442-aaf3-22b8dffce348\", \"46\": \"9e1eeae2-69ab-4e54-8180-10ea91e0feb4\", \"47\": \"f15d4cb8-a583-469e-8ced-3c277c97b642\", \"48\": \"a0f0a4fa-9726-47a6-ba35-7469b48ff793\", \"49\": \"44262b5e-3f70-4b6d-9ae4-58085c216dfe\", \"50\": \"5ec6b324-a511-4db2-aa2e-8425a29ab3b9\", \"51\": \"5c9fd371-3417-435f-8c27-e1f7a18ba395\", \"52\": \"69a936ef-d86f-4509-829a-83bd515431c5\", \"53\": \"36163c8f-dc1f-4ff8-9809-d22f6b8eb867\", \"54\": \"ec4ca321-6a5b-416c-9a8d-681c3a085722\", \"55\": \"94cc4cd1-9b96-4e0a-8dd6-cf054b20961c\", \"56\": \"f41074cf-e65b-4377-839a-f4d26a9f0523\", \"57\": \"f2691e03-5847-4125-b884-cda2c3139fba\", \"58\": \"9412156e-28c6-4e5f-a4e8-10bd1f1d26e6\", \"59\": \"4b69af15-2099-4978-9711-06ffb90683d3\", \"60\": \"60e4df79-5c17-4d59-b684-3136b97a0015\", \"61\": \"2338a9d8-07dd-455d-8d26-a5d7936940d9\", \"62\": \"d57e7a48-cf8d-4fd6-86d4-9363659c91af\", \"63\": \"b686f707-6f55-4277-a9fe-408d35b1f340\", \"64\": \"4144a62f-e071-4434-a296-e8a192f008be\", \"65\": \"5eccff40-5ae4-4e89-8087-d62b060edb1b\", \"66\": \"4f969e4a-8081-4b9a-b556-d27a0af40a0b\", \"67\": \"8e15c53b-98b1-44e4-bce7-57d1b610715c\", \"68\": \"e129f51f-de7a-46d6-8e48-e27dd0c20694\", \"69\": \"40883fdc-4959-4317-ba21-22a5e38d985d\", \"70\": \"92323844-4fc2-4e48-aa97-51c530d2487a\", \"71\": \"3b8a7f39-99da-4198-b847-e1316277972c\", \"72\": \"8368573d-1dd4-432c-8d4d-99ba5666aed4\", \"73\": \"8020c71f-7aad-4936-86b9-63ee3a2997d4\", \"74\": \"78899985-8d18-41ea-9a57-41d234ff6224\", \"75\": \"05b474de-5bee-4095-8455-5a7a03326e54\", \"76\": \"ac1aaa3c-99cc-4fe5-b68f-bb7c0b3b04fc\", \"77\": \"f0ea1a9f-de40-4a1f-9109-bf049a63f643\", \"78\": \"a84f7257-4b7c-42d8-82dc-8eab5e31c5af\", \"79\": \"ee920ef9-b999-4869-a3fe-c25134342722\", \"80\": \"18857efa-a2ac-4f01-8683-167d1bf77788\", \"81\": \"f3f00af3-4a22-46ae-9f52-ff33e2844294\", \"82\": \"1b95ecd8-039b-4e4d-ab04-b97a5dc34bdc\", \"83\": \"ab383dde-ecb5-498c-a297-bbdf879072e6\", \"84\": \"f715ae6a-f667-4ead-aae5-9ac7b338a0a5\", \"85\": \"c983f80d-8bc4-4131-9a9d-dc69bb331c69\", \"86\": \"1877c798-abb5-4474-82be-26cb0ada0557\", \"87\": \"2f999569-7ab8-4921-8c6e-852c93eded12\", \"88\": \"db2b7eaf-e85d-4370-b22a-b808dbf4f8c7\", \"89\": \"86add1af-0ffb-4074-a97a-caa953aad747\", \"90\": \"d6526331-cf39-405d-9c42-3998c6119f87\", \"91\": \"8e35192e-d925-4f4d-9ce3-223e83dc69fd\", \"92\": \"b2375e0b-167f-4a06-aaaf-18ec34ce2eab\", \"93\": \"3298807b-42e0-46c2-88d7-b792565c25f1\", \"94\": \"7bde33fa-e7ce-4d09-a8cd-dab7c197cc30\", \"95\": \"6ddcd309-d7cf-41f2-a455-1326d7957818\", \"96\": \"74946600-9267-4f0a-802d-4a93197feeb4\", \"97\": \"55b4045e-7aba-4123-a40e-f516a5be610c\", \"98\": \"9ce435c4-c5e4-4514-b7de-7d3a01f16db8\", \"99\": \"aa58e690-3425-4936-aee4-24ac2f2e3e5d\", \"100\": \"93e80da6-fa6d-4813-a1ca-075cbc135928\", \"101\": \"61c537de-bf28-46c1-a166-74168991078b\", \"102\": \"08047281-3c17-4e63-b36e-9dc4c007fdfa\", \"103\": \"f75b5aa6-30d3-4478-afdd-3dc442f9c9e5\", \"104\": \"bd2a6839-d160-4c0e-89e5-826495b5d0d8\", \"105\": \"9b2b4dd6-432b-4667-8d65-b80ec91f370b\", \"106\": \"d5ed6fb7-d76b-4f8c-8815-b549e435bdbd\", \"107\": \"f25d16d8-c1fb-423d-90c0-14467b6b6497\", \"108\": \"ba5ab7ee-0c63-4143-a859-d46d376c94c4\", \"109\": \"e934af99-741e-472c-90c0-939af29f518e\", \"110\": \"d150d108-0d18-4f59-9d06-673bd9fc8348\", \"111\": \"ddeea0d3-c2f1-4dcf-b1bc-f448fe9cec0f\", \"112\": \"187a7f28-3586-427a-8560-302a954cd4e1\", \"113\": \"cd3c7c89-bffb-4704-ae30-f9f14cb0dc7b\", \"114\": \"93754d30-c1d3-418d-bf92-22a66c058728\", \"115\": \"53dd1b02-4680-406c-9f24-36f4bb396c53\", \"116\": \"bcf42507-f733-4c6d-801d-027e365e5249\", \"117\": \"7c7f87e8-40c7-463c-b21f-06fac785ab1d\", \"118\": \"3c3ab117-9385-497e-9bbe-ac2adf7c6c31\", \"119\": \"fc661f88-43f0-4580-9a3e-5b3728d9decc\", \"120\": \"60cbf4fa-42f9-4387-9907-0aa2c44fce17\", \"121\": \"f58b7ba5-d2f4-447c-8701-f235a3b34a01\", \"122\": \"1098e54a-4b36-40b4-96a3-212023a3d20b\", \"123\": \"d3a5316f-f416-4b38-beca-6b14276d37f2\", \"124\": \"7c25affd-3d79-4c49-bf48-361739ca86af\", \"125\": \"9e7984a7-91b2-4ace-9798-e0b8813cf76f\", \"126\": \"5ccd3bbc-8db8-4dcf-83e4-d7c95ee9d8e4\", \"127\": \"1f0e4a1a-5974-4580-a7f2-31b1207b0fd9\", \"128\": \"00413254-6e51-49f5-8adc-1feb4bf37150\", \"129\": \"334c916d-c2a5-43d3-b211-264c93c7a4c9\", \"130\": \"554322ba-177f-40be-8896-6021fdf93976\", \"131\": \"c4f220d0-888d-415f-8879-ab672eacaaaa\", \"132\": \"69951c3b-d915-40f0-b64e-218001db8dd1\", \"133\": \"4bd54054-865a-4993-9363-984020aaec8c\", \"134\": \"a15588e3-5bdb-4b62-a2a3-c8f3ec465b5f\", \"135\": \"fff778e0-057e-48fd-a464-9aa593b4f565\", \"136\": \"02eea233-7708-4f07-999d-007876980ab6\", \"137\": \"80a56e0c-26d9-43e3-ab78-28f739d34bb5\", \"138\": \"3d4fd8b2-ca67-4ea5-89a4-622e7b5063ca\", \"139\": \"7ddb53a4-9a2a-4bd8-a15e-8d1f233c38a0\", \"140\": \"732956a7-e768-4cd7-84ad-162974da82fd\", \"141\": \"f241429e-93d6-4758-88bf-ccf50bcb98d3\", \"142\": \"0293aa1c-1a81-4f30-a4c8-e018e1744063\", \"143\": \"ac891867-cc47-4093-8493-349b933313d5\", \"144\": \"2a5807c0-c642-4d57-8180-445e5ddf2fd3\", \"145\": \"73b54bce-0239-4607-938a-c3de9f6053cb\", \"146\": \"fee0d3dc-bfeb-4cdc-8773-a2f956dfaf87\", \"147\": \"966167a2-241d-4ee0-94d3-ff6db53601a3\", \"148\": \"d1eece97-3aeb-43ab-9347-b3d01a3c6956\", \"149\": \"9ea08255-8bcf-4c05-8a25-fd116c805d7d\", \"150\": \"4975945b-0192-404f-89ab-cdf7a2e160d0\", \"151\": \"c9fdf275-ad5d-4ec9-832b-2f8d9b0d3094\", \"152\": \"0cf08bb6-d196-40f9-8454-e2575385a2da\", \"153\": \"7801d47a-2777-44c3-889d-0a2a333d8f44\", \"154\": \"45ed29d9-5a0c-4655-a6eb-29b3da43e744\", \"155\": \"ccebdd30-c3a7-4597-bdc2-5f8c2d50e1f5\", \"156\": \"70f6cd0a-d363-4832-9554-314126ce81ac\", \"157\": \"f2f11776-8717-4e7e-8bd3-3ddc11189fc4\", \"158\": \"6d23f4dd-d60f-4a96-b0a7-cac5d46710a1\", \"159\": \"fef97538-e6e0-4312-a61f-9250d24abea3\", \"160\": \"930db69e-f5d5-45dd-91d9-7fe11e54fb58\", \"161\": \"d235ea75-65c7-410d-b8ba-14bbb4178688\", \"162\": \"35bb3255-8683-426e-9e90-de23a3d946e8\", \"163\": \"039a518a-af5e-490e-8fba-384220855d34\", \"164\": \"cf30e95e-a67b-4e54-83bc-64e3e201222d\", \"165\": \"15a387c8-3f55-4cb6-b85e-5dc99ca37a0c\", \"166\": \"129b2fca-3681-4731-bc93-cdf47f808a7c\", \"167\": \"9d9248b0-d3ad-4ff6-8174-4a695afd891a\", \"168\": \"11cd7bcf-1b18-4e96-ab60-7361933e3561\", \"169\": \"e3a74423-de24-4276-86a1-41697c752f28\", \"170\": \"42f76cbf-0642-4892-b077-d372df33b8cf\", \"171\": \"d99fd8f5-544e-4f29-a3ce-299b7d17d5c8\", \"172\": \"1665916d-4c85-49fc-9438-1483761339a1\", \"173\": \"a0892679-9b1c-493c-9a42-b58738b2d7b7\", \"174\": \"9176b419-9244-4113-b83d-2d16d707ba9d\", \"175\": \"190aa77e-0b8f-4e37-a3d5-18687d8210f4\", \"176\": \"17144213-4a73-4906-9c08-47e0c9962307\", \"177\": \"2532375b-b4c9-4be4-be9c-e65058f51ccf\", \"178\": \"68da8616-ce93-427a-b21f-77f4ab2def76\", \"179\": \"d86ff12b-b774-4652-9ef0-cd0ddc957cbe\", \"180\": \"e361a687-9333-4e07-827b-99eebf585a9c\", \"181\": \"a8661243-e2d1-4c74-b9d2-29b0878b5bd8\", \"182\": \"a6fce1a0-e04a-44ea-b0b7-83fcfa7020f8\", \"183\": \"91863246-3f6f-495a-9e2e-7f9508667110\", \"184\": \"905cd170-34e7-4826-af89-6635aca745d6\", \"185\": \"3415789c-0816-451e-9e10-4100c941a33b\", \"186\": \"b95ccbfc-5f73-4dca-91ae-4f3d8fdfee6a\", \"187\": \"78ed9d2e-0c56-423b-879d-33e16762a820\", \"188\": \"bebc5c85-3191-4317-bd17-f58e188136ef\", \"189\": \"3268466e-8331-4966-ba68-c1ccce3b77b0\", \"190\": \"25c9e8b0-7a5a-48c6-b1c9-cd4397992e8a\", \"191\": \"89b91916-e4ac-47ba-91fe-9b6acc7c191c\", \"192\": \"4cfe6011-289f-4ec0-b2d7-b8c59c239e3b\", \"193\": \"50fce493-2280-4369-9de9-00286a233421\", \"194\": \"fa25bc35-8591-4009-bafb-28f7c4952216\", \"195\": \"da0d25eb-4380-4022-a4f6-bb5e33496157\", \"196\": \"65098c7c-ab5f-4b32-92d4-474bc25fc5f7\", \"197\": \"b5596dd2-211f-4f28-b22f-f787d8eacbb3\", \"198\": \"7aaa6aba-cece-4da9-9a1c-259e9aebeb4b\", \"199\": \"26885000-72c5-4c64-8816-47c2e3392165\", \"200\": \"79da9856-4cf4-4cac-ac16-a9b399fcb912\", \"201\": \"065d83db-21c5-4591-8c3e-d894347257df\", \"202\": \"98c467ea-647f-4f50-a2b3-1772ca304c34\", \"203\": \"d2e7f237-5c26-4e12-be6e-ff5b6accc8d0\", \"204\": \"88f7ac41-ad48-4018-8f49-3cdb72139c5f\", \"205\": \"93943f57-2d1e-4983-99ca-4015a3a0afdc\", \"206\": \"fb0e628d-7fe7-417f-b94c-7ccdd50bcb32\", \"207\": \"d4639f0a-ceb9-4043-a45b-247910a0c977\", \"208\": \"ca213d2b-6265-4ace-beff-8643d417052f\", \"209\": \"e6b6e864-1a23-4922-8f4c-5cf89fe99c02\", \"210\": \"fba4befa-16df-4392-aae6-e8c70073c5b1\", \"211\": \"ea3c7c50-99dc-48a3-943f-acdc4061aadd\", \"212\": \"1e55f414-2daa-4319-bc86-b97b5d2b073e\", \"213\": \"b7737310-360e-4527-a1ba-88ba5c36bf91\", \"214\": \"e62dc50d-84e9-47e9-a1bb-724b16901f5e\", \"215\": \"72a967f9-96c2-486e-91d8-96fb8ef4cf4b\", \"216\": \"eb5a8ecd-b988-4cef-80e9-8d4d2b4ff739\", \"217\": \"4e6159c6-a617-46b0-8d63-4381538a5c45\", \"218\": \"0d8e6264-19a1-40fa-90e0-3c47ddcab0f5\", \"219\": \"1209295c-5c91-4ddf-be7f-3b7b258bc0c1\", \"220\": \"7a725432-34a3-4129-9efa-fc3d778e9fcb\", \"221\": \"c4d51970-530d-491a-8153-73322c489a34\", \"222\": \"1201b786-3372-4da4-bdf4-6191529e8938\", \"223\": \"08e2ccc6-9ad3-4319-b4ce-6a2a6f8c2166\", \"224\": \"16d73985-d053-4e06-b1f4-fbb36e7e145c\", \"225\": \"f5e47a7b-3de5-4b4e-9980-fac055b598da\", \"226\": \"b45a199e-24fa-4511-b13d-d25e364b306b\", \"227\": \"5983116a-9711-42a5-adc9-6d94244f3168\", \"228\": \"239ec342-5a9e-4db7-90e7-01c6a7918a09\", \"229\": \"a5f4e68f-1f8e-45c7-b7ef-1ce524caeada\", \"230\": \"85b5275b-9d0b-4a70-b485-e9af8bdcffc8\", \"231\": \"4ad1934e-36b7-4789-b89d-a8df8180d894\", \"232\": \"9b62c3ff-3857-469c-bf82-26bae30d560f\", \"233\": \"da26720a-2e57-4c55-95fe-96a63f30cccb\", \"234\": \"4fe9c7e5-d409-4a7b-916e-b6c0b06e2947\", \"235\": \"8ee337a8-688b-4650-b1d3-a8a16d814f0e\", \"236\": \"06ca2f19-90f1-4b4e-909d-c71319b23313\", \"237\": \"2ceacebc-81f3-49f5-a621-2ee4793c85da\", \"238\": \"b32d40bb-a236-4aea-825a-af68d8171528\", \"239\": \"df460385-a70a-48f0-bdac-1f708efe6977\", \"240\": \"003ddce4-e963-4718-b55f-7838abf7a847\", \"241\": \"e3c29a2f-3caa-4e7f-90cb-e9327a32dcc9\", \"242\": \"a6675581-ba1a-469c-8f6e-12888f524821\", \"243\": \"bc978f28-2005-48b7-b75b-91824be415e4\", \"244\": \"4971f314-8d22-4767-a944-0cfc7af7eea3\", \"245\": \"95ec4da8-c5cc-43e9-b031-8cba16200874\", \"246\": \"331bad95-7527-4872-9176-0c0796bc4d64\", \"247\": \"77172ded-170c-493d-a086-32dc114c7e24\", \"248\": \"a73881f7-6882-4132-a6f5-f4e288ce76c4\", \"249\": \"63de0f6c-38d4-478e-9e20-d978e35d75e8\", \"250\": \"1a96a88f-2234-4e89-960e-b38e76e2ce15\", \"251\": \"a030b050-bd45-4b01-92c9-4c6074c886d7\", \"252\": \"e3d027ed-2c37-4f49-bf00-d24901751903\", \"253\": \"0d385db4-9e2e-4eb3-81b5-33e560cd0843\", \"254\": \"2caf837f-0c3c-4aa9-9c53-63c111252411\", \"255\": \"17bd7204-cedd-429e-be8b-218585cfbcef\", \"256\": \"7d789dda-cc0b-43e6-ba51-61ce7bdebea6\", \"257\": \"3a667367-f373-4299-ad74-37aa8d091354\", \"258\": \"d45f93b0-e3c6-444d-bcd8-f0619be7f717\", \"259\": \"052119e7-2a38-4454-9e4f-7b60bf9547b6\", \"260\": \"5c3da1d5-526c-4062-8945-67b7b1f75ea2\", \"261\": \"11fdf641-4142-4d1e-9e40-c6835deb4a4c\", \"262\": \"4ec3e11e-bd89-470d-ac1f-6b9004d49dd3\", \"263\": \"0ad2403c-a6dd-41d6-aa64-f529e29b5627\", \"264\": \"f5640b5c-4381-420f-90b5-ffa2ea4a199a\", \"265\": \"e54e9cdb-4ff2-4dc3-aabd-e5b7939ff642\", \"266\": \"44ce9972-52a7-4ada-b398-dda4413d6df4\", \"267\": \"dd66b6cf-496c-49c7-aea8-cee23b654f18\", \"268\": \"e874082d-880e-4779-9165-555ffac9fddd\", \"269\": \"de5d8c9f-3190-4e68-aa85-119c4469faff\", \"270\": \"8cd4e2a9-f3a1-4682-a96e-89393528b5c3\", \"271\": \"bc0977a3-e2a4-42f7-8f87-f5cb924677a5\", \"272\": \"d0ed27bc-32be-458f-9eae-6cfa9d7fcc80\", \"273\": \"464e5a75-02f5-4d9e-87f0-c8e7a8eb994a\", \"274\": \"1a747084-a7d6-4724-a3f6-71f8c9bd4f56\", \"275\": \"7c006b70-aaae-4109-af27-37e8f1d07b1f\", \"276\": \"96ff8845-26dd-463c-a78c-69fbe987f0af\", \"277\": \"ed150d26-aafc-4aff-a8e7-7fa42dd33166\", \"278\": \"c40699b3-7fe9-4e6d-8c02-16e9428705af\", \"279\": \"f4906af8-a0a1-49c9-beec-a73840c10ac6\", \"280\": \"431cca55-0f57-46a2-b753-895e4b6f4bcc\", \"281\": \"4cc7b136-d408-44d3-9cbe-a36449429d39\", \"282\": \"daf36641-4eee-44a6-a477-7afe3b746716\", \"283\": \"cf45ef5d-63df-47e7-9148-c67cfc96762b\", \"284\": \"afe8f8ba-de8e-4ab3-b1a7-31ce0a9ee138\", \"285\": \"91086723-efd3-4e07-8a04-63cdb803dec2\", \"286\": \"6752f6f3-5db1-479a-b1d6-96e285941d55\", \"287\": \"d79ee441-0bb0-4623-9452-d35e5bbe7680\", \"288\": \"06916c5e-7858-47da-97aa-fce896ad1db2\", \"289\": \"b627e76d-5815-40d9-aa67-8f16d94f023e\", \"290\": \"b5249af0-57ea-4821-827b-b25b3a3e72cc\", \"291\": \"514c6272-1133-4d81-96e7-95d85ca4bcd4\", \"292\": \"a0c1833a-6161-4493-ad62-bda00b5a4274\", \"293\": \"e6e97a2a-987c-49d0-82ad-382601d39b60\", \"294\": \"59c2e949-5448-42c4-b0f7-87111663a6fa\", \"295\": \"3ae9385c-7190-4ebe-a539-dc78075decc8\", \"296\": \"9bcdbfe3-06f0-40dd-9c54-c53e47131c4d\", \"297\": \"3ce2a7b9-5403-439b-a8a3-d6e952fdef42\", \"298\": \"8eb6ef6d-3df3-493c-ab04-aed46b420f99\", \"299\": \"58a574b2-683d-4fbb-a668-91a421e63f45\", \"300\": \"f1956624-92cb-4bf9-a0b4-210e8381118a\", \"301\": \"d00072c5-4915-44cf-ad15-aec191fce82c\", \"302\": \"e5734620-1976-4661-b5c8-9d55b19360cb\", \"303\": \"c333be80-7701-4901-b6e2-0d52962ec49c\", \"304\": \"d97155f3-e865-430e-9190-594b43b8fe23\", \"305\": \"c7c0693a-d4a5-4ca1-904b-f7d73b32d64e\", \"306\": \"fa081fb3-999c-475a-b0a9-232adcf08622\", \"307\": \"3334a078-412a-4ad2-90d8-c5c712c410b3\", \"308\": \"eed03dca-76af-4397-b562-8fbcaa7a4f66\", \"309\": \"e9b90739-6499-4e38-b6d3-bddc899ed9f2\", \"310\": \"669d51e3-35e7-4fb5-8927-064ef664cda7\", \"311\": \"4a58a037-69cf-40da-96e5-062613fb4ccb\", \"312\": \"b0be1f4b-78da-43be-bd48-3d471bf4cb11\", \"313\": \"1d017f41-898c-4c04-ac6a-c6156569aa5a\", \"314\": \"4c97b967-fcb4-4538-8ef5-d05cfb5281e6\", \"315\": \"1793e519-64b4-4fc5-b9e2-0625da40c13c\", \"316\": \"c7526a95-bd0b-45e1-af56-2267d8db690f\", \"317\": \"e9448c6d-bd48-428c-91cf-b1a6439d62e0\", \"318\": \"062299cd-8769-4928-9943-5977cb099b9f\", \"319\": \"824d50b6-05cc-42aa-a54f-f1c106dbe793\", \"320\": \"611dbd04-1b6e-415e-b946-5edad36e800c\", \"321\": \"aebd8dac-e851-48ef-995b-0e99888ce873\", \"322\": \"2517608d-42d8-45ec-ae55-2ca156589a86\", \"323\": \"4c063ec0-5b2a-4071-ba3b-955c670729de\", \"324\": \"fd247bda-84b0-4014-8fd3-39da7654286a\", \"325\": \"38cb278e-96d0-4168-90fd-1c71aed1b385\", \"326\": \"3a3953eb-a3e5-4ef8-ab72-ca569bb63a58\", \"327\": \"9afa4192-1acb-4edd-8adb-2886473d4302\", \"328\": \"eda5f759-c173-4a2b-b888-2668ce70bce1\", \"329\": \"63f268c9-94ee-4ea8-b316-8aa8306268a0\", \"330\": \"1d54aa0a-3e0e-4933-9a2f-54cdb7954121\", \"331\": \"5d9d07b4-7259-4925-af49-41767ee74959\", \"332\": \"7355f13f-27e6-4713-b6d6-df94804d49fc\", \"333\": \"1722ab86-7ec3-4adc-8a2d-64c7db3a87f7\", \"334\": \"fdd0f719-b2b4-4d57-ae44-80d07152b42d\", \"335\": \"d3825a86-bb33-408a-9c3d-d1dec0385b67\", \"336\": \"b0410ea5-422b-4ac0-a7c3-3f420f2b6589\", \"337\": \"e3f1ffce-a1a7-4aff-a424-2c53621dc072\", \"338\": \"ffcc8b8c-4350-4442-bec3-e35960a3e661\", \"339\": \"70a530d4-c1c1-47f4-a665-5b403d13de84\", \"340\": \"4d942db3-bed7-49de-b4e1-1d7201a8e312\", \"341\": \"acb6276b-faa2-41f8-be63-4d34f5cddc60\", \"342\": \"cb67d959-674a-47ee-9910-471580382c8a\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}}
|