NaderAfshar commited on
Commit ·
329beda
1
Parent(s): fd58b95
Commiting updates
Browse files- step3.py +92 -20
- step4.py +67 -0
- storage/default__vector_store.json +1 -1
- storage/docstore.json +1 -1
- storage/index_store.json +1 -1
step3.py
CHANGED
|
@@ -1,4 +1,3 @@
|
|
| 1 |
-
from helper import get_llama_cloud_api_key
|
| 2 |
from helper import extract_html_content
|
| 3 |
from IPython.display import display, HTML
|
| 4 |
from llama_index.utils.workflow import draw_all_possible_flows
|
|
@@ -22,6 +21,7 @@ from llama_index.core.workflow import (
|
|
| 22 |
Event,
|
| 23 |
Context
|
| 24 |
)
|
|
|
|
| 25 |
from pathlib import Path
|
| 26 |
from dotenv import load_dotenv
|
| 27 |
import os
|
|
@@ -96,36 +96,49 @@ agent = FunctionCallingAgent.from_tools(
|
|
| 96 |
response = agent.chat("How many years of experience does the applicant have?")
|
| 97 |
print(response)
|
| 98 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
|
| 100 |
class QueryEvent(Event):
|
| 101 |
query: str
|
| 102 |
|
| 103 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 104 |
class RAGWorkflow(Workflow):
|
|
|
|
| 105 |
storage_dir = "./storage"
|
| 106 |
llm: Groq
|
| 107 |
query_engine: VectorStoreIndex
|
| 108 |
|
| 109 |
-
# the first step will be setup
|
| 110 |
@step
|
| 111 |
-
async def set_up(self, ctx: Context, ev: StartEvent) ->
|
| 112 |
-
|
| 113 |
if not ev.resume_file:
|
| 114 |
raise ValueError("No resume file provided")
|
| 115 |
|
| 116 |
-
|
| 117 |
-
|
|
|
|
| 118 |
|
| 119 |
# ingest the data and set up the query engine
|
| 120 |
if os.path.exists(self.storage_dir):
|
| 121 |
-
# you've already ingested
|
| 122 |
storage_context = StorageContext.from_defaults(persist_dir=self.storage_dir)
|
| 123 |
index = load_index_from_storage(storage_context)
|
| 124 |
else:
|
| 125 |
-
# parse and load
|
| 126 |
documents = LlamaParse(
|
| 127 |
result_type="markdown",
|
| 128 |
-
content_guideline_instruction="This is a resume, gather related facts together and format it as
|
|
|
|
| 129 |
).load_data(ev.resume_file)
|
| 130 |
# embed and index the documents
|
| 131 |
index = VectorStoreIndex.from_documents(
|
|
@@ -134,33 +147,92 @@ class RAGWorkflow(Workflow):
|
|
| 134 |
)
|
| 135 |
index.storage_context.persist(persist_dir=self.storage_dir)
|
| 136 |
|
| 137 |
-
#
|
| 138 |
self.query_engine = index.as_query_engine(llm=self.llm, similarity_top_k=5)
|
| 139 |
|
| 140 |
-
#
|
| 141 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 142 |
|
| 143 |
-
#
|
| 144 |
@step
|
| 145 |
-
async def
|
| 146 |
-
|
| 147 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 148 |
|
| 149 |
|
| 150 |
async def main():
|
| 151 |
w = RAGWorkflow(timeout=120, verbose=False)
|
| 152 |
result = await w.run(
|
| 153 |
-
resume_file="
|
| 154 |
-
|
| 155 |
)
|
| 156 |
print(result)
|
| 157 |
-
|
| 158 |
# Display of the workflow
|
| 159 |
workflow_file = Path(__file__).parent / "workflows" / "rag_workflow.html"
|
| 160 |
draw_all_possible_flows(w, filename=str(workflow_file))
|
| 161 |
html_content = extract_html_content(str(workflow_file))
|
| 162 |
display(HTML(html_content), metadata=dict(isolated=True))
|
| 163 |
-
|
| 164 |
|
| 165 |
if __name__ == "__main__":
|
| 166 |
asyncio.run(main())
|
|
|
|
|
|
|
| 1 |
from helper import extract_html_content
|
| 2 |
from IPython.display import display, HTML
|
| 3 |
from llama_index.utils.workflow import draw_all_possible_flows
|
|
|
|
| 21 |
Event,
|
| 22 |
Context
|
| 23 |
)
|
| 24 |
+
import json
|
| 25 |
from pathlib import Path
|
| 26 |
from dotenv import load_dotenv
|
| 27 |
import os
|
|
|
|
| 96 |
response = agent.chat("How many years of experience does the applicant have?")
|
| 97 |
print(response)
|
| 98 |
|
| 99 |
+
print("\n\n" + "="*50, "\n\n")
|
| 100 |
+
|
| 101 |
+
|
| 102 |
+
class ParseFormEvent(Event):
|
| 103 |
+
application_form: str
|
| 104 |
+
|
| 105 |
|
| 106 |
class QueryEvent(Event):
|
| 107 |
query: str
|
| 108 |
|
| 109 |
|
| 110 |
+
class ResponseEvent(Event):
|
| 111 |
+
response: str
|
| 112 |
+
|
| 113 |
+
|
| 114 |
+
# the first step will be setup
|
| 115 |
class RAGWorkflow(Workflow):
|
| 116 |
+
# define the LLM to work with
|
| 117 |
storage_dir = "./storage"
|
| 118 |
llm: Groq
|
| 119 |
query_engine: VectorStoreIndex
|
| 120 |
|
|
|
|
| 121 |
@step
|
| 122 |
+
async def set_up(self, ctx: Context, ev: StartEvent) -> ParseFormEvent:
|
| 123 |
+
self.llm = global_llm
|
| 124 |
if not ev.resume_file:
|
| 125 |
raise ValueError("No resume file provided")
|
| 126 |
|
| 127 |
+
if not ev.application_form:
|
| 128 |
+
raise ValueError("No application form provided")
|
| 129 |
+
|
| 130 |
|
| 131 |
# ingest the data and set up the query engine
|
| 132 |
if os.path.exists(self.storage_dir):
|
| 133 |
+
# you've already ingested the resume document
|
| 134 |
storage_context = StorageContext.from_defaults(persist_dir=self.storage_dir)
|
| 135 |
index = load_index_from_storage(storage_context)
|
| 136 |
else:
|
| 137 |
+
# parse and load the resume document
|
| 138 |
documents = LlamaParse(
|
| 139 |
result_type="markdown",
|
| 140 |
+
content_guideline_instruction="This is a resume, gather related facts together and format it as "
|
| 141 |
+
"bullet points with headers"
|
| 142 |
).load_data(ev.resume_file)
|
| 143 |
# embed and index the documents
|
| 144 |
index = VectorStoreIndex.from_documents(
|
|
|
|
| 147 |
)
|
| 148 |
index.storage_context.persist(persist_dir=self.storage_dir)
|
| 149 |
|
| 150 |
+
# create a query engine
|
| 151 |
self.query_engine = index.as_query_engine(llm=self.llm, similarity_top_k=5)
|
| 152 |
|
| 153 |
+
# you no longer need a query to be passed in,
|
| 154 |
+
# you'll be generating the queries instead
|
| 155 |
+
# let's pass the application form to a new step to parse it
|
| 156 |
+
return ParseFormEvent(application_form=ev.application_form)
|
| 157 |
+
|
| 158 |
+
@step
|
| 159 |
+
async def parse_form(self, ctx: Context, ev: ParseFormEvent) -> QueryEvent:
|
| 160 |
+
parser = LlamaParse(
|
| 161 |
+
result_type="markdown",
|
| 162 |
+
content_guideline_instruction="This is a job application form. Create a list of all the fields that "
|
| 163 |
+
"need to be filled in.",
|
| 164 |
+
formatting_instruction="Return a bulleted list of the fields ONLY."
|
| 165 |
+
)
|
| 166 |
+
|
| 167 |
+
# get the LLM to convert the parsed form into JSON
|
| 168 |
+
result = parser.load_data(ev.application_form)[0]
|
| 169 |
+
raw_json = self.llm.complete(
|
| 170 |
+
f"""
|
| 171 |
+
This is a parsed form.
|
| 172 |
+
Convert it into a JSON object containing only the list
|
| 173 |
+
of fields to be filled in, in the form {{ fields: [...] }}.
|
| 174 |
+
<form>{result.text}</form>.
|
| 175 |
+
Return JSON ONLY, no markdown.
|
| 176 |
+
""")
|
| 177 |
+
fields = json.loads(raw_json.text)["fields"]
|
| 178 |
+
|
| 179 |
+
# new!
|
| 180 |
+
# generate one query for each of the fields, and fire them off
|
| 181 |
+
for field in fields:
|
| 182 |
+
ctx.send_event(QueryEvent(
|
| 183 |
+
field=field,
|
| 184 |
+
query=f"How would you answer this question about the candidate? {field}"
|
| 185 |
+
))
|
| 186 |
+
|
| 187 |
+
# store the number of fields so we know how many to wait for later
|
| 188 |
+
await ctx.set("total_fields", len(fields))
|
| 189 |
+
return
|
| 190 |
+
|
| 191 |
+
@step
|
| 192 |
+
async def ask_question(self, ctx: Context, ev: QueryEvent) -> ResponseEvent:
|
| 193 |
+
response = self.query_engine.query(
|
| 194 |
+
f"This is a question about the specific resume we have in our database: {ev.query}")
|
| 195 |
+
return ResponseEvent(field=ev.field, response=response.response)
|
| 196 |
|
| 197 |
+
# new!
|
| 198 |
@step
|
| 199 |
+
async def fill_in_application(self, ctx: Context, ev: ResponseEvent) -> StopEvent:
|
| 200 |
+
# get the total number of fields to wait for
|
| 201 |
+
total_fields = await ctx.get("total_fields")
|
| 202 |
+
|
| 203 |
+
responses = ctx.collect_events(ev, [ResponseEvent] * total_fields)
|
| 204 |
+
if responses is None:
|
| 205 |
+
return None # do nothing if there's nothing to do yet
|
| 206 |
+
|
| 207 |
+
# we've got all the responses!
|
| 208 |
+
responseList = "\n".join("Field: " + r.field + "\n" + "Response: " + r.response for r in responses)
|
| 209 |
+
|
| 210 |
+
result = self.llm.complete(f"""
|
| 211 |
+
You are given a list of fields in an application form and responses to
|
| 212 |
+
questions about those fields from a resume. Combine the two into a list of
|
| 213 |
+
fields and succinct, factual answers to fill in those fields.
|
| 214 |
+
|
| 215 |
+
<responses>
|
| 216 |
+
{responseList}
|
| 217 |
+
</responses>
|
| 218 |
+
""")
|
| 219 |
+
return StopEvent(result=result)
|
| 220 |
|
| 221 |
|
| 222 |
async def main():
|
| 223 |
w = RAGWorkflow(timeout=120, verbose=False)
|
| 224 |
result = await w.run(
|
| 225 |
+
resume_file="data/fake_resume.pdf",
|
| 226 |
+
application_form="data/fake_application_form.pdf"
|
| 227 |
)
|
| 228 |
print(result)
|
| 229 |
+
'''
|
| 230 |
# Display of the workflow
|
| 231 |
workflow_file = Path(__file__).parent / "workflows" / "rag_workflow.html"
|
| 232 |
draw_all_possible_flows(w, filename=str(workflow_file))
|
| 233 |
html_content = extract_html_content(str(workflow_file))
|
| 234 |
display(HTML(html_content), metadata=dict(isolated=True))
|
| 235 |
+
'''
|
| 236 |
|
| 237 |
if __name__ == "__main__":
|
| 238 |
asyncio.run(main())
|
step4.py
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from helper import extract_html_content
|
| 2 |
+
from IPython.display import display, HTML
|
| 3 |
+
from llama_index.utils.workflow import draw_all_possible_flows
|
| 4 |
+
from llama_index.core.tools import FunctionTool
|
| 5 |
+
from llama_index.core.agent import FunctionCallingAgent
|
| 6 |
+
from llama_index.core import Settings
|
| 7 |
+
from llama_parse import LlamaParse
|
| 8 |
+
from llama_index.llms.groq import Groq
|
| 9 |
+
from llama_index.embeddings.huggingface import HuggingFaceEmbedding
|
| 10 |
+
from llama_index.core import (
|
| 11 |
+
VectorStoreIndex,
|
| 12 |
+
StorageContext,
|
| 13 |
+
load_index_from_storage
|
| 14 |
+
)
|
| 15 |
+
import nest_asyncio
|
| 16 |
+
from llama_index.core.workflow import (
|
| 17 |
+
StartEvent,
|
| 18 |
+
StopEvent,
|
| 19 |
+
Workflow,
|
| 20 |
+
step,
|
| 21 |
+
Event,
|
| 22 |
+
Context
|
| 23 |
+
)
|
| 24 |
+
from pathlib import Path
|
| 25 |
+
from dotenv import load_dotenv
|
| 26 |
+
import os, json
|
| 27 |
+
import asyncio
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
storage_dir = "./storage"
|
| 31 |
+
application_file = "./data/fake_application_form.pdf"
|
| 32 |
+
nest_asyncio.apply()
|
| 33 |
+
|
| 34 |
+
load_dotenv()
|
| 35 |
+
llama_cloud_api_key = os.getenv("LLAMA_CLOUD_API_KEY")
|
| 36 |
+
GROQ_API_KEY = os.getenv("GROQ_API_KEY")
|
| 37 |
+
LLAMA_CLOUD_BASE_URL = os.getenv("LLAMA_CLOUD_BASE_URL")
|
| 38 |
+
|
| 39 |
+
global_llm = Groq(api_key=GROQ_API_KEY, model="llama3-70b-8192")
|
| 40 |
+
global_embed_model = HuggingFaceEmbedding(model_name="BAAI/bge-small-en-v1.5")
|
| 41 |
+
Settings.embed_model = global_embed_model
|
| 42 |
+
|
| 43 |
+
# Parse the application form
|
| 44 |
+
parser = LlamaParse(
|
| 45 |
+
result_type="markdown",
|
| 46 |
+
content_guideline_instruction="This is a job application form. Create a list of all the fields "
|
| 47 |
+
"that need to be filled in.",
|
| 48 |
+
formatting_instruction="Return a bulleted list of the fields ONLY."
|
| 49 |
+
)
|
| 50 |
+
|
| 51 |
+
result = parser.load_data(application_file)[0]
|
| 52 |
+
#print(result.text)
|
| 53 |
+
|
| 54 |
+
# Convert the above output into a JSON object
|
| 55 |
+
raw_json = global_llm.complete(
|
| 56 |
+
f"""
|
| 57 |
+
This is a parsed form.
|
| 58 |
+
Convert it into a JSON object containing only the list
|
| 59 |
+
of fields to be filled in, in the form {{ fields: [...] }}.
|
| 60 |
+
<form>{result.text}</form>.
|
| 61 |
+
Return JSON ONLY, no markdown."""
|
| 62 |
+
)
|
| 63 |
+
|
| 64 |
+
# print ou the fields one by one
|
| 65 |
+
fields = json.loads(raw_json.text)["fields"]
|
| 66 |
+
for field in fields:
|
| 67 |
+
print(field)
|
storage/default__vector_store.json
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
{"embedding_dict": {"949fb843-d2e1-4df7-858d-6ea740348615": [-0.020423749461770058, 0.00410477863624692, -0.03959893807768822, -0.027569523081183434, -0.02744361013174057, -0.041709963232278824, -0.020953059196472168, 0.0424102321267128, 0.0070471628569066525, 0.03129240870475769, 0.009148924611508846, -0.06779246777296066, 0.01039735134691, -0.029072396457195282, 0.02673731930553913, 0.04951454699039459, -0.010763268917798996, -0.0113962572067976, -0.010601821355521679, 0.021657392382621765, 0.009539928287267685, -0.03809518367052078, -0.012542372569441795, -0.013446645811200142, 0.019652241840958595, 0.008892602287232876, -0.03134826198220253, -0.031112223863601685, 0.01763404719531536, -0.1772795468568802, -0.036278728395700455, 0.01820453628897667, 0.054610904306173325, -0.021267928183078766, 0.05088735371828079, -0.037977807223796844, 0.034602317959070206, -0.010789809748530388, -0.050366051495075226, -0.011662923730909824, -0.03032693825662136, -0.002638117643073201, 0.003832531627267599, 0.02067975327372551, -0.00795040000230074, -0.035482652485370636, -0.001285213278606534, -0.004110515583306551, -0.06809874624013901, -0.004148754756897688, -0.041867952793836594, -0.06540362536907196, -0.037066325545310974, 0.03563074395060539, 0.01872185803949833, 0.015004496090114117, 0.026009101420640945, 0.012490692548453808, -0.02907627820968628, 0.05924493446946144, 0.030421875417232513, -0.01509262528270483, -0.11066746711730957, 0.05097777396440506, 0.062401339411735535, 0.09266693145036697, -0.01502771582454443, -0.06289611011743546, -0.015988726168870926, 0.03495841845870018, 0.002465705620124936, 0.012939674779772758, -0.02670181728899479, 0.042300429195165634, 0.03615913540124893, 0.016131117939949036, 0.0963212326169014, 0.015922971069812775, 0.01197795756161213, 0.0269565898925066, -0.005713308695703745, -0.08395648002624512, -0.00907319039106369, 0.032065410166978836, 0.01700935885310173, 0.008160727098584175, -0.027379468083381653, 0.029870634898543358, 0.03720197081565857, 0.04909859225153923, 0.02195289544761181, 0.018105708062648773, 0.03980959206819534, -0.019042866304516792, -0.03645585849881172, -0.002377524506300688, 0.022363385185599327, 0.04551755636930466, 0.0015804496360942721, 0.4498453140258789, -0.04338901489973068, -0.020658569410443306, -0.0295588206499815, -0.03287849575281143, 0.027398400008678436, 0.008231702260673046, 0.03658454120159149, -0.000939337769523263, 0.026301635429263115, 0.008547990582883358, -0.03691079467535019, -0.031019559130072594, 0.061091769486665726, -0.028558984398841858, 0.013133954256772995, -0.005849332083016634, -0.0030317725613713264, 0.03242901340126991, 0.009456201456487179, -0.005154249724000692, 0.04757615551352501, 0.06765532493591309, 0.042317166924476624, -0.05858435109257698, -0.004576721228659153, 0.049311697483062744, 0.0011206739582121372, 0.0597059540450573, -0.005417617503553629, 0.12684544920921326, 0.024989938363432884, 0.04078371450304985, 0.017335200682282448, -0.00644930312409997, -0.004308067727833986, -0.016597235575318336, -0.07727187871932983, -0.06686728447675705, -0.028145743533968925, 0.08646252751350403, -0.055703241378068924, 0.02281826362013817, -0.02410641312599182, -0.023507876321673393, -0.023843377828598022, 0.041310034692287445, 0.0317242294549942, 0.012662828899919987, 0.02080390602350235, 0.00846031028777361, 0.014472910203039646, 0.04123539477586746, -0.006300431210547686, -0.04311465099453926, -0.0026084440760314465, 0.02936951071023941, 0.00952248927205801, -0.004472213797271252, -0.07129170745611191, 0.01823875866830349, -0.01865188218653202, -0.012867280282080173, 0.026158545166254044, 0.01858024299144745, 0.008625590242445469, -0.14799438416957855, 0.020847884938120842, 0.030502693727612495, 0.03386717289686203, -0.06337320059537888, -0.02237853594124317, -0.015859905630350113, -0.06203273683786392, -0.06025172024965286, 0.04790010303258896, -0.02977094240486622, -0.02982066012918949, -0.003482510568574071, 0.007860020734369755, 0.003976714797317982, -0.006124473642557859, 0.03245169296860695, 0.0009277199278585613, 0.04408995434641838, -0.02023613452911377, -0.06041561812162399, 0.02159396931529045, 0.012034798040986061, -0.015649905428290367, -0.020107805728912354, -0.06760213524103165, 0.03311021625995636, -0.035620469599962234, 0.02295125275850296, 0.048563580960035324, -0.006613114848732948, 0.0816645547747612, -0.06650641560554504, 0.01067241933196783, -0.011992820538580418, 0.10618086159229279, 0.06758811324834824, -0.022925280034542084, 0.016161292791366577, -0.032337650656700134, -0.011678492650389671, 0.026034345850348473, 0.0465838797390461, 0.061940938234329224, 0.022977396845817566, -0.01563957706093788, -0.0013291555223986506, 0.02159111388027668, 0.0344565324485302, 0.03567863628268242, -0.06408921629190445, 0.006175400223582983, 0.024620013311505318, 0.007413909770548344, 0.023988472297787666, 0.017263639718294144, 0.009375846944749355, -0.07514318078756332, -0.2994374930858612, 0.0032298481091856956, -0.01882956735789776, -0.0008250133832916617, -0.0563361756503582, -0.012800078839063644, 0.03152719512581825, -0.000800585316028446, -0.003814669558778405, 0.049737926572561264, 0.08072611689567566, 0.0490516796708107, 0.053099676966667175, -0.066283218562603, 0.013114342465996742, -0.028616374358534813, 0.059143729507923126, -0.037646785378456116, -0.013914422132074833, -0.030098872259259224, 0.03961369767785072, -0.02091013267636299, 0.00776439905166626, -0.1295919120311737, 0.04042470455169678, -0.01813306286931038, 0.09676332026720047, 0.06959429383277893, -0.04589959233999252, -0.09575694799423218, -0.005863768048584461, -0.045767247676849365, 0.03254956752061844, -0.13041146099567413, 0.059330739080905914, 0.0025037892628461123, 0.032470811158418655, -0.02961512841284275, 0.009274769574403763, 0.041754961013793945, -0.015049168840050697, 0.010986804030835629, -0.03859458863735199, -0.053780682384967804, -0.0014185786712914705, -0.047871772199869156, -0.03475818410515785, -0.08581393957138062, -0.023583093658089638, 0.01952718012034893, -0.017033753916621208, -0.0050774309784173965, 0.012300482951104641, 0.017442423850297928, -0.04722842201590538, -0.006174788344651461, 0.00458670174703002, 0.021127276122570038, -0.011262929998338223, -0.010686388239264488, -0.03178451955318451, -0.03218111768364906, -0.018160656094551086, 0.001149826915934682, -0.01978180930018425, -0.0007407140219584107, 0.02340368926525116, -0.045553985983133316, 0.008827767334878445, -0.07911369204521179, -0.041971202939748764, 0.059493839740753174, -0.008084083907306194, -0.004048218484967947, 0.04016747325658798, 0.0026171167846769094, 0.018847033381462097, 0.0007799767190590501, 0.009726558811962605, 0.03453671559691429, 0.005263587459921837, -0.03991551324725151, 0.06573418527841568, 0.05593233183026314, 0.03172401338815689, 0.03821314498782158, 0.06725562363862991, -0.0034097798634320498, -0.031564537435770035, 0.03133765980601311, -0.01812797784805298, 0.016283512115478516, -0.061753325164318085, -0.059131212532520294, 0.0010721199214458466, 0.0024194156285375357, -0.2349187582731247, 0.019512834027409554, 0.014799099415540695, -0.04524233564734459, 0.00370545475743711, 0.007880056276917458, 0.041399016976356506, -0.015890346840023994, -0.020128628239035606, -0.0014705038629472256, -0.0039368886500597, 0.03356924653053284, 0.08662919700145721, 0.0029673136305063963, 0.05075853317975998, 0.04066026583313942, 0.04435833543539047, 0.03100826032459736, 0.029977036640048027, 0.009859045036137104, 0.04252171888947487, 0.018138939514756203, 0.1668182611465454, -0.021056486293673515, 0.025080040097236633, 0.02269195206463337, -0.00422894861549139, 0.0056631481274962425, 0.05249670520424843, 0.007824722677469254, -0.021112345159053802, -0.053076546639204025, 0.010038626380264759, 0.007573668844997883, -0.06068864464759827, -0.01129821315407753, -0.0040957750752568245, -0.031704410910606384, -0.024347610771656036, 0.025526169687509537, 0.09941771626472473, -0.010778024792671204, 0.03743874281644821, -0.007443481124937534, 0.07126263529062271, -0.04638288915157318, -0.07363323122262955, -0.07404593378305435, -0.004670256748795509, -0.029621200636029243, -0.05455372482538223, -0.04815134406089783, 0.004863479640334845, -0.013309670612215996, -0.023167084902524948, 0.05597292259335518, 0.0035438265185803175, -0.034332871437072754, -0.10126355290412903, -0.029351120814681053, -0.0036261137574911118, -0.01363946683704853, 0.020965101197361946, 0.0508677177131176, 0.026757536455988884], "eda5445f-43af-4348-a05b-a7c16f03cc4c": [-0.069781593978405, -0.013873922638595104, -0.006308151874691248, -0.06538788974285126, 0.023965971544384956, -0.003410632722079754, -0.04852736368775368, 0.0469718798995018, 0.006770620588213205, 0.018033456057310104, 0.0016102808294817805, -0.06243492662906647, -0.0007300369325093925, -0.010014286264777184, 0.06133260950446129, 0.05953250452876091, -0.025107717141509056, -0.033459488302469254, -0.004971526097506285, 0.002171438420191407, -0.0393802672624588, 0.0007621749537065625, 0.008513989858329296, -0.06879079341888428, 0.026111818850040436, 0.012525085359811783, 0.004889010451734066, -0.08196038007736206, -0.0077954428270459175, -0.1416730135679245, 0.017641248181462288, 0.029656557366251945, 0.029647106304764748, -0.01787773333489895, 0.029504533857107162, 0.03369882330298424, 6.177310569910333e-05, -0.00930225383490324, -0.001604773453436792, -0.024071821942925453, -0.015807567164301872, 0.013942889869213104, -0.012890560552477837, 0.043240923434495926, 0.011878915131092072, -0.06749359518289566, -0.016515662893652916, -0.021756354719400406, -0.08532699942588806, 0.000986779574304819, 0.009436802007257938, -0.06583008915185928, -0.047803282737731934, 0.015868881717324257, 0.03818907216191292, 0.008253577165305614, 0.031918928027153015, 0.02518889494240284, 0.01517234742641449, 0.04970960691571236, 0.05620546638965607, -0.05201468616724014, -0.18630501627922058, 0.07128170877695084, 0.04442593455314636, 0.04756423085927963, -0.012913192622363567, -0.09521473199129105, 0.015558892861008644, -0.006049163639545441, 0.0317641906440258, -0.01583714224398136, 0.03159784898161888, 0.06532072275876999, 0.043180983513593674, 0.02602476440370083, 0.023268334567546844, 0.04657715931534767, 0.03648393601179123, -0.03993532061576843, 0.010314417071640491, -0.04638480395078659, 0.008401170372962952, 0.017940092831850052, -0.016378171741962433, -0.00954380352050066, -0.014447706751525402, 0.0029935480561107397, -0.0010364240733906627, 0.03985007852315903, -0.02712932974100113, 0.008105253800749779, 0.02456553466618061, -0.030565867200493813, -0.03654484823346138, 0.019585879519581795, -0.0015403900761157274, 0.005927133373916149, -0.05007694661617279, 0.42199617624282837, -0.02770966850221157, -0.012174634262919426, -0.01653645932674408, -0.0002654017589520663, 0.05297181010246277, -0.0003831910144072026, 0.060913730412721634, -0.012132181786000729, 0.005837585311383009, 0.02714100107550621, -0.021498193964362144, 0.002188536338508129, 0.09152457118034363, -0.058788564056158066, -0.008630559779703617, 0.003191881813108921, 0.02527552656829357, 0.017854558303952217, 0.021934861317276955, 0.006601930595934391, 0.0406033881008625, 0.046544209122657776, 0.03250766918063164, -0.02818894572556019, -0.012139401398599148, 0.05342886596918106, -0.014505136758089066, 0.06295791268348694, -0.00690750777721405, 0.059016212821006775, 0.01977587677538395, 0.10214836895465851, -0.011413550935685635, 0.0014139721170067787, -0.000973717775195837, -0.015514547005295753, -0.07561034709215164, -0.037787824869155884, -0.026380861178040504, 0.05931389704346657, -0.015194352716207504, 0.04945690184831619, 0.04560018703341484, -0.07369445264339447, 0.00021131077664904296, 0.059015292674303055, 0.025138171389698982, 0.01251013670116663, 0.022634319961071014, -0.013581326231360435, 0.017987264320254326, 0.07463161647319794, -0.015886882320046425, -0.03973817080259323, -0.03572045639157295, -0.01144353672862053, -0.009288672357797623, 0.035734519362449646, -0.050477027893066406, -0.020965494215488434, -0.05377501621842384, 0.0014880480011925101, -0.01061150524765253, 0.056961048394441605, 0.025627126917243004, -0.15735861659049988, 0.03734267130494118, 0.0923972949385643, 0.026839032769203186, -0.010501649230718613, -0.013094400987029076, 0.018079319968819618, -0.01788272336125374, -0.04915109649300575, 0.0325072705745697, -0.053460508584976196, -0.014429098926484585, 0.039371270686388016, 0.02216084860265255, 0.01753970980644226, 0.03901059925556183, 0.00533848674967885, -0.03359692171216011, 0.05370952934026718, -0.04163926839828491, -0.0470522977411747, 0.0188149381428957, -0.022638214752078056, -0.018590522930026054, 0.013807384297251701, 0.0011207663919776678, 0.03707128390669823, -0.11434775590896606, 0.03692750632762909, 0.05570210516452789, 0.01429258193820715, 0.028005268424749374, -0.05581441894173622, 0.06873339414596558, -0.01708086207509041, 0.05033847317099571, 0.045997679233551025, -0.009064671583473682, 0.02831646241247654, -0.0754011794924736, -0.03974785655736923, 0.025340601801872253, -0.001423622015863657, 0.03690798208117485, 0.014626666903495789, -0.012419534847140312, -0.019043851643800735, 0.030288804322481155, 0.01834404282271862, 0.02311239019036293, -0.034652117639780045, 0.0024197574239224195, 0.059800077229738235, 0.00045599188888445497, 0.06548478454351425, -0.018267180770635605, 0.04086969047784805, -0.04895542934536934, -0.3304947316646576, 0.006728538312017918, -0.0110640162602067, -0.028767479583621025, -0.03638773784041405, -0.02484002336859703, 0.013707608915865421, -0.03481480851769447, 0.07064148783683777, 0.010682215914130211, 0.0435052253305912, 0.0679481104016304, 0.018660778179764748, -0.04766044393181801, 0.027642928063869476, -0.021628480404615402, 0.04845377802848816, -0.001046566292643547, -0.014025558717548847, -0.03000771440565586, -0.01778610609471798, 0.018259579315781593, -0.03508725389838219, -0.08634727448225021, 0.04815733805298805, 0.037510912865400314, 0.06400343775749207, 0.04065418243408203, -0.022263506427407265, -0.06055065616965294, 0.02975490875542164, 0.01066263485699892, 0.04090745374560356, -0.11955887824296951, 0.01516890712082386, 0.02922329492866993, 0.046443454921245575, -0.0265754796564579, 0.008239023387432098, 0.03066891059279442, 0.00396446418017149, 0.019331766292452812, -0.0006657814956270158, -0.11225384473800659, -0.04750657454133034, -0.057980332523584366, -0.019024742767214775, -0.08096952736377716, -0.019371341913938522, -0.021077856421470642, 0.005962889175862074, -0.0014223080361261964, 0.03592289611697197, 0.007230712100863457, 0.00795462541282177, -0.0156745333224535, -0.0181796383112669, 0.007638469338417053, 0.01944405399262905, 0.03691546991467476, -0.00218405039049685, -0.038922328501939774, -0.027342677116394043, 0.03261926770210266, -0.011212572455406189, 0.019509432837367058, 0.020507430657744408, 0.003626967314630747, -0.006671955808997154, -0.14708828926086426, -0.03585341200232506, 0.044034700840711594, 0.0030476560350507498, 0.009676276706159115, -0.02058241330087185, -0.08300846070051193, -0.001045658951625228, -0.03056381829082966, 0.03300406038761139, -0.0062597026117146015, -0.056589893996715546, -0.056873124092817307, 0.026140592992305756, 0.032783474773168564, -0.01670157164335251, 0.023767543956637383, 0.05354703217744827, 0.0445016548037529, -0.00317833642475307, 0.03951619192957878, -0.034108348190784454, -0.005770612508058548, -0.04309752210974693, -0.022010816261172295, 0.039306964725255966, 0.006940542254596949, -0.22832641005516052, -0.04170854762196541, -0.0013016152661293745, -0.054145995527505875, 0.0006083007901906967, -0.013134476728737354, 0.06646665930747986, -0.06619256734848022, 0.000748049933463335, 0.012043740600347519, 0.0030860689003020525, -0.008868318051099777, 0.059267956763505936, -0.02881576307117939, 0.060163263231515884, 0.06984936445951462, 0.031175877898931503, -0.0017375423340126872, 0.0425826795399189, -0.04868241026997566, 0.0017051775939762592, 0.023723656311631203, 0.15045872330665588, -0.0354410745203495, 0.015894988551735878, 0.04738953337073326, -0.054146040230989456, -0.021877730265259743, 0.01790519803762436, 0.0025913133285939693, -0.04666030779480934, 0.005668713711202145, 0.054717421531677246, 0.007728177588433027, -0.011131559498608112, 0.015936074778437614, -0.03576522320508957, 0.00427484093233943, 0.0051941112615168095, -0.004913663957268, 0.03052656166255474, 0.014054232276976109, 0.0164832454174757, 0.03368829935789108, 0.0455629825592041, -0.0427006259560585, 0.0014872908359393477, -0.0628671869635582, -0.0053012678399682045, 0.007279928773641586, -0.009662953205406666, -0.055379752069711685, 0.03392284736037254, -0.0525670200586319, 0.052112970501184464, 0.03971678018569946, -0.008077407255768776, -0.067570261657238, -0.05841720849275589, -0.030914416536688805, 0.04750857502222061, 0.03468552604317665, 0.016000673174858093, 0.0720420852303505, 0.03261450678110123], "3e40b9dc-8ae7-4942-8453-e13255a37580": [-0.02459508180618286, -0.0027271637227386236, -0.04204753786325455, -0.053665753453969955, 0.039147987961769104, -0.04690176621079445, -3.186641333741136e-05, -0.00432047713547945, -0.04345689341425896, -0.0003290200256742537, 0.0015637135365977883, -0.08338262140750885, 0.01198857557028532, 0.006539987865835428, 0.045869678258895874, 0.03440142795443535, 0.008074712939560413, -0.010711110197007656, 0.023898787796497345, 0.018149657174944878, 0.04099419340491295, 0.003940315451472998, -0.016150139272212982, -0.06055734306573868, -0.02779461443424225, 0.05771622806787491, -0.0037091269623488188, -0.05479688197374344, -0.028767501935362816, -0.11372333019971848, -0.024679793044924736, -0.01852261833846569, 0.05908171460032463, 0.005948175676167011, 0.0264264103025198, 0.02789524383842945, 0.042078133672475815, -0.0034731081686913967, -0.06094304099678993, 0.026185810565948486, -0.014838348142802715, 0.0056037441827356815, -0.003912467509508133, 0.006370039191097021, 0.0698765367269516, -0.041123829782009125, -0.014210651628673077, -0.011969460174441338, -0.11081996560096741, -0.01138040516525507, -0.020149879157543182, -0.01371605135500431, -0.0418267697095871, 0.031664203852415085, 0.03840912878513336, 0.05192067474126816, 0.026579713448882103, 0.016409436240792274, 0.019786007702350616, -0.014399510808289051, 0.06136137992143631, 0.0016969419084489346, -0.11764462292194366, 0.05913344770669937, 0.04890760779380798, 0.07447952032089233, -0.07592634111642838, -0.05833319202065468, 0.049036841839551926, 0.019429294392466545, 0.026029523462057114, -0.02315087616443634, 0.027199124917387962, 0.04254736751317978, 0.03591358661651611, 0.047862689942121506, 0.017961900681257248, 0.011579212732613087, -0.024480240419507027, -0.05744631215929985, 0.004154340364038944, -0.007435423322021961, -0.040457624942064285, 0.040373802185058594, 0.010533218272030354, 0.009646782651543617, 0.03825629502534866, 0.05747321620583534, -0.044859569519758224, 0.06938368827104568, -0.0022208343725651503, -0.0013996110064908862, 0.10379375517368317, -0.011933967471122742, -0.011584428139030933, -0.0075948843732476234, 0.06313180178403854, 0.03327736258506775, -0.04979622736573219, 0.4250638782978058, -0.05872898921370506, 0.030495446175336838, 0.012491602450609207, -0.02030928246676922, 0.009320336394011974, -0.008324481546878815, 0.024629442021250725, -0.020826727151870728, 0.02610703371465206, -0.02824055403470993, -0.00332009163685143, 0.0038981821853667498, 0.0744379535317421, -0.0020669500809162855, 0.03194597736001015, 0.023657619953155518, -0.023850560188293457, 0.055471520870923996, -0.0004585599235724658, 0.04806596040725708, -0.0021918027196079493, 0.060781512409448624, 0.06818933039903641, -0.017204653471708298, 0.00235997186973691, 0.04493964836001396, 0.039912234991788864, 0.03846575319766998, 0.02341482602059841, 0.08625780045986176, 0.03491724282503128, 0.08091996610164642, -0.0298148225992918, 0.031154660508036613, -0.0017435571644455194, -0.008719682693481445, -0.0656084269285202, -0.016170674934983253, -0.014106372371315956, 0.11972766369581223, -0.018198035657405853, 0.06003521755337715, 0.03017125278711319, -0.10440700501203537, -0.043821658939123154, 0.011050579138100147, 0.029309341683983803, 0.012506580911576748, -0.02963162027299404, -0.012882002629339695, 0.005431013181805611, 0.07571049779653549, 0.02122918702661991, 0.0012680541258305311, -0.00017842717352323234, 0.0002888212911784649, 0.017351096495985985, -0.03245280683040619, -0.03522598370909691, -0.01391208078712225, -0.05275356024503708, 0.012058385647833347, 0.010508378967642784, 0.017179198563098907, 0.03057328797876835, -0.1985536515712738, 0.04106253758072853, -0.000972098030615598, 0.0056717065162956715, -0.04114006459712982, 0.029997363686561584, 0.030518123880028725, 0.0005079794791527092, -0.0867132619023323, 0.04323359206318855, -0.03810490667819977, -0.0252385176718235, -0.0034444970078766346, -0.002399241318926215, 0.0047459849156439304, 0.023413123562932014, 0.0008658455917611718, -0.0399860218167305, 0.004127450753003359, -0.0202129315584898, -0.037093423306941986, 0.0011048302985727787, -0.03366786614060402, 0.00410414207726717, 0.025079363957047462, -0.04955916479229927, -0.026674939319491386, -0.029941432178020477, 0.06196104362607002, -0.005754987709224224, -0.012442627921700478, 0.013490809127688408, -0.04324805364012718, 0.02122465707361698, -0.02913554385304451, 0.0578642338514328, 0.02215348742902279, -0.046844132244586945, -0.015238521620631218, -0.027660105377435684, -0.02473144605755806, -0.02573077194392681, -0.0061148726381361485, 0.047629933804273605, 0.013132111169397831, -0.009437594562768936, 0.03131081536412239, 0.025251945480704308, 0.0317230150103569, 0.0170176699757576, -0.04408138245344162, 0.026051511988043785, 0.020520225167274475, 0.036606527864933014, 0.05687052756547928, -0.04089706018567085, -0.018189534544944763, -0.0878048986196518, -0.29751816391944885, -0.03861520439386368, -0.01820439100265503, 0.04300788789987564, 0.01375926285982132, -0.013858392834663391, 0.018955878913402557, -0.025520499795675278, 0.05331750959157944, 0.06319965422153473, 0.10073326528072357, 0.03834696486592293, 0.032453298568725586, -0.03296496346592903, 0.007014884613454342, -0.01360876765102148, 0.001275549060665071, -0.040692560374736786, -0.01632518880069256, -0.03879856318235397, 0.021801317110657692, -0.02920234203338623, -0.002969310386106372, -0.1257217526435852, 0.005705258343368769, -0.011251880787312984, 0.09643805027008057, 0.04309836030006409, -0.018812768161296844, -0.054408181458711624, 0.005043653305619955, -0.006006771698594093, 0.01926831714808941, -0.12018879503011703, 0.0037672552280128, 0.02703336998820305, 0.06019825115799904, -0.015903225168585777, -0.04023586958646774, -0.0037090592086315155, -0.011600201018154621, -0.001960140187293291, -0.0029030637815594673, -0.08703784644603729, -0.029246823862195015, -0.005426168441772461, -0.044694725424051285, -0.06501496583223343, -0.020539648830890656, 0.02592363953590393, -0.007091593462973833, 0.05573863163590431, 0.027399791404604912, -0.013007656671106815, 0.009862367063760757, 0.013002891093492508, -0.02986104227602482, 0.01377869863063097, -0.04916178435087204, -0.003029577899724245, -0.025868628174066544, -0.04981478303670883, -0.02481328509747982, 0.04732359200716019, 0.005551372189074755, 0.01232007797807455, 0.011473712511360645, 0.03364542871713638, 0.018442075699567795, -0.05699446424841881, -0.0009020004654303193, 0.0944700837135315, -0.007151632569730282, 0.019515590742230415, 0.025953250005841255, -0.029873374849557877, -0.047453250735998154, -0.0036718021146953106, 0.016906974837183952, -0.002247367985546589, 0.0017183572053909302, -0.020516689866781235, 0.025646092370152473, 0.010244986042380333, -0.01492489967495203, 0.025775479152798653, 0.0616762600839138, -0.07383105903863907, 0.022650593891739845, 0.03990279138088226, 0.020007116720080376, -0.027538005262613297, -0.060655854642391205, -0.11146628111600876, 0.07253413647413254, -0.0018238578923046589, -0.24216897785663605, -0.05725044757127762, -0.004207031335681677, -0.024379421025514603, 0.0256356168538332, -0.014387154951691628, 0.06063530594110489, -0.028575662523508072, -0.002056764205917716, 0.004386635962873697, -0.04553389921784401, 0.04502780735492706, -0.004284072667360306, 0.01893712393939495, 0.05554435774683952, 0.017061656340956688, 0.011686012148857117, -0.006190766114741564, -0.0022329913917928934, 0.006693477276712656, 0.0653030127286911, -0.006394729018211365, 0.14944416284561157, -0.027011176571249962, 0.001682215603068471, 0.07649211585521698, -0.04392145201563835, 0.004398396238684654, 0.09030815213918686, -0.00901324674487114, -0.058990515768527985, -0.0027327467687427998, 0.053825657814741135, -0.024018101394176483, -0.006373172625899315, 0.02008768916130066, 0.040439702570438385, -0.007336467504501343, 0.009194009937345982, -0.07564068585634232, -0.0051545933820307255, -0.007716304622590542, 0.05438129976391792, 0.03217923268675804, 0.04263686016201973, -0.06775613874197006, -0.03516388684511185, -0.0970081090927124, -0.042143240571022034, 0.019693683832883835, -0.030054179951548576, -0.0488622710108757, -0.006975266616791487, -0.015622304752469063, -0.0048998454585671425, 0.06864845752716064, 0.018434006720781326, -0.03368890658020973, -0.050863299518823624, -0.0890837088227272, -0.010642820037901402, 0.006492000538855791, -0.005771419499069452, 0.006113579962402582, 0.03179433196783066]}, "text_id_to_ref_doc_id": {"949fb843-d2e1-4df7-858d-6ea740348615": "23e28b4b-62c3-4e17-b3a0-f830f4f1dca6", "eda5445f-43af-4348-a05b-a7c16f03cc4c": "915e49b4-52d4-4b83-8234-6eb520aa40b7", "3e40b9dc-8ae7-4942-8453-e13255a37580": "786dc0d9-dd19-4be2-8027-005b54d09842"}, "metadata_dict": {"949fb843-d2e1-4df7-858d-6ea740348615": {"_node_type": "TextNode", "document_id": "23e28b4b-62c3-4e17-b3a0-f830f4f1dca6", "doc_id": "23e28b4b-62c3-4e17-b3a0-f830f4f1dca6", "ref_doc_id": "23e28b4b-62c3-4e17-b3a0-f830f4f1dca6"}, "eda5445f-43af-4348-a05b-a7c16f03cc4c": {"_node_type": "TextNode", "document_id": "915e49b4-52d4-4b83-8234-6eb520aa40b7", "doc_id": "915e49b4-52d4-4b83-8234-6eb520aa40b7", "ref_doc_id": "915e49b4-52d4-4b83-8234-6eb520aa40b7"}, "3e40b9dc-8ae7-4942-8453-e13255a37580": {"_node_type": "TextNode", "document_id": "786dc0d9-dd19-4be2-8027-005b54d09842", "doc_id": "786dc0d9-dd19-4be2-8027-005b54d09842", "ref_doc_id": "786dc0d9-dd19-4be2-8027-005b54d09842"}}}
|
|
|
|
| 1 |
+
{"embedding_dict": {"91c98c96-747f-4252-85ee-aeb0a25a8e94": [-0.010833202861249447, 0.003552559530362487, -0.05723457410931587, -0.02316351607441902, -0.030187562108039856, -0.03306390717625618, -0.026448359712958336, 0.035489123314619064, 0.0022495242301374674, 0.03803287819027901, 0.01977158896625042, -0.050217047333717346, 0.007806713227182627, -0.03357952833175659, 0.025451168417930603, 0.053998496383428574, -0.014704631641507149, 0.007848602719604969, -0.006806501653045416, 0.026602037250995636, 0.011317660100758076, -0.03507688269019127, -0.012031958438456059, -0.007664864882826805, 0.03156352415680885, 0.01150552835315466, -0.03412175551056862, -0.028324922546744347, 0.018246127292513847, -0.1699867844581604, -0.04060913249850273, 0.01323002576828003, 0.05146702378988266, -0.022772135213017464, 0.05409794673323631, -0.052405163645744324, 0.04712435230612755, -0.01516879815608263, -0.04573247209191322, -0.010004033334553242, -0.024087630212306976, 0.012186483480036259, 0.011403320357203484, 0.03199091553688049, -0.017696911469101906, -0.03303002566099167, 0.007726616691797972, -0.00034410555963404477, -0.07639499008655548, -0.008081850595772266, -0.026090098544955254, -0.07241639494895935, -0.03593185171484947, 0.03889315947890282, 0.013065927661955357, 0.008815520443022251, 0.01967158541083336, 0.015683559700846672, -0.029102060943841934, 0.06151338666677475, 0.033720433712005615, -0.02295197732746601, -0.10192757844924927, 0.06075612083077431, 0.0573904775083065, 0.09418807178735733, -0.005790953990072012, -0.06665503233671188, -0.006929979659616947, 0.03844199329614639, 0.0015077546704560518, 0.02266647294163704, -0.028740331530570984, 0.03681420534849167, 0.041975896805524826, 0.014060037210583687, 0.10115566104650497, 0.0196726992726326, 0.01579597406089306, 0.03430682793259621, -0.009587854146957397, -0.08517336845397949, -0.004632146563380957, 0.03011523000895977, 0.01312741544097662, 0.0015936411218717694, -0.027864599600434303, 0.023007428273558617, 0.03551827743649483, 0.04878456890583038, 0.018392516300082207, 0.01920618861913681, 0.038361866027116776, -0.012571752071380615, -0.018850106745958328, 0.006856504362076521, 0.02210346981883049, 0.043362125754356384, 0.004670935217291117, 0.4127327799797058, -0.045450661331415176, -0.018379922956228256, -0.04227535054087639, -0.03556273505091667, 0.03257184475660324, 0.009495334699749947, 0.0398719348013401, 0.014710955321788788, 0.027961501851677895, 0.01651199720799923, -0.05416461452841759, -0.04197270795702934, 0.06881295144557953, -0.021096020936965942, 0.0031496870797127485, -0.03343557193875313, -0.008464465849101543, 0.03548373281955719, 0.021444499492645264, 0.009092709980905056, 0.049140043556690216, 0.0635852962732315, 0.057824164628982544, -0.06333386152982712, -0.0004042128275614232, 0.06604170799255371, -0.014111163094639778, 0.056892577558755875, -0.008403626270592213, 0.1274154782295227, 0.023205189034342766, 0.03728543967008591, 0.014587943442165852, -0.008088497444987297, -0.0028336753603070974, -0.011048869229853153, -0.08145665377378464, -0.0692964643239975, -0.036454468965530396, 0.07093723118305206, -0.06053009256720543, 0.023567426949739456, -0.015592825599014759, -0.02427261881530285, -0.028817081823945045, 0.05149497464299202, 0.026996877044439316, 0.0166555754840374, 0.007155032362788916, 0.0005050799227319658, 0.01646311767399311, 0.029341280460357666, -0.01250365935266018, -0.048426199704408646, -0.01797391287982464, 0.03298334404826164, 0.004924396984279156, -0.006106449756771326, -0.07549424469470978, 0.006449908018112183, -0.027115097269415855, -0.01693066768348217, 0.021725697442889214, 0.0330212228000164, 0.004612661898136139, -0.13969488441944122, 0.01628219522535801, 0.03128183260560036, 0.013727869838476181, -0.058761049062013626, -0.028734520077705383, -0.026868093758821487, -0.056457120925188065, -0.05615009367465973, 0.04944198578596115, -0.021696846932172775, -0.03227219358086586, 0.0005777996266260743, 0.01794782280921936, -0.008427747525274754, -0.007724966388195753, 0.031414199620485306, -0.0011177583364769816, 0.04907790198922157, -0.019816750660538673, -0.05943482369184494, 0.012834308668971062, 0.00854367483407259, -0.012871420942246914, -0.019497990608215332, -0.07321041822433472, 0.03199465945363045, -0.02963702566921711, 0.0075788418762385845, 0.052480846643447876, -0.003463445231318474, 0.08495385199785233, -0.06433761864900589, 0.010745320469141006, -0.014748594723641872, 0.10030373930931091, 0.07474800199270248, -0.022581439465284348, 0.00401464244350791, -0.03058890625834465, -0.009752114303410053, 0.027327436953783035, 0.045475974678993225, 0.05662817135453224, 0.01740540750324726, -0.01618068479001522, 0.010191311128437519, 0.015340973623096943, 0.026493020355701447, 0.036202967166900635, -0.05724560096859932, 0.002241783542558551, 0.024190757423639297, -0.008892442099750042, 0.0339965783059597, 0.021369993686676025, -0.002904316410422325, -0.07497262954711914, -0.3062879741191864, -0.0008489611209370196, -0.01718597486615181, 0.0074182674288749695, -0.050534605979919434, -0.012654652819037437, 0.029012354090809822, -0.013403919525444508, -0.020740054547786713, 0.04363014176487923, 0.09408171474933624, 0.047662507742643356, 0.04541211202740669, -0.06037064269185066, 0.015333320014178753, -0.019996462389826775, 0.06527359038591385, -0.036717552691698074, -0.0139081422239542, -0.03738871216773987, 0.04401201754808426, -0.021798191592097282, 0.010519781149923801, -0.13814178109169006, 0.058621615171432495, -0.005996387917548418, 0.09733843803405762, 0.04305002838373184, -0.04021779075264931, -0.10805661231279373, -0.009739069268107414, -0.05047672241926193, 0.026948094367980957, -0.13760773837566376, 0.05912356078624725, -0.003559634555131197, 0.03209066390991211, -0.022525284439325333, 0.00875861942768097, 0.04927150160074234, -0.02142365463078022, -0.005441525485366583, -0.03155412897467613, -0.0472961850464344, 0.009203077293932438, -0.050146736204624176, -0.013789440505206585, -0.08644277602434158, -0.018538251519203186, 0.011618949472904205, -0.015968887135386467, -0.00933737214654684, 0.009656531736254692, 0.03242269903421402, -0.05600203201174736, 0.004599939100444317, 0.010281605646014214, 0.023593436926603317, -0.014517433941364288, -0.020563360303640366, -0.029982242733240128, -0.026560766622424126, -0.01754644140601158, 0.006273679435253143, -0.01464762631803751, 0.0062590306624770164, 0.032360322773456573, -0.04585558548569679, 0.013293169438838959, -0.0768202617764473, -0.05192019045352936, 0.06557884812355042, -0.019794518128037453, 0.003014182671904564, 0.03777437284588814, 0.00827600248157978, 0.029425978660583496, 0.004643876571208239, 0.015506090596318245, 0.03078087605535984, 0.007471327669918537, -0.043477289378643036, 0.07277526706457138, 0.06944139301776886, 0.036541860550642014, 0.038031402975320816, 0.07074418663978577, -0.00011364652891643345, -0.041174110025167465, 0.018222255632281303, -0.01787543296813965, 0.022901492193341255, -0.062211133539676666, -0.05198919400572777, -0.004194522276520729, 0.008030991069972515, -0.2415895313024521, 0.028725378215312958, 0.00958376843482256, -0.043684009462594986, 0.008191256783902645, -0.00013742546434514225, 0.04099662974476814, -0.010851643979549408, -0.016140321269631386, -0.007800170686095953, 0.004052323289215565, 0.023662637919187546, 0.09702903032302856, -0.002638844307512045, 0.05117850750684738, 0.049121495336294174, 0.06897605955600739, 0.03433992713689804, 0.027464574202895164, 0.003671870566904545, 0.04970061406493187, 0.004067550878971815, 0.16410529613494873, -0.023517362773418427, 0.018320467323064804, 0.01404427271336317, -0.0007341642049141228, -0.0038466781843453646, 0.04781156778335571, 0.010716171003878117, -0.016634425148367882, -0.04945957660675049, 0.025166640058159828, 0.005680536851286888, -0.07082664221525192, -0.009099248796701431, -0.01022596936672926, -0.040199361741542816, -0.01263099443167448, 0.03081991709768772, 0.09396826475858688, -0.009776114486157894, 0.025081297382712364, -0.01981615275144577, 0.08249825239181519, -0.03677365928888321, -0.06991565972566605, -0.08557857573032379, -0.003938395529985428, -0.03424465283751488, -0.04126271232962608, -0.04560646414756775, 0.0013666156446561217, -0.018272370100021362, -0.02720787562429905, 0.04380667954683304, 0.0005171722150407732, -0.03973449021577835, -0.10696885734796524, -0.028785113245248795, -0.009998072870075703, 0.00468615023419261, 0.024065420031547546, 0.053996820002794266, 0.026358146220445633], "a14ffc58-aa00-481c-8261-b5120fa5b1d0": [-0.0697816014289856, -0.01387390960007906, -0.00630813417956233, -0.06538791954517365, 0.023965967819094658, -0.0034106564708054066, -0.048527345061302185, 0.04697185382246971, 0.006770607084035873, 0.018033437430858612, 0.0016102707013487816, -0.06243488937616348, -0.000730011728592217, -0.01001433189958334, 0.0613325871527195, 0.05953244864940643, -0.02510768547654152, -0.033459488302469254, -0.004971542861312628, 0.0021714530885219574, -0.039380237460136414, 0.0007621074328199029, 0.008513979613780975, -0.06879077851772308, 0.026111841201782227, 0.012525093741714954, 0.004889007192105055, -0.08196038752794266, -0.007795440498739481, -0.1416730135679245, 0.017641231417655945, 0.029656603932380676, 0.02964712120592594, -0.017877724021673203, 0.02950456365942955, 0.03369879722595215, 6.177880277391523e-05, -0.009302251040935516, -0.0016047898679971695, -0.024071799591183662, -0.015807611867785454, 0.01394286472350359, -0.01289056520909071, 0.04324096441268921, 0.011878927238285542, -0.06749354302883148, -0.016515644267201424, -0.021756362169981003, -0.08532701432704926, 0.000986788421869278, 0.00943674799054861, -0.0658300444483757, -0.047803305089473724, 0.015868881717324257, 0.03818907216191292, 0.008253595791757107, 0.03191889822483063, 0.025188885629177094, 0.015172361396253109, 0.04970959946513176, 0.05620545521378517, -0.05201464891433716, -0.18630503118038177, 0.07128167897462845, 0.04442594200372696, 0.04756420478224754, -0.012913203798234463, -0.09521468728780746, 0.015558883547782898, -0.006049168761819601, 0.03176417946815491, -0.015837162733078003, 0.03159784898161888, 0.0653206929564476, 0.04318099468946457, 0.026024747639894485, 0.023268328979611397, 0.04657718911767006, 0.03648393601179123, -0.03993532061576843, 0.010314399376511574, -0.0463847815990448, 0.008401150815188885, 0.01794007234275341, -0.016378214582800865, -0.00954378116875887, -0.01444768812507391, 0.002993569243699312, -0.0010364394402131438, 0.03985006734728813, -0.027129285037517548, 0.008105230517685413, 0.024565568193793297, -0.030565878376364708, -0.036544837057590485, 0.01958588697016239, -0.0015403794823214412, 0.005927111953496933, -0.05007694289088249, 0.42199620604515076, -0.027709662914276123, -0.012174641713500023, -0.01653640903532505, -0.00026536997756920755, 0.05297176167368889, -0.00038315478013828397, 0.06091373413801193, -0.012132227420806885, 0.005837573204189539, 0.027140991762280464, -0.02149815857410431, 0.0021885500755161047, 0.09152457118034363, -0.05878857895731926, -0.008630525320768356, 0.003191910218447447, 0.02527555078268051, 0.017854586243629456, 0.021934859454631805, 0.006601922679692507, 0.0406034030020237, 0.046544209122657776, 0.032507654279470444, -0.02818896248936653, -0.012139390222728252, 0.05342884734272957, -0.014505111612379551, 0.06295794248580933, -0.006907471921294928, 0.05901622772216797, 0.019775867462158203, 0.10214836150407791, -0.011413526721298695, 0.0014139949344098568, -0.00097370968433097, -0.015514533035457134, -0.07561030983924866, -0.03778780251741409, -0.026380812749266624, 0.05931388586759567, -0.015194345265626907, 0.04945690184831619, 0.04560016840696335, -0.07369446009397507, 0.00021125053171999753, 0.05901530385017395, 0.025138145312666893, 0.01251010037958622, 0.022634344175457954, -0.013581342995166779, 0.017987269908189774, 0.07463160157203674, -0.015886841341853142, -0.03973813354969025, -0.03572043776512146, -0.0114435451105237, -0.009288630448281765, 0.03573447838425636, -0.0504770465195179, -0.02096550352871418, -0.05377497151494026, 0.001488032634370029, -0.010611488483846188, 0.056961044669151306, 0.02562716417014599, -0.1573585420846939, 0.03734268248081207, 0.09239724278450012, 0.026839017868041992, -0.010501669719815254, -0.013094430789351463, 0.018079331144690514, -0.017882728949189186, -0.04915108159184456, 0.03250722959637642, -0.0534604974091053, -0.01442906353622675, 0.039371274411678314, 0.02216082252562046, 0.01753973215818405, 0.03901058807969093, 0.005338462069630623, -0.033596936613321304, 0.05370955914258957, -0.041639264672994614, -0.04705227166414261, 0.018814966082572937, -0.022638220340013504, -0.018590526655316353, 0.01380736380815506, 0.001120757544413209, 0.03707123175263405, -0.11434773355722427, 0.03692750260233879, 0.05570206046104431, 0.014292554929852486, 0.028005272150039673, -0.055814433842897415, 0.06873337179422379, -0.017080824822187424, 0.05033845826983452, 0.045997630804777145, -0.009064672514796257, 0.02831648848950863, -0.07540114969015121, -0.03974785655736923, 0.025340575724840164, -0.0014236100250855088, 0.03690796345472336, 0.01462668739259243, -0.012419535778462887, -0.019043846055865288, 0.03028879500925541, 0.01834402047097683, 0.02311236411333084, -0.03465213254094124, 0.0024197541642934084, 0.05980006605386734, 0.0004559910739772022, 0.06548477709293365, -0.018267186358571053, 0.040869686752557755, -0.04895544797182083, -0.3304947316646576, 0.0067284852266311646, -0.011063992977142334, -0.02876746840775013, -0.03638772666454315, -0.024840010330080986, 0.01370758656412363, -0.034814782440662384, 0.07064151763916016, 0.010682210326194763, 0.043505165725946426, 0.06794808059930801, 0.018660735338926315, -0.04766048118472099, 0.027642900124192238, -0.021628497168421745, 0.04845377057790756, -0.0010466058738529682, -0.014025555923581123, -0.030007723718881607, -0.01778610423207283, 0.018259568139910698, -0.03508726879954338, -0.08634725213050842, 0.04815731197595596, 0.03751091659069061, 0.0640033483505249, 0.04065420478582382, -0.02226351387798786, -0.06055064499378204, 0.029754897579550743, 0.010662615299224854, 0.04090748727321625, -0.11955887079238892, 0.015168874524533749, 0.029223306104540825, 0.04644348844885826, -0.02657550573348999, 0.00823905598372221, 0.03066887892782688, 0.0039644911885261536, 0.019331760704517365, -0.0006657447083853185, -0.11225385218858719, -0.04750657454133034, -0.057980313897132874, -0.019024744629859924, -0.08096954971551895, -0.01937132515013218, -0.021077869459986687, 0.005962882656604052, -0.0014222649624571204, 0.03592288866639137, 0.007230705115944147, 0.007954651489853859, -0.015674550086259842, -0.018179628998041153, 0.007638419512659311, 0.019444065168499947, 0.03691549971699715, -0.00218404782935977, -0.038922324776649475, -0.02734268456697464, 0.032619278877973557, -0.011212559416890144, 0.019509389996528625, 0.02050744742155075, 0.003626949619501829, -0.006672019604593515, -0.14708825945854187, -0.03585340827703476, 0.0440346822142601, 0.0030476495157927275, 0.009676235727965832, -0.02058239094913006, -0.08300839364528656, -0.0010456222807988524, -0.030563822016119957, 0.033004045486450195, -0.006259721703827381, -0.05658986419439316, -0.05687311291694641, 0.026140626519918442, 0.03278341889381409, -0.016701556742191315, 0.023767545819282532, 0.05354703217744827, 0.04450167715549469, -0.0031783112790435553, 0.03951616957783699, -0.034108344465494156, -0.005770637188106775, -0.04309753328561783, -0.022010834887623787, 0.03930694982409477, 0.0069405571557581425, -0.22832642495632172, -0.04170854389667511, -0.0013016059529036283, -0.05414596572518349, 0.0006082983454689384, -0.013134453445672989, 0.06646669656038284, -0.06619260460138321, 0.0007480483036488295, 0.012043774127960205, 0.0030860211700201035, -0.008868327364325523, 0.05926799774169922, -0.02881578728556633, 0.06016325205564499, 0.06984931975603104, 0.03117583505809307, -0.0017375334864482284, 0.042582664638757706, -0.04868239164352417, 0.0017051748000085354, 0.023723658174276352, 0.15045872330665588, -0.0354410856962204, 0.01589503511786461, 0.047389548271894455, -0.05414605513215065, -0.021877743303775787, 0.01790517196059227, 0.002591304015368223, -0.04666031524538994, 0.0056687286123633385, 0.054717402905225754, 0.007728168275207281, -0.011131568811833858, 0.015936080366373062, -0.03576522320508957, 0.004274845588952303, 0.005194108467549086, -0.004913650453090668, 0.030526550486683846, 0.014054237864911556, 0.016483284533023834, 0.033688317984342575, 0.045562971383333206, -0.04270061478018761, 0.0014872802421450615, -0.0628671944141388, -0.005301277618855238, 0.007279894780367613, -0.00966297835111618, -0.0553797148168087, 0.033922821283340454, -0.052567008882761, 0.05211295932531357, 0.039716776460409164, -0.008077381178736687, -0.06757023185491562, -0.0584171861410141, -0.030914410948753357, 0.04750855639576912, 0.03468550369143486, 0.016000645235180855, 0.0720420628786087, 0.032614514231681824], "7146b5c5-5c20-4f5d-a008-49571aa58334": [-0.02459503524005413, -0.00272715394385159, -0.04204753413796425, -0.053665753453969955, 0.039148010313510895, -0.04690176993608475, -3.1860738090472296e-05, -0.004320464562624693, -0.04345691204071045, -0.0003290127497166395, 0.001563705620355904, -0.08338268101215363, 0.011988566257059574, 0.006539969705045223, 0.04586970806121826, 0.03440140187740326, 0.008074763230979443, -0.01071108877658844, 0.023898780345916748, 0.018149681389331818, 0.040994204580783844, 0.003940289840102196, -0.016150131821632385, -0.06055736914277077, -0.02779461070895195, 0.0577162429690361, -0.0037090908735990524, -0.054796893149614334, -0.028767485171556473, -0.11372331529855728, -0.024679800495505333, -0.018522636964917183, 0.05908169969916344, 0.005948160775005817, 0.026426468044519424, 0.027895284816622734, 0.04207814112305641, -0.0034731044434010983, -0.060943059623241425, 0.026185836642980576, -0.01483834907412529, 0.005603699944913387, -0.003912475425750017, 0.0063700187020003796, 0.06987656652927399, -0.04112384095788002, -0.01421069260686636, -0.011969481594860554, -0.11081996560096741, -0.011380392126739025, -0.020149895921349525, -0.013716062530875206, -0.041826751083135605, 0.031664229929447174, 0.038409147411584854, 0.05192067474126816, 0.02657974138855934, 0.016409412026405334, 0.019785957410931587, -0.014399463310837746, 0.0613613985478878, 0.0016969681018963456, -0.11764474958181381, 0.05913342535495758, 0.04890763387084007, 0.07447953522205353, -0.07592637836933136, -0.058333203196525574, 0.04903683438897133, 0.019429322332143784, 0.02602950856089592, -0.023150891065597534, 0.027199089527130127, 0.042547356337308884, 0.035913608968257904, 0.0478626973927021, 0.01796191744506359, 0.011579176411032677, -0.024480242282152176, -0.05744631588459015, 0.004154353402554989, -0.0074354419484734535, -0.040457651019096375, 0.040373846888542175, 0.010533219203352928, 0.009646798484027386, 0.038256291300058365, 0.057473208755254745, -0.044859569519758224, 0.06938371807336807, -0.002220776630565524, -0.0013996257912367582, 0.10379376262426376, -0.011933980509638786, -0.011584432795643806, -0.00759488670155406, 0.06313181668519974, 0.033277399837970734, -0.04979624226689339, 0.4250637888908386, -0.05872900411486626, 0.030495421960949898, 0.012491636909544468, -0.02030925638973713, 0.009320381097495556, -0.008324462920427322, 0.024629434570670128, -0.020826734602451324, 0.026107029989361763, -0.02824060618877411, -0.0033200832549482584, 0.003898190800100565, 0.0744379311800003, -0.002066931687295437, 0.03194596990942955, 0.023657681420445442, -0.0238505806773901, 0.055471546947956085, -0.0004585713322740048, 0.04806598275899887, -0.0021918159909546375, 0.06078152731060982, 0.06818929314613342, -0.017204655334353447, 0.002359940903261304, 0.04493962973356247, 0.03991224989295006, 0.03846574202179909, 0.02341480180621147, 0.08625774830579758, 0.034917283803224564, 0.08091998845338821, -0.029814835637807846, 0.031154658645391464, -0.001743581728078425, -0.00871968548744917, -0.06560840457677841, -0.01617068238556385, -0.014106388203799725, 0.11972768604755402, -0.018198028206825256, 0.06003519892692566, 0.030171239748597145, -0.10440700501203537, -0.043821658939123154, 0.011050604283809662, 0.029309337958693504, 0.012506571598351002, -0.02963162213563919, -0.01288200169801712, 0.0054310159757733345, 0.0757104828953743, 0.02122919261455536, 0.0012680359650403261, -0.00017841014778241515, 0.00028880994068458676, 0.01735110394656658, -0.03245280310511589, -0.0352259986102581, -0.013912075199186802, -0.05275360494852066, 0.012058372609317303, 0.010508377104997635, 0.017179181799292564, 0.030573280528187752, -0.1985536366701126, 0.04106258973479271, -0.0009720981470309198, 0.0056717307306826115, -0.04114004597067833, 0.029997380450367928, 0.030518127605319023, 0.0005079454276710749, -0.08671329915523529, 0.04323355853557587, -0.03810490295290947, -0.025238502770662308, -0.0034445058554410934, -0.0023992520291358232, 0.004745983052998781, 0.023413140326738358, 0.0008658756851218641, -0.039986032992601395, 0.004127452615648508, -0.020212937146425247, -0.037093378603458405, 0.0011048527667298913, -0.03366786614060402, 0.0041041299700737, 0.025079388171434402, -0.04955916106700897, -0.0266749057918787, -0.029941486194729805, 0.06196103245019913, -0.005754981189966202, -0.012442630715668201, 0.013490760698914528, -0.04324803128838539, 0.02122468873858452, -0.029135527089238167, 0.057864267379045486, 0.02215348184108734, -0.04684412479400635, -0.015238534659147263, -0.027660122141242027, -0.024731464684009552, -0.02573075145483017, -0.006114847958087921, 0.04762990027666092, 0.013132159598171711, -0.009437568485736847, 0.031310830265283585, 0.025251958519220352, 0.03172296658158302, 0.01701769419014454, -0.0440814271569252, 0.026051534339785576, 0.02052024006843567, 0.03660653904080391, 0.05687049403786659, -0.040897056460380554, -0.018189528957009315, -0.0878048986196518, -0.29751822352409363, -0.038615208119153976, -0.018204422667622566, 0.043007902801036835, 0.013759275898337364, -0.013858377933502197, 0.018955912441015244, -0.02552047185599804, 0.05331750959157944, 0.06319964677095413, 0.10073322057723999, 0.03834692761301994, 0.032453298568725586, -0.03296494856476784, 0.007014862727373838, -0.013608778826892376, 0.001275584101676941, -0.04069255664944649, -0.016325149685144424, -0.03879856690764427, 0.021801307797431946, -0.029202325269579887, -0.002969322493299842, -0.1257217973470688, 0.005705259274691343, -0.011251887306571007, 0.09643805772066116, 0.04309841990470886, -0.018812788650393486, -0.05440819635987282, 0.005043641664087772, -0.006006778683513403, 0.019268330186605453, -0.12018879503011703, 0.003767297836020589, 0.02703338861465454, 0.06019827723503113, -0.01590321958065033, -0.04023585468530655, -0.003709044074639678, -0.011600200086832047, -0.0019601371604949236, -0.002903048414736986, -0.08703785389661789, -0.029246816411614418, -0.005426153540611267, -0.04469473659992218, -0.06501498818397522, -0.020539667457342148, 0.025923671200871468, -0.007091574836522341, 0.055738598108291626, 0.027399787679314613, -0.013007679022848606, 0.009862331673502922, 0.01300288550555706, -0.0298610832542181, 0.013778699561953545, -0.04916178062558174, -0.0030295702163130045, -0.025868652388453484, -0.04981481283903122, -0.024813273921608925, 0.047323644161224365, 0.005551341455429792, 0.012320080772042274, 0.011473706923425198, 0.033645451068878174, 0.018442073836922646, -0.05699450150132179, -0.0009020025609061122, 0.0944700613617897, -0.007151565980166197, 0.019515570253133774, 0.02595323696732521, -0.02987336739897728, -0.047453299164772034, -0.0036718023475259542, 0.016906946897506714, -0.002247377997264266, 0.0017183565068989992, -0.020516714081168175, 0.025646114721894264, 0.010244966484606266, -0.01492488943040371, 0.02577545866370201, 0.06167630851268768, -0.07383109629154205, 0.022650593891739845, 0.03990281745791435, 0.020007118582725525, -0.027538027614355087, -0.06065589562058449, -0.11146631836891174, 0.07253415882587433, -0.0018238630145788193, -0.24216894805431366, -0.05725045129656792, -0.004207044839859009, -0.02437943033874035, 0.025635642930865288, -0.01438713539391756, 0.06063533574342728, -0.028575625270605087, -0.0020567686296999454, 0.004386660177260637, -0.04553387686610222, 0.045027803629636765, -0.004284076392650604, 0.018937120214104652, 0.055544331669807434, 0.01706165447831154, 0.011685971170663834, -0.006190731190145016, -0.002232953440397978, 0.006693500559777021, 0.06530304253101349, -0.006394718308001757, 0.14944416284561157, -0.02701118402183056, 0.0016822247998788953, 0.07649210840463638, -0.043921440839767456, 0.004398415796458721, 0.09030820429325104, -0.00901325885206461, -0.05899050086736679, -0.002732750028371811, 0.053825657814741135, -0.02401808835566044, -0.00637316657230258, 0.0200877096503973, 0.04043968766927719, -0.00733644375577569, 0.009193996898829937, -0.07564065605401993, -0.0051546101458370686, -0.007716289721429348, 0.05438130348920822, 0.03217924386262894, 0.04263687506318092, -0.06775613874197006, -0.03516385331749916, -0.09700813889503479, -0.04214322194457054, 0.019693685695528984, -0.030054202303290367, -0.04886225238442421, -0.006975262891501188, -0.015622291713953018, -0.004899874329566956, 0.06864847242832184, 0.018434016034007072, -0.033688925206661224, -0.05086328089237213, -0.089083731174469, -0.010642810724675655, 0.006491978187114, -0.005771412048488855, 0.006113583687692881, 0.03179429844021797]}, "text_id_to_ref_doc_id": {"91c98c96-747f-4252-85ee-aeb0a25a8e94": "cc9d8436-8704-4296-96ff-18b2425417af", "a14ffc58-aa00-481c-8261-b5120fa5b1d0": "b8a90649-5538-4fc0-826c-168a50587c4b", "7146b5c5-5c20-4f5d-a008-49571aa58334": "ec090e43-ef25-4902-b24b-a080d45f07b1"}, "metadata_dict": {"91c98c96-747f-4252-85ee-aeb0a25a8e94": {"_node_type": "TextNode", "document_id": "cc9d8436-8704-4296-96ff-18b2425417af", "doc_id": "cc9d8436-8704-4296-96ff-18b2425417af", "ref_doc_id": "cc9d8436-8704-4296-96ff-18b2425417af"}, "a14ffc58-aa00-481c-8261-b5120fa5b1d0": {"_node_type": "TextNode", "document_id": "b8a90649-5538-4fc0-826c-168a50587c4b", "doc_id": "b8a90649-5538-4fc0-826c-168a50587c4b", "ref_doc_id": "b8a90649-5538-4fc0-826c-168a50587c4b"}, "7146b5c5-5c20-4f5d-a008-49571aa58334": {"_node_type": "TextNode", "document_id": "ec090e43-ef25-4902-b24b-a080d45f07b1", "doc_id": "ec090e43-ef25-4902-b24b-a080d45f07b1", "ref_doc_id": "ec090e43-ef25-4902-b24b-a080d45f07b1"}}}
|
storage/docstore.json
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
{"docstore/metadata": {"
|
|
|
|
| 1 |
+
{"docstore/metadata": {"cc9d8436-8704-4296-96ff-18b2425417af": {"doc_hash": "137681331020ba45370f85060fa7e57df067388da716943a2b1814f82d1a7aaf"}, "b8a90649-5538-4fc0-826c-168a50587c4b": {"doc_hash": "462ec5c5c45da617a23c1ba05c2ea8fdfb12232e5b2277ad17b2aa54393e610a"}, "ec090e43-ef25-4902-b24b-a080d45f07b1": {"doc_hash": "ed022f5a93cadb684fc4406cd0f8c89e891cd27ab480fe74ddc16de7b928c698"}, "91c98c96-747f-4252-85ee-aeb0a25a8e94": {"doc_hash": "d1749b9fd0ac387f090f97b52a516f23271a74a9afb93d281d05876baab03fdb", "ref_doc_id": "cc9d8436-8704-4296-96ff-18b2425417af"}, "a14ffc58-aa00-481c-8261-b5120fa5b1d0": {"doc_hash": "a33cba242c9cfef420917121ecfbd3cebcdac0922422f6231f1d12d125e0429b", "ref_doc_id": "b8a90649-5538-4fc0-826c-168a50587c4b"}, "7146b5c5-5c20-4f5d-a008-49571aa58334": {"doc_hash": "3ccf436e9b52028f19deac56f16026e88aaac1182998185346b04b2e4354cd83", "ref_doc_id": "ec090e43-ef25-4902-b24b-a080d45f07b1"}}, "docstore/data": {"91c98c96-747f-4252-85ee-aeb0a25a8e94": {"__data__": {"id_": "91c98c96-747f-4252-85ee-aeb0a25a8e94", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "cc9d8436-8704-4296-96ff-18b2425417af", "node_type": "4", "metadata": {}, "hash": "137681331020ba45370f85060fa7e57df067388da716943a2b1814f82d1a7aaf", "class_name": "RelatedNodeInfo"}}, "metadata_template": "{key}: {value}", "metadata_separator": "\n", "text": "Sarah Chen\n\nEmail: sarah.chen@email.com\n\nLinkedIn: linkedin.com/in/sarahchen\n\nFull Stack Web Developer\n\nGitHub: github.com/sarahcodes\n\nPortfolio: sarahchen.dev\n\nLocation: San Francisco, CA\n\n# Professional Summary\n\nInnovative Full Stack Web Developer with 6+ years of experience crafting scalable web applications and microservices. Specialized in React, Node.js, and cloud architecture. Proven track record of leading technical teams and implementing CI/CD pipelines that reduced deployment time by 40%. Passionate about clean code, accessibility, and mentoring junior developers.\n\n# Professional Experience\n\n# Senior Full Stack Developer\n\nTechFlow Solutions | San Francisco, CA January 2022 - Present\n\n- Architected and implemented a microservices-based e-commerce platform serving 100K+ daily users\n- Led a team of 5 developers in rebuilding the company's flagship product using React and Node.js\n- Implemented GraphQL API gateway that reduced API response times by 60%\n- Established coding standards and review processes that improved code quality by 45%\n\n# Technical Skills\n\n# Frontend:\n\n- React.js, Redux, Next.js, TypeScript\n- Vue.js, Nuxt.js\n- HTML5, CSS3, SASS/SCSS\n- Jest, React Testing Library\n- WebPack, Babel\n\n# Backend:\n\n- Node.js, Express.js\n- Python, Django\n- GraphQL, REST APIs\n- PostgreSQL, MongoDB", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 1315, "metadata_seperator": "\n", "text_template": "{metadata_str}\n\n{content}", "class_name": "TextNode"}, "__type__": "1"}, "a14ffc58-aa00-481c-8261-b5120fa5b1d0": {"__data__": {"id_": "a14ffc58-aa00-481c-8261-b5120fa5b1d0", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b8a90649-5538-4fc0-826c-168a50587c4b", "node_type": "4", "metadata": {}, "hash": "462ec5c5c45da617a23c1ba05c2ea8fdfb12232e5b2277ad17b2aa54393e610a", "class_name": "RelatedNodeInfo"}}, "metadata_template": "{key}: {value}", "metadata_separator": "\n", "text": "# Full Stack Developer\n\nInnovateSoft | Oakland, CA March 2019 - December 2021\n\n- Mentored 3 junior developers who were promoted to mid-level positions\n- Developed and maintained 10+ customer-facing applications using Vue.js and Django\n- Implemented automated testing suite that increased code coverage from 65% to 95%\n- Optimized database queries resulting in 30% faster page load times\n- Collaborated with UX team to implement accessibility features (WCAG 2.1 compliance)\n- Created documentation that reduced onboarding time for new developers by 50%\n\n# Tools & Others:\n\n- Docker, Kubernetes\n- AWS (EC2, S3, Lambda)\n- Git, GitHub Actions\n- Jenkins, CircleCI\n- Agile/Scrum methodology\n- Performance optimization\n\n# Junior Web Developer\n\nStartupHub | San Jose, CA June 2017 - February 2019\n\n- Built responsive web applications using React.js and Express.js\n- Implemented user authentication system using JWT and OAuth2.0\n- Contributed to migration of legacy PHP applications to modern JavaScript stack\n- Developed RESTful APIs consumed by mobile and web applications\n\n# Education\n\nBachelor of Science in Computer Science\n\nUniversity of California, Berkeley 2013 - 2017\n\n- GPA: 3.8/4.0\n- Minor in User Experience Design\n- President of Women in Tech Society", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 1254, "metadata_seperator": "\n", "text_template": "{metadata_str}\n\n{content}", "class_name": "TextNode"}, "__type__": "1"}, "7146b5c5-5c20-4f5d-a008-49571aa58334": {"__data__": {"id_": "7146b5c5-5c20-4f5d-a008-49571aa58334", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ec090e43-ef25-4902-b24b-a080d45f07b1", "node_type": "4", "metadata": {}, "hash": "ed022f5a93cadb684fc4406cd0f8c89e891cd27ab480fe74ddc16de7b928c698", "class_name": "RelatedNodeInfo"}}, "metadata_template": "{key}: {value}", "metadata_separator": "\n", "text": "# Projects\n\n# EcoTrack | GitHub\n\n- Built full-stack application for tracking carbon footprint using React, Node.js, and MongoDB\n- Implemented machine learning algorithm for providing personalized sustainability recommendations\n- Featured in TechCrunch's \"Top 10 Environmental Impact Apps of 2023\"\n\n# ChatFlow | Demo\n\n- Developed real-time chat application using WebSocket protocol and React\n- Implemented end-to-end encryption and message persistence\n- Serves 5000+ monthly active users\n\n# Certifications\n\n- AWS Certified Solutions Architect (2023)\n- Google Cloud Professional Developer (2022)\n- MongoDB Certified Developer (2021)\n\n# Languages\n\n- English (Native)\n- Mandarin Chinese (Fluent)\n- Spanish (Intermediate)\n\n# Interests\n\n- Open source contribution\n- Tech blogging (15K+ Medium followers)\n- Hackathon mentoring\n- Rock climbing", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 835, "metadata_seperator": "\n", "text_template": "{metadata_str}\n\n{content}", "class_name": "TextNode"}, "__type__": "1"}}, "docstore/ref_doc_info": {"cc9d8436-8704-4296-96ff-18b2425417af": {"node_ids": ["91c98c96-747f-4252-85ee-aeb0a25a8e94"], "metadata": {}}, "b8a90649-5538-4fc0-826c-168a50587c4b": {"node_ids": ["a14ffc58-aa00-481c-8261-b5120fa5b1d0"], "metadata": {}}, "ec090e43-ef25-4902-b24b-a080d45f07b1": {"node_ids": ["7146b5c5-5c20-4f5d-a008-49571aa58334"], "metadata": {}}}}
|
storage/index_store.json
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
{"index_store/data": {"
|
|
|
|
| 1 |
+
{"index_store/data": {"38555257-a541-4ca0-bb9f-74a51eab93ae": {"__type__": "vector_store", "__data__": "{\"index_id\": \"38555257-a541-4ca0-bb9f-74a51eab93ae\", \"summary\": null, \"nodes_dict\": {\"91c98c96-747f-4252-85ee-aeb0a25a8e94\": \"91c98c96-747f-4252-85ee-aeb0a25a8e94\", \"a14ffc58-aa00-481c-8261-b5120fa5b1d0\": \"a14ffc58-aa00-481c-8261-b5120fa5b1d0\", \"7146b5c5-5c20-4f5d-a008-49571aa58334\": \"7146b5c5-5c20-4f5d-a008-49571aa58334\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}}
|