assistance-engine/scratches/pseco/ingestion/Doc Ingestion/n00 ingestion notebook v2.i...

685 lines
234 KiB
Plaintext

{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"id": "0a8abbfa",
"metadata": {},
"outputs": [],
"source": [
"import os\n",
"import re\n",
"import uuid\n",
"from dataclasses import dataclass\n",
"from typing import Iterable, List, Dict, Any, Callable, Protocol\n",
"\n",
"import torch\n",
"import torch.nn.functional as F\n",
"from loguru import logger\n",
"from transformers import AutoTokenizer, AutoModel, AutoConfig\n",
"from elasticsearch import Elasticsearch\n",
"from elasticsearch.helpers import bulk\n",
"import nltk\n",
"from nltk.tokenize import sent_tokenize\n",
"nltk.download(\"punkt\", quiet=True)\n",
"\n",
"config = AutoConfig.from_pretrained(os.getenv(\"HF_EMBEDDING_MODEL_NAME\"))\n",
"embedding_dim = config.hidden_size\n",
"\n",
"es_index = os.getenv(\"ELASTICSEARCH_INDEX\")\n",
"embedding_model_name = os.getenv(\"HF_EMBEDDING_MODEL_NAME\")"
]
},
{
"cell_type": "markdown",
"id": "77f6c552",
"metadata": {},
"source": [
"### Domain model"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "c4cd2bc2",
"metadata": {},
"outputs": [],
"source": [
"@dataclass(frozen=True)\n",
"class Chunk:\n",
" doc_id: str\n",
" chunk_id: int\n",
" text: str\n",
" source: str\n",
" metadata: Dict[str, Any]"
]
},
{
"cell_type": "markdown",
"id": "5cd700bd",
"metadata": {},
"source": [
"### Utilities"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "84e834d9",
"metadata": {},
"outputs": [],
"source": [
"def clean_text(text: str) -> str:\n",
" text = text.replace(\"\\u00a0\", \" \")\n",
" text = re.sub(r\"\\s+\", \" \", text).strip()\n",
" return text"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "4ebdc5f5",
"metadata": {},
"outputs": [],
"source": [
"class ChunkingStrategy(Protocol):\n",
" def __call__(self, text: str, **kwargs) -> List[str]:\n",
" ..."
]
},
{
"cell_type": "markdown",
"id": "82209fc0",
"metadata": {},
"source": [
"### Chunking strategies"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "9f360449",
"metadata": {},
"outputs": [],
"source": [
"def fixed_size_token_chunking(\n",
" text: str,\n",
" embedding_model_name: str = embedding_model_name,\n",
" chunk_size: int = 1200,\n",
" overlap: int = 200,\n",
") -> List[str]:\n",
"\n",
" if chunk_size <= overlap:\n",
" raise ValueError(\"chunk_size must be greater than overlap\")\n",
"\n",
" tokenizer = AutoTokenizer.from_pretrained(embedding_model_name, use_fast=True)\n",
" token_ids = tokenizer.encode(text, add_special_tokens=False)\n",
"\n",
" chunks: List[str] = []\n",
" start = 0\n",
" n = len(token_ids)\n",
"\n",
" while start < n:\n",
" end = min(start + chunk_size, n)\n",
" chunk_ids = token_ids[start:end]\n",
" chunks.append(tokenizer.decode(chunk_ids, skip_special_tokens=True))\n",
"\n",
" if end == n:\n",
" break\n",
"\n",
" start = end - overlap\n",
"\n",
" return chunks\n",
"\n",
"\n",
"def semantic_chunking(\n",
" text: str,\n",
" embedding_model_name: str = embedding_model_name,\n",
" similarity_threshold: float = 0.6,\n",
" max_sentences_per_chunk: int = 12,\n",
") -> List[str]:\n",
" sentences = [s.strip() for s in sent_tokenize(text) if s.strip()]\n",
" if not sentences:\n",
" return []\n",
" logger.info(f\"Semantic chunking: {len(sentences)} sentences found\")\n",
" device = \"cuda\" if torch.cuda.is_available() else \"cpu\"\n",
"\n",
" tokenizer = AutoTokenizer.from_pretrained(embedding_model_name)\n",
" model = AutoModel.from_pretrained(embedding_model_name).to(device)\n",
" model.eval()\n",
"\n",
" with torch.no_grad():\n",
" enc = tokenizer(sentences, padding=True, truncation=True, return_tensors=\"pt\").to(device)\n",
" out = model(**enc)\n",
" mask = enc[\"attention_mask\"].unsqueeze(-1)\n",
" vecs = (out.last_hidden_state * mask).sum(1) / mask.sum(1).clamp(min=1e-9)\n",
" vecs = F.normalize(vecs, p=2, dim=1)\n",
"\n",
" chunks: List[List[str]] = [[sentences[0]]]\n",
"\n",
" for i in range(1, len(sentences)):\n",
" sim = float((vecs[i - 1] * vecs[i]).sum())\n",
" logger.info(f\"Similarity between sentence {i-1} and {i}: {sim:.4f}\")\n",
" if sim < similarity_threshold or len(chunks[-1]) >= max_sentences_per_chunk:\n",
" chunks.append([])\n",
" chunks[-1].append(sentences[i])\n",
"\n",
" return [\" \".join(chunk) for chunk in chunks if chunk]"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "bc7267d7",
"metadata": {},
"outputs": [],
"source": [
"CHUNKING_REGISTRY: Dict[str, ChunkingStrategy] = {\n",
" \"fixed\": fixed_size_token_chunking,\n",
" \"semantic\": semantic_chunking,\n",
"}"
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "87f2f70c",
"metadata": {},
"outputs": [],
"source": [
"def build_chunks(\n",
" doc_text: str,\n",
" source: str,\n",
" metadata: Dict[str, Any],\n",
" chunking_strategy: str = \"fixed\",\n",
" **chunking_kwargs,\n",
") -> List[Chunk]:\n",
"\n",
" if chunking_strategy not in CHUNKING_REGISTRY:\n",
" raise ValueError(\n",
" f\"Unknown chunking strategy '{chunking_strategy}'. \"\n",
" f\"Available: {list(CHUNKING_REGISTRY.keys())}\"\n",
" )\n",
"\n",
" doc_id = metadata.get(\"doc_id\") or str(uuid.uuid4())\n",
" cleaned = clean_text(doc_text)\n",
"\n",
" chunking_fn = CHUNKING_REGISTRY[chunking_strategy]\n",
"\n",
" parts = chunking_fn(cleaned, **chunking_kwargs)\n",
"\n",
" return [\n",
" Chunk(\n",
" doc_id=doc_id,\n",
" chunk_id=i,\n",
" text=part,\n",
" source=source,\n",
" metadata={**metadata, \"doc_id\": doc_id},\n",
" )\n",
" for i, part in enumerate(parts)\n",
" if part.strip()\n",
" ]"
]
},
{
"cell_type": "markdown",
"id": "ba5649e9",
"metadata": {},
"source": [
"### Ingestion in elasticsearch"
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "ff03c689",
"metadata": {},
"outputs": [],
"source": [
"def index_chunks(\n",
" es: Elasticsearch,\n",
" index_name: str,\n",
" chunks: List[Chunk],\n",
" embedding_model_name: str = embedding_model_name,\n",
" batch_size: int = 64,\n",
") -> None:\n",
" tokenizer = AutoTokenizer.from_pretrained(embedding_model_name)\n",
" model = AutoModel.from_pretrained(embedding_model_name)\n",
" device = \"cuda\" if torch.cuda.is_available() else \"cpu\"\n",
" model.to(device)\n",
" model.eval()\n",
" \n",
" def actions() -> Iterable[Dict[str, Any]]:\n",
" # Embed in batches for speed\n",
" for i in range(0, len(chunks), batch_size):\n",
" batch = chunks[i:i + batch_size]\n",
" texts = [c.text for c in batch]\n",
" \n",
" with torch.no_grad():\n",
" enc = tokenizer(texts, padding=True, truncation=True, return_tensors=\"pt\").to(device)\n",
" out = model(**enc)\n",
" mask = enc[\"attention_mask\"].unsqueeze(-1)\n",
" vecs = (out.last_hidden_state * mask).sum(1) / mask.sum(1).clamp(min=1e-9)\n",
" vecs = F.normalize(vecs, p=2, dim=1)\n",
" vectors = vecs.cpu().tolist()\n",
"\n",
" for c, v in zip(batch, vectors):\n",
" yield {\n",
" \"_op_type\": \"index\",\n",
" \"_index\": index_name,\n",
" \"_id\": f\"{c.doc_id}:{c.chunk_id}\",\n",
" \"_source\": {\n",
" \"doc_id\": c.doc_id,\n",
" \"chunk_id\": c.chunk_id,\n",
" \"text\": c.text,\n",
" \"source\": c.source,\n",
" \"metadata\": c.metadata,\n",
" \"embedding\": v,\n",
" },\n",
" }\n",
"\n",
" bulk(es.options(request_timeout=120), actions())"
]
},
{
"cell_type": "markdown",
"id": "11c8a650",
"metadata": {},
"source": [
"### Test"
]
},
{
"cell_type": "code",
"execution_count": 13,
"id": "739b813e",
"metadata": {},
"outputs": [],
"source": [
"mapping = {\n",
" \"settings\": {\n",
" \"index\": {\n",
" \"number_of_shards\": 1\n",
" }\n",
" },\n",
" \"mappings\": {\n",
" \"properties\": {\n",
" \"doc_id\": { \"type\": \"keyword\" },\n",
" \"chunk_id\": { \"type\": \"integer\" },\n",
" \"text\": { \"type\": \"text\" },\n",
" \"source\": { \"type\": \"keyword\" },\n",
" \"metadata\": { \"type\": \"object\", \"enabled\": True },\n",
" \"embedding\": {\n",
" \"type\": \"dense_vector\",\n",
" \"dims\": embedding_dim,\n",
" \"index\": True,\n",
" \"similarity\": \"cosine\"\n",
" }\n",
" }\n",
" }\n",
"}\n",
"\n",
"es = Elasticsearch(\n",
" os.getenv(\"ELASTICSEARCH_LOCAL_URL\"),\n",
" request_timeout=60,\n",
" max_retries=5,\n",
" retry_on_timeout=True,\n",
")\n"
]
},
{
"cell_type": "code",
"execution_count": 14,
"id": "96cf615f",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"avap-docs-test\n"
]
}
],
"source": [
"for index in es.indices.get(index=\"*\"):\n",
" print(index)"
]
},
{
"cell_type": "code",
"execution_count": 15,
"id": "6bbb736f",
"metadata": {},
"outputs": [],
"source": [
"if es.indices.exists(index=es_index):\n",
" es.indices.delete(index=es_index)"
]
},
{
"cell_type": "code",
"execution_count": 16,
"id": "44f88a82",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Index created: avap-docs-test\n"
]
}
],
"source": [
"es.indices.create(index=es_index, body=mapping)\n",
"print(\"Index created:\", es_index)"
]
},
{
"cell_type": "code",
"execution_count": 17,
"id": "0fecc480",
"metadata": {},
"outputs": [],
"source": [
"doc_text = \"\"\"The Impact of Distributed Computing on Scientific Research\n",
"\n",
"Distributed computing has profoundly transformed the way large-scale scientific research is conducted. Instead of relying on a single centralized supercomputer, it is now possible to coordinate thousands of interconnected machines that share complex tasks. This approach makes it possible to process massive volumes of data in significantly shorter periods of time.\n",
"\n",
"One of the best-known examples is genomic analysis. DNA sequencing generates enormous amounts of information that must be processed and compared. Thanks to distributed systems, researchers can analyze mutations, identify genetic patterns, and accelerate the development of personalized treatments.\n",
"\n",
"Beyond the medical field, particle physics also benefits enormously. Experiments such as those conducted at CERN produce petabytes of data that must be distributed among research centers around the world. Without this collaborative and distributed model, many discoveries would simply be unfeasible.\n",
"\n",
"Energy Limitations and Sustainability\n",
"\n",
"However, the expansion of computational infrastructure brings significant challenges. One of the most relevant is energy consumption. Modern data centers require massive amounts of electricity both to operate and to cool their equipment.\n",
"\n",
"This demand has driven research into energy efficiency, more sustainable architectures, and the use of renewable energy sources. Some technology companies are already installing data centers in colder regions to reduce cooling costs, while others are exploring AI-based solutions to optimize energy usage.\n",
"\n",
"Sustainability has become a strategic criterion, not only economically but also reputationally. Organizations that fail to properly manage their carbon footprint may face public and regulatory criticism.\n",
"\n",
"Language Models and Deep Learning\n",
"\n",
"At the same time, the development of large-scale language models has redefined contemporary artificial intelligence. These models, trained with billions or even trillions of parameters, can generate coherent text, translate languages, and solve complex problems.\n",
"\n",
"Training these systems requires extremely powerful distributed infrastructures. Data parallelism and model parallelism make it possible to divide the computational workload across multiple GPUs or specialized nodes.\n",
"\n",
"However, the inference phase presents different challenges. Although it is less intensive than training, large-scale inference — such as in public AI services — requires constant optimization to reduce latency and resource consumption.\n",
"\n",
"Chunking Techniques and Semantic Retrieval\n",
"\n",
"In retrieval-augmented generation (RAG) systems, the way information is segmented directly influences the quality of the generated responses. Length-based chunking alone can split ideas in half, affecting the coherence of the retrieved context.\n",
"\n",
"Semantic chunking, on the other hand, attempts to group text fragments that share meaning. This approach uses embeddings to measure similarity and determine where to divide the content.\n",
"\n",
"A similarity threshold that is too low may generate excessively large and heterogeneous chunks. Conversely, a threshold that is too high may produce small fragments and lose relevant context.\n",
"\n",
"Proper calibration depends on the text domain, the average paragraph length, and the embedding model used.\n",
"\n",
"Vertical Farming and the Urbanism of the Future\n",
"\n",
"Vertical farming proposes growing food in multi-level urban structures. This technique aims to reduce transportation dependency and optimize space usage in densely populated cities.\n",
"\n",
"Through hydroponic systems and automated nutrient control, plants can grow without traditional soil. Distributed sensors monitor humidity, temperature, and nutrient levels in real time.\n",
"\n",
"Moreover, integration with renewable energy allows these facilities to operate more sustainably. In some cases, agricultural buildings are architecturally designed to integrate seamlessly into the urban environment.\n",
"\n",
"Although it still faces economic challenges, vertical farming represents a potential solution for food security in megacities.\"\"\""
]
},
{
"cell_type": "code",
"execution_count": 18,
"id": "7bcf0c87",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "2ac7e2565683429bb3b6c1d7130d7022",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"tokenizer_config.json: 0.00B [00:00, ?B/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "98ff37d5570a4978b7d2c25ad3ce98fb",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"vocab.json: 0.00B [00:00, ?B/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "0b8a0c1a1f274c5aa5c100f8022b2973",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"merges.txt: 0.00B [00:00, ?B/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "97479b5674aa4445b4add3e8bd015ae1",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"tokenizer.json: 0.00B [00:00, ?B/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"Warning: You are sending unauthenticated requests to the HF Hub. Please set a HF_TOKEN to enable higher rate limits and faster downloads.\n"
]
}
],
"source": [
"chunks = build_chunks(\n",
" doc_text=doc_text,\n",
" source=\"local_demo\",\n",
" metadata={\"title\": \"Demo\", \"doc_id\": \"demo-001\"},\n",
" chunking_strategy=\"fixed\",\n",
" chunk_size=150,\n",
" overlap=25,\n",
")"
]
},
{
"cell_type": "code",
"execution_count": 19,
"id": "e716e9fb",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/home/pseco/VsCodeProjects/assistance-engine/.venv/lib/python3.12/site-packages/torch/cuda/__init__.py:184: UserWarning: CUDA initialization: The NVIDIA driver on your system is too old (found version 11040). Please update your GPU driver by downloading and installing a new version from the URL: http://www.nvidia.com/Download/index.aspx Alternatively, go to: https://pytorch.org to install a PyTorch version that has been compiled with your version of the CUDA driver. (Triggered internally at /pytorch/c10/cuda/CUDAFunctions.cpp:119.)\n",
" return torch._C._cuda_getDeviceCount() > 0\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "50ec02cf4b2247f7993d11905022f949",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"model.safetensors: 0%| | 0.00/3.09G [00:00<?, ?B/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "1b85947b96284a0e854a2d4e8437bac3",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Loading weights: 0%| | 0/338 [00:00<?, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Indexed 6 chunks into avap-docs-test.\n"
]
}
],
"source": [
"index_chunks(\n",
" es=es, index_name=es_index, chunks=chunks, embedding_model_name=embedding_model_name\n",
")\n",
"es.indices.refresh(index=es_index)\n",
"print(f\"Indexed {len(chunks)} chunks into {es_index}.\")"
]
},
{
"cell_type": "markdown",
"id": "b1ae42d2",
"metadata": {},
"source": [
"### Checking source"
]
},
{
"cell_type": "code",
"execution_count": 20,
"id": "0a113a2d",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"{'doc_id': 'demo-001', 'chunk_id': 0, 'text': 'The Impact of Distributed Computing on Scientific Research Distributed computing has profoundly transformed the way large-scale scientific research is conducted. Instead of relying on a single centralized supercomputer, it is now possible to coordinate thousands of interconnected machines that share complex tasks. This approach makes it possible to process massive volumes of data in significantly shorter periods of time. One of the best-known examples is genomic analysis. DNA sequencing generates enormous amounts of information that must be processed and compared. Thanks to distributed systems, researchers can analyze mutations, identify genetic patterns, and accelerate the development of personalized treatments. Beyond the medical field, particle physics also benefits enormously. Experiments such as those conducted at CERN produce petabytes of data that must be distributed among research centers around the world. Without this collaborative', 'source': 'local_demo', 'metadata': {'title': 'Demo', 'doc_id': 'demo-001'}, 'embedding': [0.0009129744721576571, 0.0008919865940697491, -0.005750690121203661, -0.008563071489334106, -0.005205004010349512, 0.0014586604665964842, 0.0004853456630371511, 0.0034420189913362265, 0.0017734792781993747, -0.007261820137500763, 0.006842062342911959, 0.036602932959795, 0.005960569251328707, -0.0025710202753543854, 0.0057926662266254425, -0.010913718491792679, 0.00667415838688612, 0.0010074201272800565, -0.006338351871818304, -0.0010074201272800565, 0.0036099222488701344, 0.006926013622432947, -0.0020778041798621416, -0.0009864321909844875, -0.0028333691880106926, -0.002067310269922018, 0.006590206641703844, 0.005079076625406742, 0.030390508472919464, -0.010577911511063576, 0.008982829749584198, -0.0014376725303009152, 0.0027284296229481697, 0.003106212243437767, -0.007303795777261257, -0.0013064979575574398, 0.0059185936115682125, -0.0035259705036878586, 0.01259275246411562, -0.0018154550343751907, 0.004701294004917145, -0.002298177219927311, -0.0027704054955393076, 0.0020778041798621416, 0.003819801611825824, -0.007975409738719463, -0.008395167998969555, -0.007261820137500763, 0.0015216241590678692, -0.007177868392318487, -0.0035259705036878586, -0.005372907500714064, 0.0037358496338129044, 0.006002544891089201, -0.005540810991078615, -0.004554378800094128, 0.0014481665566563606, 0.0022037315648049116, 0.005960569251328707, -0.0013642148114740849, 0.015531061217188835, 0.0040926444344222546, 0.005309943575412035, -0.010158153250813484, -0.0027913933154195547, -0.0012435342650860548, 0.008772950619459152, -0.013180413283407688, -0.003987704869359732, 0.007807506248354912, -0.010032226331532001, -0.004932161420583725, -0.0004748516948893666, -0.0157829150557518, -0.01821751520037651, -0.008940854109823704, 0.002193237654864788, 0.0017419974319636822, -0.007639603223651648, 0.003882765304297209, -0.0035469585563987494, 0.0005745443049818277, -0.004029680509120226, -0.09201104193925858, -0.004617342725396156, 0.002602502005174756, 0.006716134957969189, 0.000396146991988644, -0.012760655023157597, 0.003798813559114933, -6.493138062069193e-05, -0.004680306185036898, -0.002518550492823124, -0.0041975839994847775, -0.0013169919839128852, 0.007807506248354912, 0.0011858175275847316, -0.0037148618139326572, 0.002130273962393403, -0.0021617556922137737, 0.006464279256761074, -0.010326056741178036, -0.04533390700817108, -0.0035889341961592436, 0.005414883606135845, 0.014355736784636974, 0.002518550492823124, -0.00333707919344306, -0.0036099222488701344, -0.00407165614888072, -0.0003594181325752288, 0.006842062342911959, 0.0049111731350421906, -0.02669663354754448, 0.009780370630323887, 0.0007503181113861501, -0.003190163755789399, -4.488627382670529e-06, -0.002497562440112233, -0.0003541711485013366, 0.003295103320851922, -0.0030012724455446005, 0.0010808778461068869, 0.002539538312703371, -0.004113632254302502, 0.001951876562088728, 0.0017105155857279897, 0.0011281006736680865, -0.003903753124177456, -0.0002741547068580985, 0.003819801611825824, 0.004134620539844036, 0.0022247193846851587, -0.002560526365414262, 0.006086496636271477, -0.0012855101376771927, -0.017461949959397316, 0.0034210311714559793, 0.011417428962886333, 0.005540810991078615, 0.0027704054955393076, 0.00642230361700058, 0.0009077275171875954, 9.051040979102254e-05, -0.008101336658000946, -0.009780370630323887, 0.006590206641703844, -0.018385417759418488, 0.001238287310115993, 0.00037253557820804417, -0.006800086237490177, 0.005582786630839109, 0.005142040550708771, 0.0010598900262266397, 0.02468179538846016, -0.005540810991078615, 0.005582786630839109, -0.003316091140732169, -0.0057926662266254425, 0.004050668329000473, 0.007849481888115406, 0.004260547924786806, 0.0002518550318200141, -0.002749417442828417, -0.007261820137500763, 0.0005797913181595504, -0.003148188116028905, -0.004638330545276403, 0.010913718491792679, -0.0022666954901069403, 0.007807506248354912, -0.007387747522443533, -0.0028963331133127213, 0.004008692689239979, -0.0014271786203607917, 0.006800086237490177, 0.003190163755789399, 0.007765530608594418, 0.0036099222488701344, 0.003190163755789399, 0.009612467139959335, -0.003274115500971675, -0.001096618827432394, 0.00654823100194335, -0.0016160698141902685, 0.012676703743636608, 0.009780370630323887, -0.004869197495281696, -0.0012068053474649787, -0.004554378800094128, 0.0005063335411250591, -0.004470427054911852, -0.0011910644825547934, 0.0014796484028920531, 0.002235213527455926, -0.004008692689239979, -0.011921138502657413, -0.0030432483181357384, 0.014103882014751434, 0.0060445209965109825, -0.00050895701861009, -0.0046593183651566505, -0.0014901423128321767, 0.008479120209813118, 0.007975409738719463, -0.003924740944057703, 0.00654823100194335, 0.005876617506146431, 0.014187834225594997, 0.0028333691880106926, 0.002403116784989834, 0.004491414874792099, 0.002256201347336173, -0.0033790552988648415, -0.0022457074373960495, 0.0018679248169064522, -0.0034000431187450886, 0.011837187223136425, -0.004974137060344219, 0.016958240419626236, -0.00986432284116745, 0.003798813559114933, -0.06178843975067139, 0.0047852457500994205, -0.008269241079688072, -0.005876617506146431, -0.005330931860953569, -0.010745815001428127, -0.00629637623205781, -0.001343226875178516, 0.0036518978886306286, 0.0036309100687503815, -0.005225991830229759, 0.00417659617960453, -1.9676175725180656e-05, -0.00629637623205781, -0.003903753124177456, 0.0028963331133127213, -0.0015321181854233146, 0.005540810991078615, -0.00015347416047006845, 0.009948274120688438, -0.0028963331133127213, 0.0010389020899310708, -0.000792293983977288, 0.008898877538740635, -0.005016113165766001, -0.001626563724130392, -0.00642230361700058, 0.0018364429706707597, 0.0002925191365648061, -0.00940258800983429, 0.0038617774844169617, -0.0012907570926472545, -0.00042500538984313607, 0.024010179564356804, -0.0003882765304297209, -0.006590206641703844, 3.1973784643923864e-05, 8.591929508838803e-05, -0.00442845094949007, 0.0019413826521486044, 0.0035259705036878586, 6.591518467757851e-05, -0.0039667170494794846, -0.0013117450289428234, -0.0008552577928639948, 0.0009129744721576571, -0.0036518978886306286, 0.009276661090552807, 0.0004538637585937977, 0.0015216241590678692, 0.004386475309729576, 0.0007083422970026731, -0.009570491500198841, 0.012928558513522148, -0.002361140912398696, -0.0010598900262266397, 0.01872122474014759, -0.0004564872360788286, -0.002602502005174756, -0.005372907500714064, 0.006926013622432947, -0.007051941007375717, -0.003106212243437767, -0.00036204163916409016, -0.12156203389167786, -0.009948274120688438, 0.002361140912398696, 0.007261820137500763, 0.005309943575412035, 0.0012907570926472545, 0.009948274120688438, 0.002014840254560113, -0.0016790337394922972, -0.004512402694672346, 0.007051941007375717, -0.0006322611006908119, -0.0041975839994847775, -0.0006821074057370424, -0.0025710202753543854, -0.003190163755789399, 0.0005824147956445813, 0.0034630068112164736, -0.002476574620231986, -0.002812381135299802, 0.003127200063318014, -0.004050668329000473, -0.0006978483288548887, 0.0007030952838249505, 0.008101336658000946, -0.00041451139259152114, 0.0024136106949299574, -0.0053519196808338165, -0.0018574309069663286, 0.004281535744667053, 0.009990249760448933, -0.007765530608594418, -0.002214225474745035, -0.005372907500714064, -0.0007398242014460266, 0.00667415838688612, 0.006842062342911959, -0.0025710202753543854, -0.00617044884711504, 0.0028543572407215834, 0.0035679463762789965, 0.003924740944057703, 0.0035049826838076115, 0.0036938737612217665, 0.0013852027477696538, 0.003316091140732169, -0.00308522442355752, -0.0010808778461068869, -0.0012330403551459312, 0.04046471044421196, -0.018049610778689384, 0.0005850382731296122, -0.006002544891089201, -0.000834269798360765, -0.005876617506146431, -0.0014271786203607917, 0.0007975409389473498, 0.005414883606135845, 0.01133347675204277, 0.005750690121203661, 0.006716134957969189, -0.0059185936115682125, -0.013012509793043137, 0.0013537209015339613, 0.009486540220677853, 0.007597627118229866, -0.012508800253272057, -0.000548309413716197, 0.03861777111887932, 0.001647551660425961, -0.005876617506146431, 0.00321115180850029, 0.0028963331133127213, -0.0033580674789845943, 0.007807506248354912, 0.004491414874792099, 0.000954950402956456, -0.0004827221855521202, -0.00417659617960453, 0.0025080565828830004, 0.0022247193846851587, 0.00011084245488746092, -0.003295103320851922, 0.0017419974319636822, -0.00629637623205781, 0.009528515860438347, 0.007681578863412142, 0.0016580455703660846, 0.002623490057885647, -0.01108162198215723, 0.0024660807102918625, -0.01628662459552288, 0.004050668329000473, 0.00654823100194335, 0.0034839948639273643, -0.0012330403551459312, 0.001647551660425961, 0.00308522442355752, -0.0027704054955393076, 0.00012592751591000706, -0.002686453750357032, -4.820663161808625e-05, 7.214598008431494e-05, -0.00043549935799092054, 0.004239560104906559, -0.004869197495281696, 0.0036728859413415194, -0.004680306185036898, -0.0011333477450534701, -0.0022247193846851587, -0.0026654659304767847, 0.01880517601966858, -0.002308671362698078, 0.0009339624084532261, 0.00012920689187012613, -0.00027546644560061395, -0.010242105461657047, -0.0034839948639273643, 0.001301251002587378, -0.0002479198155924678, -0.0034420189913362265, 0.003148188116028905, 0.006086496636271477, -0.005708714481443167, 0.004491414874792099, 0.00915073323994875, 0.0003410537028685212, -0.0025920080952346325, 0.0017105155857279897, 0.004344499669969082, -0.010326056741178036, -0.004281535744667053, 0.012676703743636608, 0.0027074418030679226, 0.004386475309729576, 0.005750690121203661, -0.00629637623205781, 0.018553322181105614, 0.007723554968833923, -0.012172993272542953, 0.0039667170494794846, -0.0005588033818639815, 0.0034000431187450886, 0.002497562440112233, 0.0026759598404169083, 0.00629637623205781, 0.0021197800524532795, 0.0011281006736680865, 0.011417428962886333, -0.003819801611825824, -0.0035049826838076115, 0.0010493959998711944, 0.006380327511578798, 0.001138594700023532, 0.009234685450792313, -0.017881708219647408, 0.017545901238918304, -0.003169175935909152, 0.0003436771803535521, 0.0021617556922137737, -0.0017000215593725443, 0.010451983660459518, -0.008479120209813118, -0.001117606763727963, 0.0037148618139326572, -0.008185288868844509, 0.007219844497740269, 0.001301251002587378, 0.0043235113844275475, 0.0009864321909844875, 0.0006007791962474585, 0.003127200063318014, -0.00077130610588938, -0.007303795777261257, -0.003819801611825824, -0.006506254896521568, 0.002686453750357032, 0.0016790337394922972, -0.0017105155857279897, 0.004554378800094128, -0.021827436983585358, 0.009696418419480324, 0.0009811852360144258, -0.0017210094956681132, -3.7712667108280584e-05, 0.0007555651245638728, -0.013432269915938377, 0.003127200063318014, -0.0007345771882683039, -0.005184016190469265, -0.007303795777261257, -0.01036803238093853, -0.001201558392494917, -0.004491414874792099, 0.0015216241590678692, -0.014859447255730629, -0.002434598747640848, -0.0015740940580144525, -0.0028753450606018305, -0.0043235113844275475, 0.005750690121203661, -0.0022247193846851587, -0.006590206641703844, -0.000954950402956456, -0.012172993272542953, -0.01036803238093853, 0.0034420189913362265, 0.009612467139959335, -0.005666738376021385, -0.008185288868844509, -0.0026549717877060175, -0.0003594181325752288, 0.012928558513522148, 0.006128472741693258, -0.0007135893101803958, -0.0010546429548412561, 0.005666738376021385, 0.6259437203407288, -0.008940854109823704, -0.012424848973751068, -0.00308522442355752, -0.006967989727854729, 0.010493960231542587, 0.002172249834984541, -0.024345986545085907, -0.000813281862065196, -0.0038617774844169617, -0.003924740944057703, 0.007345771882683039, 0.00394572876393795, -0.007219844497740269, 0.0043025235645473, 0.05641552805900574, 0.0024450926575809717, 0.0008500107796862721, -0.005540810991078615, -0.0053519196808338165, -0.0033790552988648415, -0.0005561798461712897, -0.0029802846256643534, 0.014355736784636974, 0.0027913933154195547, -0.005225991830229759, 0.00203582807444036, 0.029550990089774132, -0.005058088805526495, -0.0006611194694414735, 0.008772950619459152, -0.006967989727854729, -0.007681578863412142, -0.002235213527455926, 0.019980499520897865, 0.0036518978886306286, 3.705679773702286e-05, -0.00407165614888072, -0.006967989727854729, -0.0018049611244350672, -0.0034839948639273643, -0.05171423405408859, -0.006632182281464338, -0.0002859604137483984, 0.005037100985646248, 0.0049111731350421906, -8.263993368018419e-05, 0.00032793625723570585, 0.011921138502657413, 0.01108162198215723, 0.4728158414363861, -0.0008395168697461486, 0.0036938737612217665, -0.0027074418030679226, -0.0059185936115682125, -0.0025500322226434946, 0.0019413826521486044, -0.005876617506146431, -0.0020043463446199894, 0.008059361018240452, -0.0019413826521486044, 0.0035469585563987494, 0.009612467139959335, 0.003882765304297209, 0.000834269798360765, 0.003295103320851922, 0.005834641866385937, -0.023842277005314827, -0.001993852434679866, -0.0007188362651504576, 0.00022955537133384496, 0.00629637623205781, 0.008898877538740635, 0.0005955322412773967, -0.002424104604870081, 0.0004905926180072129, 0.0023191652726382017, 1.5658955817343667e-05, -0.013264364562928677, 0.06178843975067139, 0.003777825739234686, 0.007933434098958969, 0.006128472741693258, -0.007261820137500763, 0.005582786630839109, -0.0005325684905983508, -0.05641552805900574, 0.005267967935651541, 0.0029173209331929684, -0.210886612534523, -0.008017385378479958, -0.0022457074373960495, 0.004281535744667053, 0.0016370577504858375, 0.006128472741693258, 0.000834269798360765, -0.004995124880224466, 0.0029173209331929684, -0.005225991830229759, -0.0018574309069663286, -0.003127200063318014, 0.0034420189913362265, 0.003232139628380537, 0.007597627118229866, 0.0029173209331929684, 0.002749417442828417, 0.0003987704694736749, -0.006632182281464338, -0.08999619632959366, 0.0020778041798621416, -0.0024555865675210953, -0.017965659499168396, 4.591107426676899e-05, 0.009234685450792313, 0.004050668329000473, -0.004806233569979668, 0.014775495044887066, -0.007723554968833923, -0.0010389020899310708, -0.0016580455703660846, -0.002172249834984541, -0.004932161420583725, -0.0012855101376771927, -0.012256945483386517, -0.0024450926575809717, -0.005750690121203661, 0.007303795777261257, -0.008101336658000946, 0.004008692689239979, -0.0007975409389473498, 0.10074201971292496, -0.004512402694672346, 0.0039667170494794846, -0.004281535744667053, -0.005142040550708771, -0.00022037315648049116, -0.012005089782178402, 0.0006034026737324893, -0.0008395168697461486, 0.00077130610588938, 0.008772950619459152, 0.001993852434679866, -0.005205004010349512, 0.0035889341961592436, 0.0048901853151619434, 0.005288955755531788, -0.005498834885656834, 0.010410008020699024, -0.00843714363873005, 0.004995124880224466, 0.009822346270084381, -0.007849481888115406, 0.004344499669969082, 0.0009444564348086715, 0.0006007791962474585, -0.001605575904250145, 0.0012697691563516855, -0.004281535744667053, 0.0025080565828830004, 0.0005142040317878127, -0.005142040550708771, -0.002602502005174756, 0.0019308887422084808, -0.00039090000791475177, -0.0036938737612217665, -0.001647551660425961, 0.002308671362698078, -0.00885690189898014, 0.0027284296229481697, 0.0018364429706707597, -0.0021092859096825123, 0.006128472741693258, -0.004491414874792099, 0.0025710202753543854, -0.0027074418030679226, 0.005246980115771294, 0.002812381135299802, 0.0018364429706707597, -0.004281535744667053, 0.001647551660425961, -0.0022247193846851587, -0.0019833585247397423, 0.006884037982672453, 0.002476574620231986, -0.00965444277971983, 0.0034210311714559793, -0.00835319235920906, -0.0013956966577097774, 0.0008080349070951343, -0.0037568379193544388, 0.006254400126636028, 0.004848209209740162, 0.0034420189913362265, -0.005414883606135845, 0.0009916792623698711, -0.0010126670822501183, -0.004806233569979668, 0.004932161420583725, -0.0025500322226434946, -0.0017734792781993747, 0.02165953442454338, 0.0036309100687503815, 0.0012487812200561166, -0.004134620539844036, 0.00020594395755324513, -0.0014271786203607917, -0.00915073323994875, 0.0026549717877060175, -0.0007608120795339346, -0.0018364429706707597, -0.010745815001428127, -0.0024660807102918625, 0.0020253341645002365, -0.0007503181113861501, -0.010200128890573978, -0.001647551660425961, -0.0035469585563987494, 0.009024805389344692, -0.0028543572407215834, 0.021071871742606163, 0.005037100985646248, -0.01108162198215723, -0.00667415838688612, -0.0017105155857279897, 0.0035889341961592436, -0.006884037982672453, 0.006338351871818304, 0.001888912869617343, -0.004386475309729576, 0.007639603223651648, 0.0035889341961592436, 0.0007188362651504576, 0.027368249371647835, 0.004050668329000473, -0.00022037315648049116, -0.005100064445286989, -0.003148188116028905, 0.009066781960427761, 0.0029383087530732155, -0.0012435342650860548, 0.0019413826521486044, -0.001584587967954576, 0.0036309100687503815, -0.002371635055169463, -0.008311216719448566, 0.002686453750357032, 0.005163028370589018, 0.028879377990961075, 0.00835319235920906, -0.0024660807102918625, -0.009276661090552807, -0.0078914575278759, 0.0017524913419038057, 0.006338351871818304, -0.017881708219647408, 0.008730974979698658, -0.005058088805526495, 0.004281535744667053, 0.0029802846256643534, 0.0029592968057841063, -0.0009024805622175336, 0.0040926444344222546, -0.006716134957969189, 0.0017839731881394982, 0.002130273962393403, -0.0018784189596772194, 0.0130964620038867, 0.004743270110338926, -0.01133347675204277, 0.000238737600739114, 0.006842062342911959, 0.00654823100194335, -0.001605575904250145, -0.01061988715082407, 0.004554378800094128, -0.0023926228750497103, 0.007051941007375717, 0.007681578863412142, -0.0012645222013816237, 0.0003935235145036131, 0.00835319235920906, 0.007009965367615223, 0.0034630068112164736, 0.003274115500971675, -0.009444563649594784, -0.001280263182707131, -0.0037148618139326572, 0.006086496636271477, -0.004491414874792099, 0.00010428372479509562, 0.0018154550343751907, -0.012256945483386517, -0.006590206641703844, 0.01108162198215723, -0.010032226331532001, -0.009906298480927944, -0.012005089782178402, 0.007345771882683039, -0.005184016190469265, -0.036770835518836975, 0.004260547924786806, -0.005225991830229759, 0.0026339839678257704, -0.02871147356927395, 0.00016068876720964909, -0.002277189400047064, -0.0022247193846851587, 0.01771380379796028, -0.005834641866385937, -0.0013169919839128852, -0.0008814926259219646, 0.0008814926259219646, -0.0060445209965109825, 0.004365487489849329, -0.0034000431187450886, 0.01334831677377224, 0.005708714481443167, 3.312156331958249e-05, -0.007135892752557993, -0.004827221389859915, -0.009192708879709244, -0.002277189400047064, 0.002277189400047064, 0.002476574620231986, 0.0049111731350421906, -0.006002544891089201, 0.03811406344175339, -0.0017105155857279897, 0.010158153250813484, 0.0021407678723335266, -0.019140983000397682, 0.0004328758514020592, 0.0041975839994847775, 0.0037358496338129044, 0.004155608359724283, 0.0015111302491277456, -0.0006584959919564426, -0.003169175935909152, 0.006758110597729683, -0.014355736784636974, -0.0033580674789845943, -0.0037568379193544388, 0.035763416439294815, -0.0029802846256643534, 0.0037358496338129044, -0.008521095849573612, -0.00011805705435108393, -0.003777825739234686, 0.0018364429706707597, -0.0006558725144714117, -0.011585332453250885, -0.002088298089802265, -0.001117606763727963, -0.00203582807444036, 0.012508800253272057, -0.006506254896521568, -0.001972864381968975, 0.0038617774844169617, -0.005876617506146431, 0.002476574620231986, 0.006716134957969189, 0.0028963331133127213, -0.008772950619459152, -0.0018259489443153143, 0.0013747087214142084, -0.0075136758387088776, -0.003274115500971675, -0.02720034494996071, -0.00037253557820804417, 0.0019203947158530354, -0.00010231610940536484, 0.0075136758387088776, 0.004470427054911852, -0.0013852027477696538, -0.004953149240463972, 0.0007030952838249505, 0.0043025235645473, 0.00018626778910402209, 0.002056816127151251, -0.0016160698141902685, 0.00048009867896325886, 0.0024450926575809717, 0.007639603223651648, -0.0017839731881394982, 0.001117606763727963, -0.007933434098958969, 0.0027704054955393076, 0.006967989727854729, -0.0008290227851830423, 0.0006243906100280583, 0.0010231611086055636, -0.01771380379796028, 0.0017315034056082368, -0.000792293983977288, 0.004218571819365025, -0.002686453750357032, 0.005058088805526495, -0.0018049611244350672, 0.003253127448260784, -0.018133563920855522, -0.004575366619974375, -0.03223744407296181, -0.007219844497740269, 0.0014901423128321767, 0.0013169919839128852, 0.0013169919839128852, -0.35192543268203735, 0.0033790552988648415, 0.005288955755531788, -0.006128472741693258, -0.0007345771882683039, 0.0157829150557518, 0.003882765304297209, -0.0019623704720288515, -0.0027913933154195547, -0.0005037100636400282, 0.004260547924786806, -0.0036099222488701344, -0.002172249834984541, -0.006758110597729683, -0.0006821074057370424, -0.0030432483181357384, 0.0009916792623698711, -0.005037100985646248, -0.01133347675204277, 0.005414883606135845, 0.09133943170309067, -0.00629637623205781, -0.0023821289651095867, 0.004512402694672346, 0.007177868392318487, 0.0020463222172111273, 0.006632182281464338, -0.002434598747640848, -0.0036309100687503815, -0.017126142978668213, -0.008772950619459152, 0.008227264508605003, -0.007009965367615223, -0.005121052730828524, 0.00030957182752899826, -0.008814926259219646, -0.0034420189913362265, -0.0029173209331929684, 0.0039667170494794846, -0.005100064445286989, 0.0019833585247397423, -0.004680306185036898, -0.001584587967954576, -0.0009339624084532261, 0.004869197495281696, 0.009486540220677853, -0.0018469368806108832, 0.0019203947158530354, -0.006086496636271477, 0.009990249760448933, -0.004344499669969082, 0.005456859245896339, -0.003148188116028905, 0.001647551660425961, -6.361962732626125e-05, 0.009276661090552807, 0.0008447638247162104, -0.008730974979698658, -0.01628662459552288, 0.002214225474745035, 0.005058088805526495, 0.001180570456199348, -0.0024555865675210953, -0.0034000431187450886, -0.0043235113844275475, -0.004596354439854622, -0.0012907570926472545, 0.0028333691880106926, 0.0007870470290072262, 0.004554378800094128, 0.009696418419480324, 6.296375795500353e-05, 0.0013537209015339613, 0.002403116784989834, -0.011501380242407322, 0.0012435342650860548, 0.005163028370589018, 0.008898877538740635, 0.0007608120795339346, -0.007849481888115406, 0.000954950402956456, 0.0046593183651566505, 0.00417659617960453, 0.0029802846256643534, 0.004554378800094128, 0.010032226331532001, -0.014439688995480537, -0.0013747087214142084, -0.007597627118229866, 0.013012509793043137, -0.06648973375558853, 0.0007450711564160883, -9.75610328168841e-06, 0.021827436983585358, 0.004806233569979668, -0.0005430624587461352, -0.013852027244865894, 0.00642230361700058, 0.00814331229776144, -0.016118722036480904, 0.006338351871818304, 0.0002138144482159987, -0.0018154550343751907, 0.006086496636271477, 0.0039667170494794846, -0.001626563724130392, -0.005708714481443167, 0.004995124880224466, -0.007639603223651648, 0.0261929240077734, -0.008017385378479958, 0.0034839948639273643, 0.06716134399175644, 0.0011228537186980247, -0.0023506470024585724, 0.0048901853151619434, 0.0025080565828830004, -0.012256945483386517, -0.002088298089802265, 0.004554378800094128, 0.004827221389859915, 0.011165573261678219, -0.005100064445286989, -0.0013956966577097774, -0.006590206641703844, -0.0030012724455446005, -0.001096618827432394, 0.0010389020899310708, 0.004134620539844036, -0.00013970084546599537, -0.006128472741693258, -0.0005509328912012279, -0.001888912869617343, -0.005163028370589018, -0.0013537209015339613, -0.0034420189913362265, -0.005960569251328707, -0.0006375080556608737, 0.0035469585563987494, 0.007135892752557993, -0.00843714363873005, -0.011585332453250885, -0.00442845094949007, -0.0018469368806108832, -0.003882765304297209, 0.0014481665566563606, -4.295964754419401e-05, 0.003169175935909152, 9.706913260743022e-05, 0.005246980115771294, -0.0003541711485013366, -0.011165573261678219, -0.009192708879709244, -0.013012509793043137, 0.006758110597729683, -0.0004512402811087668, 0.0027913933154195547, 0.0024555865675210953, -0.002214225474745035, -0.01133347675204277, -0.0012645222013816237, -0.00642230361700058, 0.0028753450606018305, 0.005309943575412035, -0.009444563649594784, -0.002130273962393403, 0.006506254896521568, 0.036267127841711044, -0.0019308887422084808, -0.008311216719448566, -0.00885690189898014, -0.006380327511578798, 0.002424104604870081, 0.019644692540168762, 0.00011346593964844942, -0.0005509328912012279, -0.002644477877765894, -0.006212424486875534, -0.0021827437449246645, 0.0018994067795574665, 0.0033580674789845943, -4.558313958114013e-05, -0.010913718491792679, -0.0028543572407215834, -0.014439688995480537, 0.0035049826838076115, -0.011837187223136425, -0.015531061217188835, -0.00039090000791475177, 0.0035049826838076115, -0.004113632254302502, -0.0013379799202084541, 0.005666738376021385, -0.0030432483181357384, -0.002623490057885647, 0.009066781960427761, -0.08798135817050934, 0.000954950402956456, 7.444153015967458e-05, 0.008563071489334106, 8.329581032739952e-05, 0.0019833585247397423, 0.010158153250813484, -0.0008080349070951343, 0.004806233569979668, -0.004155608359724283, 0.004155608359724283, -0.0015111302491277456, -0.002518550492823124, -0.014439688995480537, -0.0048901853151619434, 0.0130964620038867, -0.009360612370073795, -0.0035259705036878586, 0.009570491500198841, -0.0003436771803535521, 0.00019020301988348365, 0.0040926444344222546, -0.0011333477450534701, -0.011165573261678219, -0.0026339839678257704, 0.0001541300443932414, 0.006464279256761074, -0.0023296591825783253, 0.008395167998969555, -0.015195254236459732, 0.0057926662266254425, -0.0037148618139326572, -0.007387747522443533, -0.0030012724455446005, 0.003190163755789399, 0.001909900805912912, 0.005414883606135845, -0.0024660807102918625, -0.0013852027477696538, 0.002518550492823124, -0.0001587211445439607, -7.017835741862655e-05, 0.0003567946550901979, -0.00617044884711504, -0.006590206641703844, -0.0012225463287904859, -0.0018574309069663286, -0.0015321181854233146, 0.0030432483181357384, -0.009234685450792313, -0.004743270110338926, -0.008017385378479958, -7.280184945557266e-05, -0.002067310269922018, -0.007387747522443533, -0.0002675959840416908, -0.040800515562295914, -0.0025080565828830004, 0.0006217671325430274, 0.0010441490449011326, -0.005184016190469265, -0.012676703743636608, -0.0017944670980796218, -0.008563071489334106, -0.011921138502657413, 0.00654823100194335, 0.0035889341961592436, -0.003987704869359732, -0.029718894511461258, 0.003253127448260784, 0.004050668329000473, 0.00034630068694241345, 0.01284460723400116, -0.006926013622432947, 0.0014376725303009152, -0.0019203947158530354, 0.0016790337394922972, -0.00915073323994875, 0.0013379799202084541, 0.002434598747640848, -0.0013537209015339613, -0.012005089782178402, 0.0014481665566563606, 0.004470427054911852, -0.006758110597729683, -0.001626563724130392, 0.002340153092518449, -0.0020778041798621416, 0.0027704054955393076, -0.0008185288752429187, -0.0016160698141902685, 0.014271785505115986, 0.00642230361700058, 0.01011617761105299, -0.0008605047478340566, -0.0010703839361667633, -0.0015216241590678692, 0.0002964543818961829, -0.0008447638247162104, 0.007219844497740269, -0.0001331421226495877, 0.0017734792781993747, -0.0012068053474649787, -0.002172249834984541, -0.003840789431706071, 0.0060445209965109825, -0.0014691543765366077, -5.738884283346124e-05, 0.001343226875178516, -0.018553322181105614, -0.01930888555943966, -0.004386475309729576, -0.01036803238093853, -0.001909900805912912, 0.00024923155433498323, -0.0005771678406745195, 0.0036099222488701344, 0.013012509793043137, -0.001343226875178516, -0.005288955755531788, -0.0021827437449246645, 0.004554378800094128, -0.00642230361700058, -0.002298177219927311, 0.08428748697042465, -0.0010231611086055636, 0.004491414874792099, -0.0033790552988648415, -0.0008919865940697491, 0.0011858175275847316, 0.000487969140522182, -0.00032137753441929817, -0.009066781960427761, 0.0017000215593725443, 0.011753235012292862, 5.214186239754781e-05, -0.0020043463446199894, -0.00154261221177876, 0.00203582807444036, -0.0049111731350421906, 0.000335806718794629, -0.0048901853151619434, 0.009234685450792313, 0.06951199471950531, 7.378565351245925e-05, 0.0015531061217188835, 0.004848209209740162, -0.0025500322226434946, -0.005708714481443167, 0.003106212243437767, -0.0027913933154195547, 0.00042500538984313607, 0.002812381135299802, 0.0016160698141902685, -0.004953149240463972, -0.0006191436550579965, 0.004932161420583725, -0.003064236370846629, 0.004554378800094128, 0.00040926443762145936, 0.005582786630839109, 0.014355736784636974, -0.008101336658000946, -0.003148188116028905, -0.0010021731723099947, 0.003190163755789399, 0.003316091140732169, -0.15312786400318146, -0.00986432284116745, 0.0019203947158530354, -0.0036728859413415194, -0.003148188116028905, -0.008185288868844509, -0.0030432483181357384, -0.006128472741693258, 0.003253127448260784, -0.008730974979698658, 0.0037148618139326572, 0.0025080565828830004, -0.010074201971292496, -0.005750690121203661, -4.148393418290652e-05, 0.0034839948639273643, 0.0034000431187450886, 0.0036309100687503815, -0.0012855101376771927, -0.002193237654864788, -0.0027284296229481697, 0.006338351871818304, -0.0025290444027632475, 0.005960569251328707, 0.006002544891089201, 0.013180413283407688, -0.005498834885656834, -0.008227264508605003, -0.004827221389859915, 0.06682553887367249, 0.0005168275674805045, 0.00040139397606253624, 0.0059185936115682125, -0.0004197584348730743, 0.00642230361700058, -0.005498834885656834, -0.001888912869617343, -0.0026759598404169083, -0.0022457074373960495, 0.0002138144482159987, -0.0025290444027632475, -0.007597627118229866, -0.0033790552988648415, -0.0018574309069663286, -0.0007135893101803958, 0.003882765304297209, -0.002518550492823124, -0.009486540220677853, 0.0014901423128321767, 0.0004512402811087668, -0.007219844497740269, -0.00407165614888072, -8.460755634587258e-05, -0.008647022768855095, 0.0035049826838076115, -0.0012645222013816237, 0.0011648295912891626, -0.000590285228099674, 0.000954950402956456, 0.0014901423128321767, 0.003987704869359732, -0.0022457074373960495, -0.0059185936115682125, -0.0019833585247397423, 0.0001475713070249185, -0.00442845094949007, 0.0059185936115682125, -0.0023191652726382017, -0.002371635055169463, 0.005498834885656834, -0.008059361018240452, 0.026025019586086273, -0.001322238938882947, -0.002812381135299802, -0.0034210311714559793, -0.006926013622432947, -0.0157829150557518, -0.0007503181113861501, 0.0017944670980796218, 0.0013379799202084541, -0.0044494387693703175, 0.006212424486875534, 0.005540810991078615, -0.005582786630839109, 0.006086496636271477, 0.0015740940580144525, -0.0003804060397669673, -0.005414883606135845, 0.02568921446800232, 0.07051941007375717, -0.006590206641703844, 0.0017629852518439293, 0.004491414874792099, 0.0008919865940697491, 0.002518550492823124, -0.0029592968057841063, 0.00023611410870216787, -0.0025920080952346325, 0.0016790337394922972, -0.0037148618139326572, 0.0001888912811409682, 0.00048009867896325886, -0.0006584959919564426, -0.00166853959672153, -0.007723554968833923, -0.0035259705036878586, -0.005666738376021385, 0.003148188116028905, -0.0018154550343751907, -0.00021512618695851415, 0.0017629852518439293, 0.004407463129609823, 0.001238287310115993, -0.010326056741178036, -0.004932161420583725, 1.2789513675670605e-05, 0.00965444277971983, -0.0017524913419038057, -0.003987704869359732, 0.012172993272542953, 0.005666738376021385, 0.007387747522443533, -0.004260547924786806, 0.04936359077692032, -0.0021407678723335266, -0.0034630068112164736, -0.0027284296229481697, 0.004638330545276403, 0.0011490886099636555, 0.0013537209015339613, -0.004008692689239979, 0.0059185936115682125, -0.004617342725396156, 0.0013852027477696538, -0.0043235113844275475, -0.003777825739234686, 0.0021827437449246645, -0.005540810991078615, -0.002560526365414262, -0.012256945483386517, -0.00010953070886898786, 0.00154261221177876, -0.009906298480927944, 0.00017446208221372217, 0.000406640931032598, -0.005205004010349512, -0.005456859245896339, -0.005372907500714064, 0.0036099222488701344, -0.0020987919997423887, 0.0013117450289428234, 0.05272165313363075, 7.640914554940537e-05, -0.0006611194694414735, 0.0005640503368340433, -0.0008867396390996873, 0.019057031720876694, -0.004365487489849329, -0.0005325684905983508, 0.0060445209965109825, -0.004260547924786806, 0.001406190567649901, 0.0018994067795574665, 0.000671613437589258, -0.007597627118229866, 0.0007450711564160883, -0.005079076625406742, 0.001993852434679866, 0.006254400126636028, 0.0040926444344222546, -0.0006427550688385963, -0.0025500322226434946, 0.010326056741178036, 0.005372907500714064, 0.006716134957969189, 0.0013747087214142084, -0.009318636730313301, 0.0018784189596772194, 0.0028543572407215834, 0.0011071127373725176, -0.0019203947158530354, -0.0027074418030679226, -0.004848209209740162, -0.004008692689239979, -0.0011123596923425794, -0.008688999339938164, -0.016958240419626236, -0.0006663664826191962, -0.005708714481443167, 0.002602502005174756, 0.007807506248354912, -0.003882765304297209, 0.001951876562088728, 0.001993852434679866, 0.0003030130756087601, -0.003316091140732169, -0.03912148252129555, 0.002172249834984541, 0.002067310269922018, -0.03290905803442001, -0.0001219922851305455, 0.005330931860953569, 0.0017839731881394982, 0.0029173209331929684, 0.005184016190469265, -0.018133563920855522, -0.002298177219927311, 0.008898877538740635, -0.0048901853151619434, 0.007177868392318487, -0.014859447255730629, 0.0019308887422084808, 0.0017105155857279897, -0.0029173209331929684, -0.0010913718724623322, 0.0019203947158530354, 0.00040139397606253624, 0.004008692689239979, -0.0037148618139326572, 0.0013747087214142084, 0.008940854109823704, 0.0022037315648049116, 0.0017210094956681132, -0.004113632254302502, -0.005100064445286989, 0.009528515860438347, 0.0011228537186980247, 0.011249524541199207, 0.011585332453250885, -0.005666738376021385, 0.005184016190469265, 0.002560526365414262, 0.0020463222172111273, -0.00101791403722018, -0.00154261221177876, 0.0030012724455446005, 0.0057926662266254425, 0.0005771678406745195, -0.0037148618139326572, 0.00030563658219762146, -0.006338351871818304, -0.010284081101417542, 0.010200128890573978, 0.008563071489334106, 0.0002898956590797752, 0.002308671362698078, 0.004995124880224466, -0.00040401745354756713, -0.003819801611825824, 0.003819801611825824, 0.009738394990563393, 0.001322238938882947, 0.046677134931087494, 0.0014691543765366077, 0.006926013622432947, -0.0027284296229481697, 0.0014481665566563606, -0.003253127448260784, -0.002193237654864788, 0.009318636730313301, -0.004596354439854622, 0.001238287310115993, 0.00154261221177876, 0.004596354439854622]}\n",
"{'doc_id': 'demo-001', 'chunk_id': 1, 'text': ' as those conducted at CERN produce petabytes of data that must be distributed among research centers around the world. Without this collaborative and distributed model, many discoveries would simply be unfeasible. Energy Limitations and Sustainability However, the expansion of computational infrastructure brings significant challenges. One of the most relevant is energy consumption. Modern data centers require massive amounts of electricity both to operate and to cool their equipment. This demand has driven research into energy efficiency, more sustainable architectures, and the use of renewable energy sources. Some technology companies are already installing data centers in colder regions to reduce cooling costs, while others are exploring AI-based solutions to optimize energy usage. Sustainability has become a strategic criterion, not only economically but also reputationally. Organizations that fail to properly manage', 'source': 'local_demo', 'metadata': {'title': 'Demo', 'doc_id': 'demo-001'}, 'embedding': [0.0011729714460670948, 0.002204985124990344, -0.002960117068141699, -0.0023560114204883575, -0.001872727065347135, -0.0037051804829388857, 0.0004983870894648135, 0.0008558161207474768, -0.0035239486023783684, -0.00930322427302599, -0.002637927420437336, 0.0215867031365633, -0.0007249265909194946, -0.003946822602301836, -0.00023786653764545918, -0.007450634613633156, 0.007370087318122387, 0.0021345061250030994, -0.0037857277784496546, 0.002778885420411825, 0.00021143692720215768, 0.0011226293863728642, -0.002658064244315028, 3.681267844513059e-05, -0.00240635359659791, 0.0006947213551029563, 0.002315737772732973, -0.00016990466974675655, 0.018284259364008904, -0.00922267697751522, 0.0037857277784496546, -0.0005965541931800544, -0.0010370478266850114, -0.0011326977983117104, -0.0009413977386429906, 0.0010370478266850114, 0.006242423318326473, 0.00018123164772987366, 0.016431670635938644, -0.000991739914752543, 0.003221896244212985, -0.00033477513352409005, -0.003141348483040929, 0.0030205275397747755, 0.005316128488630056, -0.00555777084082365, -0.008014466613531113, -0.0004379764723125845, 0.005356402136385441, -0.005678591784089804, -0.0027386117726564407, -0.0058396863751113415, 0.002859432715922594, 0.0007400292670354247, -0.007289540022611618, -0.004550928249955177, 0.0016914954176172614, 0.0008356792968697846, 0.0027386117726564407, 0.002859432715922594, 0.015867838636040688, 0.010310067795217037, 0.00930322427302599, -0.008215835317969322, 0.004691885784268379, 0.0013491689460352063, 0.006886802613735199, -0.002658064244315028, -0.0033427171874791384, 0.011759920977056026, -0.004550928249955177, -0.005114760249853134, 0.002094232477247715, -0.008054740726947784, -0.019734112545847893, -0.009464319795370102, 0.004571064841002226, 0.005799412727355957, -0.002003616653382778, -0.0007601660909131169, 0.0017921796534210443, -5.152201993041672e-06, 0.000986705650575459, -0.09021309018135071, -0.004168327897787094, -0.004550928249955177, 0.010551709681749344, 0.005074486136436462, -0.004047506954520941, 0.00012774314382113516, 1.2782180647263885e-07, 0.005195307545363903, -0.0002831744495779276, -0.001218279474414885, -0.005799412727355957, 0.00487311789765954, 0.0009615346207283437, -0.0005260751931928098, 0.004893254488706589, 0.0005764173110947013, 0.0021546429488807917, 0.005396675784140825, -0.05219471827149391, -0.006403517909348011, -0.006202149670571089, 0.004510654602199793, 0.002235190477222204, 0.0024466272443532944, -0.008497750386595726, -0.002547311596572399, -0.0007098239730112255, -2.5485702281002887e-05, 0.002064027125015855, -0.031091297045350075, 0.010954447090625763, 0.003503811778500676, 0.0009313293267041445, 0.00374545413069427, -0.001082355622202158, 0.0014901269460096955, 0.003382990835234523, -0.0005713831051252782, 0.004913391545414925, 0.004550928249955177, 0.0039266855455935, 4.2790808947756886e-05, 0.0012736557982861996, 4.247616743668914e-05, 0.0037655909545719624, 0.0010571846505627036, 0.0021043007727712393, 0.0021043007727712393, 0.00680625531822443, 0.00010949411807814613, 0.0019432060653343797, -0.000435459369327873, -0.014095794409513474, 0.003221896244212985, 0.013531963340938091, 0.002778885420411825, 0.0011125609744340181, 0.002980253892019391, 0.00749090826138854, -0.0028191590681672096, -0.003141348483040929, -0.001983479829505086, 0.002637927420437336, -0.0153845539316535, 0.0008507819147780538, 0.009262951090931892, -0.008417203091084957, 0.005094623193144798, 0.006403517909348011, 0.0018827954772859812, 0.015223458409309387, -0.012484846636652946, 0.006524339783936739, -0.004329422488808632, -0.0012988268863409758, 0.0031212116591632366, 0.010954447090625763, 0.010310067795217037, 0.0035440854262560606, 7.960348739288747e-05, -0.007974193431437016, -0.0006192081491462886, 0.0003184139495715499, -0.0035642224829643965, 0.006242423318326473, -0.005356402136385441, 0.0022553273010998964, -0.0013793742982670665, 0.00010383063636254519, 0.004329422488808632, -0.004430107306689024, 0.010189246386289597, 0.0015908110653981566, -0.0023459428921341896, 0.006886802613735199, 0.002778885420411825, 0.0021546429488807917, -0.00461133848875761, -0.004047506954520941, 0.00412805425003171, -0.006161876022815704, 0.01804261840879917, 0.008981035090982914, -0.0015908110653981566, 0.004349560011178255, 0.003403127659112215, -0.00040273703052662313, -0.006564613431692123, -0.006363244261592627, -0.00016990466974675655, 0.004430107306689024, 0.00013340663281269372, -0.013209774158895016, -0.007088170852512121, 0.008538024500012398, -0.0009061582968570292, -0.0060007814317941666, -0.004007233306765556, 0.004571064841002226, 0.005014075431972742, -0.0014397847699001431, 0.0003096040745731443, 0.0020740956533700228, 0.0052355811931192875, 0.0064840661361813545, 0.007813097909092903, 0.001741837477311492, 0.0005915199872106314, 0.0028795695398002863, -0.005275854840874672, -0.003725317306816578, 0.006161876022815704, -0.0008054740610532463, 0.008135288022458553, -0.006524339783936739, 0.019573017954826355, -0.0004832844133488834, 0.005960507784038782, -0.05799413099884987, 0.0017217006534337997, -0.005034212488681078, -0.005920234136283398, -0.002315737772732973, -0.0052355811931192875, -0.014176341705024242, 0.0010672530625015497, 0.0007098239730112255, 0.0016210165340453386, -0.008417203091084957, 9.313293412560597e-05, -0.0014599215937778354, -0.008900487795472145, 0.00024290075816679746, 0.00012900169531349093, -0.003987096715718508, 0.005718865431845188, 0.0013391005340963602, 0.004027370363473892, -0.0007551318849436939, 0.0026782010681927204, -0.007289540022611618, 0.0049939388409256935, -0.0006846529431641102, -0.004269012250006199, -0.009383771568536758, 0.0008105082670226693, -0.0014397847699001431, -0.003503811778500676, 0.005960507784038782, -6.10398274147883e-05, -0.00040273703052662313, 0.017317689955234528, 0.001092424150556326, -0.0036649068351835012, -0.005718865431845188, -0.00487311789765954, 0.0017720427131280303, 0.008779667317867279, 0.006322970613837242, -0.007370087318122387, -0.003624633187428117, -0.003846138482913375, -0.0005688660312443972, 0.0013995111221447587, -0.004792570602148771, 0.005517497193068266, 0.0017821112414821982, 0.0009464319446124136, 0.004107917658984661, -0.000875952944625169, -0.008014466613531113, 0.012162657454609871, -0.0032420330680906773, -0.0011780057102441788, 0.007893645204603672, 0.0008457477088086307, -0.004047506954520941, -0.00555777084082365, 0.007571455556899309, -0.001001808326691389, -0.0054772235453128815, -0.0007752687088213861, -0.14240780472755432, -0.005316128488630056, -0.0005663488991558552, 0.0011326977983117104, 0.0013491689460352063, -0.0003523948835209012, 0.006161876022815704, -6.332095836114604e-06, 0.008538024500012398, -0.0005386607372201979, 0.0019029323011636734, 8.369378338102251e-05, -0.007249266374856234, -0.003080938011407852, -0.00240635359659791, -0.0015606058295816183, -0.001203176798298955, 0.001973411301150918, -0.0068465289659798145, -3.7127319956198335e-05, 0.0027990222442895174, -0.004168327897787094, 0.0025976537726819515, 0.0006393450312316418, 0.002637927420437336, -0.0003423264715820551, 0.005155033897608519, 0.0002995356626342982, -0.00017493889026809484, 0.00047573307529091835, 0.0042287386022508144, 0.0016210165340453386, 0.004107917658984661, -0.006886802613735199, 0.003080938011407852, 0.00412805425003171, 0.0016713585937395692, -0.00412805425003171, -0.0007148581789806485, 0.0030205275397747755, -0.004631475545465946, 0.0023358745966106653, 0.007853371091187, -0.00020891982421744615, -8.872799662640318e-05, -0.003302443539723754, -0.0014599215937778354, -0.0031212116591632366, -1.8956956409965642e-05, 0.04285121709108353, -0.017962070181965828, 0.000875952944625169, -0.007450634613633156, -0.007208992727100849, -0.010310067795217037, -0.0022452587727457285, -0.0036850436590611935, 0.00543694943189621, 0.012645941227674484, 0.005094623193144798, 0.003725317306816578, -0.0016411533579230309, -0.008819940499961376, -0.003322580363601446, 0.00461133848875761, 0.010390615090727806, -0.015626195818185806, 0.0023560114204883575, 0.0602494552731514, -0.005718865431845188, -0.0012887584744021297, 0.004913391545414925, -0.0042891488410532475, 0.00869912002235651, 0.014095794409513474, 0.0006317936931736767, 0.0011528346221894026, -0.002285532420501113, -0.0009212609147652984, 0.0028191590681672096, -0.0029198431875556707, 0.0006242423551157117, -0.007652002852410078, -0.002839295892044902, -0.008135288022458553, 0.004087780602276325, 0.007007623557001352, 0.004852980840951204, 0.007450634613633156, -0.013048679567873478, 0.0005185239133425057, -0.015465101227164268, 0.002527174772694707, 0.003302443539723754, 0.0028191590681672096, 0.0008356792968697846, 0.0024667640682309866, -0.0032823067158460617, 0.0036850436590611935, 0.003221896244212985, 0.005920234136283398, -0.005094623193144798, -0.002637927420437336, 0.0012283478863537312, 0.0032017589546740055, -0.0023660799488425255, 0.0008105082670226693, 0.0034434013068675995, -0.006967349909245968, -0.003141348483040929, 0.005094623193144798, 0.019975755363702774, -0.0013592373579740524, 0.0016310849459841847, 0.004832844249904156, -0.00769227696582675, -0.0049939388409256935, -0.016190027818083763, -0.0068465289659798145, -0.0010974584147334099, -0.004007233306765556, 0.004933528136461973, 0.010471162386238575, -0.005879960488528013, 0.0012988268863409758, 0.006161876022815704, 0.002778885420411825, -0.0035642224829643965, 0.003221896244212985, 0.007370087318122387, -0.0060007814317941666, -0.003946822602301836, -0.0020338220056146383, -0.0003398093394935131, 0.003644770011305809, -0.004691885784268379, -0.005718865431845188, 0.002637927420437336, -0.009383771568536758, -0.004732159897685051, 0.009504593908786774, 0.0032621698919683695, 0.0060007814317941666, 0.00035491198650561273, -0.00015606058877892792, 0.005114760249853134, 0.003906548954546452, 0.0010320135625079274, -0.0030003907158970833, -0.0039266855455935, -0.006202149670571089, -0.0020338220056146383, 0.00412805425003171, -0.0028795695398002863, 0.0039266855455935, -0.026902832090854645, 0.01884809136390686, 0.0005915199872106314, 0.001651221769861877, -0.0012585531221702695, -0.0044502438977360725, 0.010229520499706268, -0.003221896244212985, -0.002778885420411825, 0.0026782010681927204, -0.002960117068141699, 0.006363244261592627, -0.002013685181736946, 0.0013995111221447587, 0.002507037715986371, -0.0037655909545719624, 0.0006141739431768656, 0.001318963710218668, -0.00680625531822443, -0.004027370363473892, -0.004269012250006199, 0.0026177905965596437, 0.002658064244315028, -0.0068465289659798145, -0.0011780057102441788, -0.012323752045631409, 0.0012585531221702695, -0.001203176798298955, -0.002215053653344512, 0.00018500731675885618, -0.006242423318326473, -0.014015247114002705, -0.0001799730962375179, 0.0009262951207347214, -0.00837692990899086, -0.008014466613531113, -0.019814660772681236, 0.00040525413351133466, -0.00011704544158419594, 0.003483674954622984, -0.005879960488528013, -0.002778885420411825, 0.00037756594247184694, -0.003624633187428117, -0.002758748596534133, -0.000546212075278163, -0.00034736067755147815, 0.004550928249955177, 0.0028795695398002863, -0.021425608545541763, -0.008981035090982914, 0.003161485306918621, 0.0073298136703670025, -0.005195307545363903, -0.004832844249904156, -0.005014075431972742, 0.0017116322414949536, 0.00982678309082985, 0.006927076261490583, -0.003966959659010172, 0.006282696966081858, -0.0006745844730176032, 0.6237590909004211, -0.0014397847699001431, -0.004309285897761583, -0.0021244375966489315, -0.008054740726947784, -0.00024667641264386475, 0.00374545413069427, -0.004591201897710562, -0.0005965541931800544, 0.0024768325965851545, -0.0032823067158460617, 0.003221896244212985, 0.0016411533579230309, -0.0038864121306687593, -0.0004832844133488834, 0.05670536682009697, -0.0018525902414694428, 0.0054772235453128815, -0.0052355811931192875, 0.0002416422066744417, -0.0037051804829388857, -0.0036850436590611935, -0.016592765226960182, 0.012001562863588333, -0.0021345061250030994, -0.002013685181736946, 0.00555777084082365, 0.030446916818618774, -0.005356402136385441, -0.00013466518430504948, 0.006927076261490583, -0.0036850436590611935, -0.007652002852410078, -0.0016109481221064925, 0.024808598682284355, 0.0029399802442640066, 0.0014599215937778354, -0.0032823067158460617, 0.0007299607968889177, -0.004712022840976715, 0.0034635381307452917, 0.0023761484771966934, -0.005316128488630056, 0.002839295892044902, 0.0060007814317941666, -0.00011326978710712865, 0.0006418621051125228, 0.0012333820341154933, -2.8160127840237692e-05, 0.006645160727202892, 0.47426310181617737, 0.0026782010681927204, 0.0036044963635504246, 0.001006842590868473, -0.00612160237506032, 0.0023862167727202177, 0.0005487292073667049, -0.0010471162386238575, -0.005879960488528013, 0.005275854840874672, -0.0032420330680906773, 0.0016914954176172614, -0.003846138482913375, 0.0017720427131280303, 0.0004732159723062068, -0.003725317306816578, 0.003624633187428117, -0.024647504091262817, -0.006645160727202892, -0.00013718230184167624, -5.5690976296318695e-05, 0.005799412727355957, 0.004550928249955177, -8.998654811875895e-05, -8.117668039631099e-05, 0.0026983378920704126, -0.002416422124952078, -7.865957013564184e-05, -7.331071537919343e-05, 0.0431734062731266, -0.0036044963635504246, 0.008860214613378048, -0.0017116322414949536, 0.0036649068351835012, 0.0008558161207474768, 0.0008960898267105222, -0.05734974890947342, 0.0015203321818262339, 0.0008960898267105222, -0.21135638654232025, 0.0012686215341091156, -0.0052355811931192875, 0.002839295892044902, 0.004329422488808632, 0.007813097909092903, -0.0005915199872106314, -0.0023358745966106653, 0.004550928249955177, -0.0010269794147461653, -0.001218279474414885, -0.002557380124926567, 0.009705961681902409, 0.0015706742415204644, 1.8720978914643638e-05, -0.0013491689460352063, 0.0011528346221894026, 0.0003750488394871354, 0.007732550613582134, -0.0824805423617363, -0.0002038856182480231, -0.0019230692414566875, -0.017639880999922752, 0.0023358745966106653, 0.008940761908888817, 0.004631475545465946, 0.0013391005340963602, 0.01119608897715807, -0.006363244261592627, -0.0006997555610723794, -0.0034434013068675995, -0.003382990835234523, -0.003221896244212985, -0.0052355811931192875, -0.01610948145389557, -0.0032823067158460617, -0.0060007814317941666, 0.012404299341142178, -0.007933919318020344, 0.002235190477222204, -0.0007349950610660017, 0.10052315145730972, -0.006403517909348011, -0.002557380124926567, 0.00045559625141322613, -0.0054772235453128815, -0.005638318136334419, -0.0011880742385983467, 0.003161485306918621, -0.0002529691846575588, -0.0037857277784496546, 0.003503811778500676, -0.0017619743011891842, -0.0054772235453128815, 0.002295600948855281, 0.006403517909348011, 0.004893254488706589, -0.003966959659010172, 0.007128444965928793, -0.007249266374856234, 0.00018500731675885618, 0.016028933227062225, 0.0037655909545719624, 0.004691885784268379, 0.00012333820632193238, 0.001318963710218668, 0.00982678309082985, -0.0008608503267168999, -0.0014095795340836048, 0.004409970249980688, 0.000991739914752543, -0.0022653955966234207, -0.002426490420475602, -0.002295600948855281, 0.001419647946022451, -0.0020438903011381626, -0.0014699901221320033, -0.003805864602327347, -0.005396675784140825, 0.006685434374958277, -0.005517497193068266, -0.0006393450312316418, 0.00942404568195343, -0.003221896244212985, 0.0018425218295305967, 0.003966959659010172, -0.0001950757286977023, 0.005638318136334419, -0.006363244261592627, -0.002426490420475602, 0.003221896244212985, -0.004430107306689024, 0.0003398093394935131, 0.004913391545414925, -0.003382990835234523, -0.004772433545440435, -0.001983479829505086, -0.004691885784268379, -0.002718474715948105, 0.005014075431972742, -0.004269012250006199, 0.005034212488681078, 0.008578297682106495, 0.0008306450909003615, -0.002416422124952078, -0.0037857277784496546, 0.001862658653408289, -0.00196334277279675, 0.0021345061250030994, -0.0010219451505690813, -0.008054740726947784, 0.012968132272362709, 0.004933528136461973, 0.0029399802442640066, 0.0052355811931192875, -0.004591201897710562, -0.002537243068218231, -0.006765981670469046, 0.0026983378920704126, -0.000770234502851963, -0.003946822602301836, -0.012001562863588333, -0.0006796186789870262, 0.002305669244378805, -0.0016411533579230309, -0.0015706742415204644, -0.001872727065347135, 0.002960117068141699, 0.006685434374958277, -0.0030003907158970833, 0.023519841954112053, 0.004490517545491457, -0.011759920977056026, -0.004792570602148771, 0.0010370478266850114, 0.0042287386022508144, -0.008014466613531113, 0.0035843593068420887, 0.002013685181736946, -0.003846138482913375, 0.007208992727100849, 0.006403517909348011, -0.0003372922365088016, 0.0215867031365633, 0.007450634613633156, -0.0003133797144982964, -0.0019130007131025195, -0.003080938011407852, -0.003403127659112215, 0.004409970249980688, -0.00039518566336482763, -0.008739393204450607, -0.00306080118753016, -0.004973801784217358, -0.001117595238611102, -0.0060007814317941666, -0.0010722872102633119, 0.004591201897710562, 0.035279761999845505, 0.0060007814317941666, 0.0034232644829899073, -0.005598044488579035, -0.009665688499808311, -0.0015001953579485416, 0.005718865431845188, -0.011357183568179607, 0.006685434374958277, 7.299608114408329e-05, 0.006524339783936739, 0.004329422488808632, 0.0017821112414821982, -0.0015102637698873878, 0.006242423318326473, -0.002184848301112652, 0.004409970249980688, 0.0073298136703670025, -0.007088170852512121, 0.009947603568434715, -0.001661290181800723, -0.010632256977260113, -0.005316128488630056, 0.012726488523185253, -0.0027990222442895174, -0.005134896840900183, -0.007974193431437016, 0.0019432060653343797, -0.0029399802442640066, 0.01119608897715807, 0.011679372750222683, 3.775659570237622e-05, 0.00543694943189621, 0.010551709681749344, 0.008417203091084957, -0.008497750386595726, -0.0003171553835272789, -0.004631475545465946, 0.00011893326882272959, -0.001419647946022451, 0.0016814270056784153, -0.0012837242102250457, -0.00019255862571299076, 0.005396675784140825, -0.0020338220056146383, -0.0043898336589336395, 0.006765981670469046, -0.007933919318020344, 0.00030205276561900973, -0.015142911113798618, 0.005275854840874672, -0.0016008794773370028, -0.0405958890914917, -0.0011578688863664865, -0.0052355811931192875, 0.0018827954772859812, -0.024164220318198204, -0.0015102637698873878, -0.001429716357961297, 0.002537243068218231, 0.015706742182374, -0.004490517545491457, -0.001107526826672256, -0.007893645204603672, -0.004631475545465946, -0.0060007814317941666, 0.0015908110653981566, 0.0006443792372010648, 0.008095013909041882, 0.0052355811931192875, -0.0003750488394871354, -0.0073298136703670025, -0.006363244261592627, -0.0060007814317941666, -0.007168718613684177, -0.0030205275397747755, 0.004409970249980688, 0.0024667640682309866, -0.0068465289659798145, 0.028835970908403397, -0.0032621698919683695, 0.005638318136334419, -0.00035491198650561273, -0.0073298136703670025, 0.003906548954546452, 0.004792570602148771, 0.004530791193246841, 0.008900487795472145, 0.003946822602301836, 0.0010773214744403958, -0.0037655909545719624, 0.0026177905965596437, -0.008095013909041882, -0.003624633187428117, 0.0016713585937395692, 0.031735677272081375, 0.0009615346207283437, 0.002839295892044902, 0.0013995111221447587, -0.0019029323011636734, -0.0021043007727712393, 0.00240635359659791, 0.0035239486023783684, 0.01675385981798172, -0.0008960898267105222, -0.003141348483040929, -0.0034635381307452917, 0.016914954409003258, -0.004792570602148771, -0.0007148581789806485, 0.002960117068141699, -0.0016109481221064925, -0.00032470672158524394, 0.0015102637698873878, 0.00153040059376508, -0.005356402136385441, -0.0006544476491399109, -0.0010169110028073192, -0.005396675784140825, -0.005799412727355957, -0.021103419363498688, -0.004953665193170309, -0.01224320475012064, 0.0006846529431641102, 0.008981035090982914, -0.00555777084082365, -0.0028795695398002863, -0.00045056204544380307, 0.004027370363473892, 0.0073298136703670025, 0.0004858015163335949, 0.0008054740610532463, 0.004591201897710562, 0.0008558161207474768, -0.0002529691846575588, 0.003946822602301836, -0.0015001953579485416, -0.003846138482913375, -0.002758748596534133, 0.004651612136512995, 0.005638318136334419, 7.07936123944819e-05, 0.0031816221307963133, -0.0021949168294668198, -0.01087389886379242, 0.004510654602199793, 0.0008155424729920924, 0.0036850436590611935, 0.0012786900624632835, 0.0024667640682309866, 0.0007803029147908092, 0.0025775169488042593, -0.02053958736360073, 9.439148561796173e-05, -0.017720429226756096, -0.008578297682106495, 0.0052355811931192875, -0.00026555469958111644, 0.0006015883991494775, -0.3582748472690582, -0.0002793988096527755, 0.004349560011178255, -0.008215835317969322, -0.004168327897787094, 0.011598825454711914, 0.0005789344431832433, -0.0049939388409256935, -0.004852980840951204, -0.0034434013068675995, 0.002003616653382778, 0.0004379764723125845, -0.0010420819744467735, -0.0030205275397747755, 0.001661290181800723, -0.0030003907158970833, -0.008336655795574188, -0.0042287386022508144, -0.004752296954393387, 0.004168327897787094, 0.10632257163524628, -0.002658064244315028, 0.0017921796534210443, -0.0021043007727712393, 0.0054772235453128815, 0.0042891488410532475, 0.006685434374958277, 0.0023862167727202177, -0.0003498777805361897, -0.004490517545491457, -0.008336655795574188, 0.013773605227470398, -0.007208992727100849, 0.0008860213565640152, 0.0004253909573890269, -0.009947603568434715, -0.0058396863751113415, -0.0014599215937778354, 0.002547311596572399, -0.0031010748352855444, -0.0011578688863664865, 0.0007954055326990783, -0.0018324534175917506, 0.002537243068218231, 0.003503811778500676, 0.007047897204756737, -0.003624633187428117, 0.001953274477273226, -0.004712022840976715, 0.015545648522675037, -0.0005688660312443972, 0.0037857277784496546, -0.0060007814317941666, -0.0035239486023783684, -0.002637927420437336, -0.0035239486023783684, -0.0034232644829899073, -0.007450634613633156, -0.005054349545389414, -0.0016109481221064925, 0.014256889931857586, -0.008578297682106495, -0.005960507784038782, 0.0015606058295816183, 0.0032017589546740055, 0.0004253909573890269, 0.0030205275397747755, 0.005638318136334419, 0.0014397847699001431, -0.0002567448536865413, 0.0008457477088086307, -0.009464319795370102, -0.004832844249904156, 0.0028795695398002863, -0.0007752687088213861, -0.0025775169488042593, 0.0023962853010743856, -0.0010118767386302352, 0.004309285897761583, -0.007611729204654694, 0.0030406643636524677, 0.004671749193221331, 0.0004983870894648135, 0.0018525902414694428, 0.004329422488808632, 0.008457477204501629, -0.007571455556899309, -1.9900871848221868e-05, -0.010068424977362156, 0.010068424977362156, -0.07700331509113312, 0.004913391545414925, 0.0016914954176172614, 0.0111155416816473, 0.002980253892019391, -0.002426490420475602, -0.002839295892044902, 0.0027990222442895174, 0.006967349909245968, -0.020620135590434074, 0.002547311596572399, 0.002637927420437336, 0.00038008304545655847, 0.0037857277784496546, 0.00612160237506032, -0.004712022840976715, -0.00869912002235651, 0.0030406643636524677, -0.008457477204501629, 0.010108699090778828, -0.0007299607968889177, 0.006927076261490583, 0.06991514563560486, -0.000976637238636613, -0.005960507784038782, 0.008860214613378048, 0.0020740956533700228, -0.01079335156828165, 0.0013391005340963602, 0.010189246386289597, 0.004631475545465946, 0.007450634613633156, -0.005034212488681078, 0.0015706742415204644, 0.0005084555014036596, -0.011840468272566795, -0.0017015638295561075, 0.00374545413069427, 0.002637927420437336, 0.004933528136461973, -0.006202149670571089, -0.003725317306816578, 0.0054772235453128815, -0.0019230692414566875, -0.000875952944625169, -0.0020338220056146383, -0.0017821112414821982, 0.00037756594247184694, 0.0004782501782756299, 0.0032823067158460617, -0.010189246386289597, -0.007772824261337519, -0.004933528136461973, -0.0039266855455935, -0.0023761484771966934, 6.4894147726590745e-06, 0.0013793742982670665, 5.097140456200577e-05, -0.0044502438977360725, 0.0006796186789870262, 0.0018525902414694428, -0.026097359135746956, -0.005356402136385441, -0.012323752045631409, 0.0041481913067400455, 0.0044502438977360725, -0.0018123165937140584, -0.00014284577628131956, -0.0019230692414566875, -0.013451416045427322, -0.0009111925028264523, -0.0024768325965851545, -0.0030205275397747755, 0.003725317306816578, -0.008940761908888817, -0.003846138482913375, -0.0002617790596559644, 0.04800625145435333, 0.0023862167727202177, -0.0029399802442640066, -0.007772824261337519, -0.005356402136385441, 0.00016738756676204503, 0.014498532749712467, -0.001973411301150918, -0.006363244261592627, -0.005195307545363903, -0.008457477204501629, -0.004047506954520941, 0.0037051804829388857, 0.00922267697751522, -0.0007148581789806485, -0.00930322427302599, -0.013048679567873478, -0.019573017954826355, -0.0041481913067400455, -0.00487311789765954, -0.01119608897715807, 0.004087780602276325, 0.002003616653382778, -0.010551709681749344, -0.0023459428921341896, 0.006564613431692123, -0.002758748596534133, 0.0023862167727202177, 0.003302443539723754, -0.08441367745399475, 0.0052355811931192875, 0.0032621698919683695, 0.0011780057102441788, 0.0037655909545719624, -0.0005965541931800544, 0.009142129682004452, -0.0012434504460543394, -0.00028946722159162164, 0.0022754641249775887, -0.001973411301150918, 0.00240635359659791, -0.007410360965877771, -0.009786508977413177, -0.008014466613531113, 0.014095794409513474, 0.0009061582968570292, -0.004510654602199793, -0.001329032122157514, 0.002839295892044902, -0.0007450634730048478, 0.00481270719319582, 0.0008558161207474768, -0.009142129682004452, 0.00043042516335844994, -0.0032017589546740055, 0.0008507819147780538, -0.007047897204756737, 0.008538024500012398, -0.012001562863588333, 0.002758748596534133, -0.004369696602225304, -0.002486900892108679, -0.0012384162982925773, 0.003080938011407852, 0.0012333820341154933, 0.00044049357529729605, -0.003826001426205039, -0.0029198431875556707, 0.003725317306816578, 0.002637927420437336, 0.004329422488808632, -0.0031816221307963133, 0.003141348483040929, -0.007289540022611618, -0.004571064841002226, -0.007289540022611618, 0.00543694943189621, -0.003322580363601446, -0.005598044488579035, -0.0029399802442640066, -0.0037655909545719624, -0.0017619743011891842, 0.005054349545389414, -0.006685434374958277, -0.000329740927554667, -0.03721289709210396, -0.00014347505930345505, 0.005638318136334419, 0.0035239486023783684, 0.002184848301112652, -0.009061582386493683, -0.005879960488528013, -0.0021345061250030994, -0.0018223850056529045, 0.005678591784089804, 0.0018223850056529045, -0.0042086015455424786, -0.03495757281780243, 0.00038260014844127, -0.00461133848875761, -0.001983479829505086, 0.009383771568536758, -0.007128444965928793, 0.0002932428615167737, 0.0022553273010998964, 0.00243655894882977, -0.019411923363804817, 0.000541177811101079, 0.002064027125015855, -0.004470380954444408, -0.006524339783936739, -0.0027386117726564407, 0.00040273703052662313, 4.342008469393477e-05, -0.0018123165937140584, 0.0006242423551157117, -0.0022553273010998964, 0.0010722872102633119, -0.000435459369327873, -0.0018425218295305967, -0.00019381717720534652, 0.003302443539723754, 0.017237143591046333, -0.005195307545363903, 0.007571455556899309, -0.0008256108849309385, -0.0005185239133425057, -0.004732159897685051, 0.004168327897787094, 0.003503811778500676, 0.00010571846360107884, -0.0011226293863728642, -0.0028795695398002863, 0.0035843593068420887, 0.0025976537726819515, 0.0015807426534593105, 0.005275854840874672, -8.872799662640318e-05, -0.016673311591148376, -0.01989520713686943, -0.0017217006534337997, -0.013451416045427322, 0.0014901269460096955, 0.007249266374856234, -0.006927076261490583, 0.006322970613837242, 0.002960117068141699, -0.0037857277784496546, -0.002235190477222204, -0.000664516061078757, 0.006161876022815704, -0.008417203091084957, -0.0003209310525562614, 0.06701543927192688, 0.0010873900027945638, -0.0009313293267041445, 0.0030003907158970833, -0.0037051804829388857, -0.001651221769861877, -0.002315737772732973, 0.004550928249955177, -0.009705961681902409, -0.0019230692414566875, 0.00306080118753016, 0.004591201897710562, -0.0058396863751113415, -1.3529445823223796e-05, 0.0037051804829388857, 0.000875952944625169, 0.000664516061078757, -0.010712804272770882, 0.010632256977260113, 0.08699119091033936, -0.006242423318326473, -0.00040525413351133466, 0.001429716357961297, 0.006604887079447508, 0.0002970185596495867, 0.003141348483040929, -0.0011780057102441788, -0.003826001426205039, 0.005920234136283398, 0.0004983870894648135, -0.001651221769861877, 0.0042287386022508144, 0.004087780602276325, -0.00023534943466074765, 0.0025976537726819515, 0.0021445744205266237, 0.006685434374958277, 0.015787290409207344, -0.004933528136461973, 0.0026177905965596437, -0.008900487795472145, 0.00019004152272827923, 0.004913391545414925, -0.1675385981798172, -0.005114760249853134, 0.007289540022611618, -0.0005890028551220894, -0.003966959659010172, -0.0015706742415204644, -0.003141348483040929, -0.0018827954772859812, 0.007531181909143925, -0.008900487795472145, -0.0035239486023783684, 0.0035843593068420887, -0.009182403795421124, -0.009947603568434715, -0.0005713831051252782, 0.0073298136703670025, 0.004792570602148771, 0.004349560011178255, -0.0004858015163335949, -0.0013391005340963602, 0.0035440854262560606, 0.0012384162982925773, -0.0023459428921341896, 0.0030406643636524677, 0.001092424150556326, 0.008296382613480091, -0.001318963710218668, 0.0015102637698873878, -0.002718474715948105, 0.06347135454416275, -0.0013693058863282204, 6.54447649139911e-05, -3.004795689776074e-05, 0.0073298136703670025, -0.0017720427131280303, -0.0016814270056784153, 5.317386967362836e-05, -0.003906548954546452, -0.0052355811931192875, 0.002426490420475602, -0.002778885420411825, -0.0016914954176172614, -0.005718865431845188, 0.003644770011305809, 9.313293412560597e-05, 0.003322580363601446, -0.006282696966081858, -0.00922267697751522, -0.000996774178929627, 0.0006745844730176032, -0.009182403795421124, -0.004027370363473892, -0.0015706742415204644, -0.006363244261592627, 0.0036044963635504246, 0.003725317306816578, 0.0025674484204500914, 0.002658064244315028, 0.004792570602148771, 0.0014699901221320033, 0.006927076261490583, 0.001318963710218668, -0.008578297682106495, -0.003403127659112215, -0.0015807426534593105, -0.0023459428921341896, 0.0024466272443532944, -0.008215835317969322, -0.005316128488630056, 0.00487311789765954, -0.0021546429488807917, 0.007893645204603672, 0.0012736557982861996, -0.003644770011305809, -0.0010219451505690813, -0.0002957599936053157, -0.004107917658984661, -0.002637927420437336, -0.0009111925028264523, -0.0017116322414949536, -0.0111155416816473, 0.0027990222442895174, 0.0036649068351835012, 0.0014397847699001431, 0.009262951090931892, 0.003302443539723754, 0.004852980840951204, -0.0010269794147461653, 0.01989520713686943, 0.07474798709154129, -0.00240635359659791, -0.0013391005340963602, 0.007531181909143925, -0.0015203321818262339, -0.0005160067812539637, -0.009343498386442661, -0.005074486136436462, -0.005195307545363903, -0.0017921796534210443, 0.00043042516335844994, -0.0036044963635504246, -0.0027386117726564407, -0.0014699901221320033, 0.007652002852410078, -0.0049939388409256935, -0.004269012250006199, -0.0054772235453128815, -0.00020766127272509038, 0.005960507784038782, -0.0018928638892248273, 0.002426490420475602, 0.004027370363473892, 0.0049939388409256935, -0.007652002852410078, -0.0006368278991430998, -0.0028795695398002863, 0.011598825454711914, -0.00487311789765954, 0.001661290181800723, 0.005356402136385441, 0.007249266374856234, 0.007813097909092903, -0.0006544476491399109, 0.04124027118086815, -0.001429716357961297, 7.110825390554965e-05, -0.0012988268863409758, 0.00543694943189621, 0.0023660799488425255, 0.002426490420475602, 0.0025674484204500914, 0.0042086015455424786, -0.0014095795340836048, 0.0027990222442895174, -0.006645160727202892, 0.00016738756676204503, 0.0015102637698873878, -0.005356402136385441, -0.0024466272443532944, -0.008860214613378048, 0.005799412727355957, -0.0010169110028073192, -0.00037001463351771235, -0.0015203321818262339, 0.0035843593068420887, 0.00013592375034932047, -0.0012837242102250457, -0.003946822602301836, 0.0003851172514259815, -0.00196334277279675, 0.00013718230184167624, 0.03914603590965271, 9.439148561796173e-05, 0.0020338220056146383, 0.0013693058863282204, 0.0011326977983117104, 0.0010320135625079274, -0.00930322427302599, 0.0014599215937778354, 0.00374545413069427, -0.004007233306765556, -0.0002945014275610447, 0.0008860213565640152, -0.002839295892044902, -0.00017368033877573907, 0.000770234502851963, -0.007611729204654694, 0.0015807426534593105, 0.005638318136334419, 0.002960117068141699, -0.00046566466335207224, 0.0035642224829643965, 0.007088170852512121, 0.0020237534772604704, 0.010551709681749344, 0.00038260014844127, -0.006765981670469046, 0.006363244261592627, 0.0028795695398002863, -0.003161485306918621, -0.0028997063636779785, 0.0012887584744021297, 0.002204985124990344, -0.001329032122157514, -0.00030205276561900973, 0.001651221769861877, -0.009705961681902409, 0.0004983870894648135, -0.008054740726947784, 0.0019432060653343797, 0.004671749193221331, -0.0043898336589336395, 0.004510654602199793, -0.0018525902414694428, 0.0003423264715820551, -0.009504593908786774, -0.04607311263680458, -0.003866275306791067, 0.0020438903011381626, -0.019573017954826355, 0.0008658845326863229, 0.009142129682004452, 0.00817556120455265, 0.003987096715718508, -0.003946822602301836, -0.0035843593068420887, -0.0007148581789806485, 0.009061582386493683, -0.006161876022815704, 0.00543694943189621, -0.016673311591148376, 7.991812890395522e-05, 0.002778885420411825, -0.0032621698919683695, 0.002718474715948105, 0.0019432060653343797, -0.0005311093991622329, 0.005678591784089804, -0.007933919318020344, 0.004913391545414925, 0.0014599215937778354, 0.0020338220056146383, -0.0015102637698873878, 0.0026782010681927204, -0.0052355811931192875, 0.007410360965877771, -0.0009565003565512598, 0.004752296954393387, 0.015304005704820156, -0.0006116568110883236, 0.006041055079549551, -0.0023560114204883575, 0.00555777084082365, 0.002637927420437336, 0.003483674954622984, 0.003866275306791067, 0.0003398093394935131, 0.0042287386022508144, -0.002547311596572399, 0.0035440854262560606, -0.0035843593068420887, -0.004490517545491457, 0.010148972272872925, -0.0010471162386238575, 0.003382990835234523, 0.0058396863751113415, 0.0005915199872106314, -0.003503811778500676, 0.0006217252230271697, -0.00020010993466712534, 0.0042287386022508144, -0.00019633428019005805, 0.029641443863511086, -0.0016814270056784153, 0.004953665193170309, 0.0021043007727712393, -0.0021244375966489315, -0.00481270719319582, -0.003624633187428117, 0.0010672530625015497, -0.0016713585937395692, 0.0030003907158970833, 0.0037051804829388857, -0.0002970185596495867]}\n",
"{'doc_id': 'demo-001', 'chunk_id': 2, 'text': ' optimize energy usage. Sustainability has become a strategic criterion, not only economically but also reputationally. Organizations that fail to properly manage their carbon footprint may face public and regulatory criticism. Language Models and Deep Learning At the same time, the development of large-scale language models has redefined contemporary artificial intelligence. These models, trained with billions or even trillions of parameters, can generate coherent text, translate languages, and solve complex problems. Training these systems requires extremely powerful distributed infrastructures. Data parallelism and model parallelism make it possible to divide the computational workload across multiple GPUs or specialized nodes. However, the inference phase presents different challenges. Although it is less intensive than training, large-scale inference — such as in public AI services — requires constant optimization to reduce', 'source': 'local_demo', 'metadata': {'title': 'Demo', 'doc_id': 'demo-001'}, 'embedding': [0.00034262778353877366, 0.003972495906054974, -0.0012910611694678664, 0.0009186397073790431, 0.004965619649738073, 0.004369745496660471, -0.00013655454677063972, 0.00020979745022486895, -0.005799844395369291, -0.009216190315783024, -0.005561494268476963, 0.020021378993988037, 0.0036944213788956404, -0.007190217729657888, 0.002939647063612938, -0.007229942828416824, 0.004608095157891512, -0.0014499610988423228, -0.0025622600223869085, -0.004449195694178343, 0.005561494268476963, 0.005640944000333548, -0.000290488766040653, 0.003912908490747213, -0.0038731833919882774, -5.275971125229262e-05, 0.006395719014108181, 6.051849140931154e-06, 0.004330020863562822, -0.00595874385908246, 0.005203969776630402, 0.0011222300818189979, 0.0012364393332973123, -0.01732008345425129, -0.005045069847255945, 0.00595874385908246, 0.0021848727483302355, -0.0012711987365037203, 0.011758588254451752, -0.0052436948753893375, 0.0018869355553761125, -0.0021848727483302355, -0.0028999221976846457, 0.00357524654828012, 0.001137126935645938, -0.0048663076013326645, -0.0054423194378614426, -0.0026218474376946688, 0.0006852555670775473, -0.008898391388356686, -0.0052436948753893375, -0.003972495906054974, 0.006634068209677935, 0.002045835368335247, -0.0007845679065212607, 0.0007597398362122476, -0.007428567390888929, 0.001499617239460349, 0.004806720186024904, 0.0014300985494628549, 0.012791438028216362, 0.0040122210048139095, 0.010169589892029762, -0.00985179003328085, -0.00046180267236195505, -0.0003525590000208467, 0.006753243040293455, -0.004925895016640425, 0.00033269653795287013, 0.01326813641935587, -0.011122988536953926, -0.005799844395369291, -0.0021054227836430073, -0.00838196650147438, -0.017478981986641884, -0.004151258151978254, 0.001479754806496203, 0.001469823531806469, -0.006077918689697981, 0.004290295764803886, -0.001440029707737267, -0.0008789146668277681, 0.0031978595070540905, -0.08072111755609512, -0.0040519461035728455, 0.0009583646315149963, 0.009891514666378498, -0.0013307861518114805, -0.006792968139052391, 0.0022444601636379957, -0.003297171788290143, -0.003277309238910675, 0.002760884817689657, -0.0013506487011909485, -0.006276543252170086, 0.008938116021454334, 0.00048166513442993164, -0.006753243040293455, 0.0027807471342384815, -0.0004692510701715946, 0.0026218474376946688, -0.007905267179012299, -0.027966370806097984, -0.0020061105024069548, -0.0008143616723828018, 0.004588232841342688, -0.004091670736670494, -0.006117643788456917, -0.003793733660131693, -0.0022643227130174637, 0.0034560714848339558, 0.002095491625368595, -0.0001489685964770615, -0.028284169733524323, 0.008580591529607773, 0.002016041660681367, -0.0003997324383817613, 0.008858665823936462, -0.00236363522708416, 0.0013903735671192408, 0.0001291061198571697, -0.0013506487011909485, 0.002880059415474534, 0.006872417870908976, -0.001176851917989552, -0.0030190967954695225, 0.003555383998900652, -0.004469058010727167, 0.0005238729063421488, 0.0037341462448239326, 0.006355993915349245, -0.00297937192954123, -0.00036993870162405074, -0.0007051180000416934, 0.006316268350929022, -0.000571046257391572, -0.020100828260183334, 0.0033170341048389673, 0.014618785120546818, 0.003853321075439453, 0.0005660806782543659, 0.0023338415194302797, 0.00595874385908246, 0.0006107712397351861, -0.0019167292630299926, -0.0013804424088448286, 0.00945454090833664, -0.020021378993988037, 0.005640944000333548, 0.004906032234430313, -0.002999234478920698, 0.005283419508486986, 0.004429332911968231, 0.001489685964770615, 0.04671655222773552, -0.012632536701858044, 0.006157368421554565, 0.0013605798594653606, -0.004906032234430313, -0.0018571418477222323, 0.008699766360223293, 0.00595874385908246, -0.0013109237188473344, -0.0025324663147330284, -0.008103892207145691, 0.0013605798594653606, 0.0007100836373865604, -0.004270432982593775, 0.005402594804763794, -0.0054820445366203785, 0.01207638718187809, 0.00089381163707003, 0.0024728786665946245, 0.0064751687459647655, -0.0015492733800783753, 0.00786554254591465, 0.0016485858941450715, 0.0006405650055967271, 0.005283419508486986, 0.0056806690990924835, 0.004111533518880606, -0.0005611150409094989, 0.0014003048418089747, 0.0040519461035728455, -0.00341634638607502, 0.012394187040627003, 0.0067135184071958065, -1.0551942978054285e-05, -0.008739490993320942, -0.0010974020697176456, -0.003436208935454488, -0.0030985467601567507, -0.0030786842107772827, 0.0026814346201717854, 0.004091670736670494, 0.0020061105024069548, -0.009057290852069855, -0.0027410222683101892, 0.00419098325073719, 0.0001899349590530619, -0.004627957474440336, -0.0031779969576746225, -0.0028601970989257097, 0.007110767997801304, 0.004151258151978254, -0.0035355212166905403, 0.0021550790406763554, 0.0015691358130425215, 0.00583956902846694, 0.004608095157891512, -0.002880059415474534, -0.0006405650055967271, -0.004707407671958208, -0.003793733660131693, 0.0030389593448489904, 0.007905267179012299, -0.0012215424794703722, 0.00583956902846694, -0.0024331538006663322, 0.023199377581477165, -0.0031779969576746225, 0.0036745588295161724, -0.07944991439580917, 0.002323910128325224, 0.0004667682806029916, -0.0069121429696679115, -0.0030588218942284584, -0.0022643227130174637, -0.008660041727125645, -0.002959509612992406, 0.0037341462448239326, 0.002403360093012452, -0.00969289056956768, 0.0002433153713354841, 0.000429526116931811, -0.016446134075522423, -0.00014834789908491075, -0.002601984888315201, -0.008342240937054157, 0.001807485707104206, 0.00595874385908246, 0.000297937192954123, 0.0012513361871242523, 0.0023338415194302797, -0.004985482431948185, 0.005760118830949068, 0.0004096636548638344, -0.003853321075439453, -0.004906032234430313, 0.0022245978470891714, 0.00036745588295161724, -0.004925895016640425, 0.003257446689531207, 0.002403360093012452, 0.0023338415194302797, 0.0150954844430089, -0.00478685786947608, -0.0015790670877322555, -0.0025622600223869085, -0.0010676082456484437, 0.004707407671958208, 0.008501141332089901, 0.002353703835979104, 0.0030985467601567507, -0.004747132770717144, 0.00021724586258642375, -0.00341634638607502, 0.0035156586673110723, -0.004091670736670494, 0.007229942828416824, 0.0008093960932455957, 0.004330020863562822, 0.010010689496994019, -0.004548507742583752, -0.009613440372049809, 0.003853321075439453, -0.0012414049124345183, -0.00170817319303751, 0.014380435459315777, -0.004310158081352711, -0.00786554254591465, -0.00766691705211997, 0.002582122338935733, 0.001459892257116735, -0.00059835723368451, -0.0016287233447656035, -0.1493658572435379, -0.011838038451969624, 0.0032375843729823828, -0.0013804424088448286, 0.00357524654828012, 0.0038731833919882774, 0.006236818619072437, -0.0023338415194302797, 0.005919019225984812, -0.0031978595070540905, -0.0015989297535270452, -0.001459892257116735, -0.01231473684310913, 0.0006455305847339332, -0.0033170341048389673, -0.0008391898008994758, -0.0018670731224119663, 0.002294116420671344, -0.007587467320263386, 0.00242322264239192, 0.0025225349236279726, -0.009335366077721119, 0.0028403345495462418, 0.004707407671958208, 0.0019266605377197266, 0.00297937192954123, 0.003813595976680517, -0.0012811300111934543, -0.003853321075439453, -0.002294116420671344, 0.004588232841342688, 0.0019067979883402586, 0.003257446689531207, -0.00683269277215004, 0.002582122338935733, 0.0052436948753893375, 0.002641709754243493, -0.009891514666378498, -0.007905267179012299, 0.004111533518880606, 0.0015989297535270452, 0.0054423194378614426, 0.007349117659032345, -0.0019266605377197266, 0.0005561494617722929, 0.00347593380138278, -0.002313978737220168, 0.0018571418477222323, -0.000593391596339643, 0.040996160358190536, -0.012473637238144875, 0.0002457982045598328, -0.00039476677193306386, -0.00478685786947608, -0.007309392560273409, -0.0004642854619305581, -0.0042108455672860146, 0.004270432982593775, 0.01453933585435152, 0.004171120468527079, 0.004171120468527079, 0.003595108864828944, -0.014618785120546818, -0.0037142836954444647, 0.007388842757791281, 0.00814361684024334, -0.009097015485167503, -0.0021948041394352913, 0.05084795132279396, -0.002353703835979104, -0.0032375843729823828, 0.00643544364720583, -0.00242322264239192, -0.003436208935454488, 0.002095491625368595, 0.0013109237188473344, 0.00178762327414006, -0.0008143616723828018, -0.0022444601636379957, 0.005561494268476963, 0.0006902212044224143, 0.0006355993682518601, -0.00419098325073719, 0.0024331538006663322, -0.008461415767669678, 0.009772339835762978, 0.006872417870908976, 0.00341634638607502, 0.008183341473340988, -0.01406263466924429, -0.0015095483977347612, -0.007627191953361034, 0.006872417870908976, 0.005601219367235899, 0.0018472106894478202, 0.0003277309297118336, 0.003754008561372757, -0.002939647063612938, 0.0022047352977097034, 0.0024331538006663322, 0.0031779969576746225, -0.00838196650147438, -0.005561494268476963, -0.002760884817689657, -0.00012165768566774204, -0.007071042433381081, -0.003972495906054974, -0.0010825052158907056, -0.0034560714848339558, -0.002959509612992406, 0.0042108455672860146, 0.025106173008680344, 0.001718104467727244, 0.0027211597189307213, 0.002661572303622961, -0.0025026723742485046, -0.0024132912512868643, -0.018988531082868576, -0.004766995087265968, 0.0031184093095362186, -0.003495796350762248, 0.001797554432414472, 0.00643544364720583, -0.005084794946014881, -0.00010179520904785022, 0.00022097007604315877, 0.0007647054735571146, -0.0008093960932455957, 0.005005344748497009, 0.007428567390888929, -0.010249040089547634, 0.00297937192954123, -0.006395719014108181, -0.0044889203272759914, 0.0056806690990924835, -0.005640944000333548, -0.0069121429696679115, 0.008302516303956509, 0.003793733660131693, -0.0033964840695261955, -0.00030290283029899, -0.0013407173100858927, 0.002582122338935733, 0.0010874707950279117, -0.0017677606083452702, 0.005025207065045834, 0.00040469804662279785, -0.000588425958994776, 0.009494265541434288, -0.0005114588420838118, -0.006673793308436871, -0.0016684483271092176, 0.0025026723742485046, 0.0013407173100858927, 0.0054423194378614426, -0.03495796397328377, 0.01549273356795311, -0.0028403345495462418, -0.0024132912512868643, -0.002582122338935733, -0.0021948041394352913, 0.012553086504340172, -0.0042505706660449505, 0.002641709754243493, 0.0040122210048139095, -0.004707407671958208, -0.00170817319303751, -0.004766995087265968, -0.0002346255350857973, 3.25868786603678e-05, -0.00341634638607502, 0.0006033228128217161, -0.0019365916959941387, -0.007627191953361034, -0.0013506487011909485, -0.00595874385908246, 0.004151258151978254, 0.002274253871291876, -0.0030588218942284584, 0.003277309238910675, -0.024470575153827667, 0.0030786842107772827, 0.002304047578945756, -0.0005362869706004858, 0.0004146292631048709, -0.00472727045416832, -0.018194030970335007, 0.006038193590939045, -0.001459892257116735, -0.005084794946014881, -0.00969289056956768, -0.00695186760276556, -0.000573529105167836, 0.0028006096836179495, 0.0007349117659032345, -0.004508783109486103, 0.004409470595419407, 0.0030588218942284584, -0.001410236000083387, 0.006236818619072437, -0.0010676082456484437, -0.00583956902846694, -0.00173796690069139, 0.00357524654828012, -0.02335827611386776, -0.005919019225984812, 0.010805189609527588, 0.008501141332089901, -0.0032375843729823828, -0.007071042433381081, -0.004369745496660471, -0.0019067979883402586, 0.0056806690990924835, 0.007190217729657888, -0.0016485858941450715, 0.0052436948753893375, -0.00341634638607502, 0.6254297494888306, 0.0014499610988423228, -0.007627191953361034, -0.003992358688265085, -0.006634068209677935, 0.0012364393332973123, 0.004449195694178343, 0.006117643788456917, -0.0005536666139960289, 0.0026814346201717854, -0.005283419508486986, 0.0030786842107772827, -0.008183341473340988, -0.008302516303956509, 0.0012711987365037203, 0.0498945489525795, 0.005283419508486986, -0.001479754806496203, -0.004330020863562822, -0.0025622600223869085, -0.00043945733341388404, -0.002343772677704692, -0.009216190315783024, 0.020100828260183334, 0.0011271957773715258, 0.0016187921864911914, 0.006077918689697981, 0.028760870918631554, -0.00045931985368952155, 9.000185673357919e-05, 0.00291978451423347, -0.00826279167085886, -0.007746366783976555, 0.0013705111341550946, 0.03432236611843109, -0.00407180842012167, 0.002095491625368595, 0.0003997324383817613, -0.0017280357424169779, -0.0004195949004497379, 0.0013605798594653606, -0.04862334951758385, -0.007468292489647865, -0.001176851917989552, 0.007587467320263386, -0.0001024159137159586, -0.000568563467822969, -0.0004444229998625815, 0.0033766215201467276, 0.00814361684024334, 0.4830555021762848, 0.00014027876022737473, 0.002045835368335247, -0.003833458526059985, -0.008064166642725468, 0.00034014496486634016, 0.0024728786665946245, -0.0001228991022799164, -0.0010229176841676235, 0.0033368966542184353, -0.006197093520313501, 0.0012811300111934543, 0.0025622600223869085, 0.003972495906054974, -0.002760884817689657, 0.0010179521050304174, 0.003217721823602915, -0.020021378993988037, -0.005561494268476963, 0.0006604274385608733, -0.00016883108764886856, -0.0007746366900391877, 0.016366682946681976, 0.0012612674618139863, 0.00034511060221120715, 0.00030166140641085804, -0.006594343576580286, -0.000449388608103618, -0.00766691705211997, 0.059110742062330246, -0.002075629075989127, 0.005799844395369291, -0.0007299461285583675, 0.0024927412159740925, 0.008223067037761211, 0.004091670736670494, -0.05879294127225876, 0.0054820445366203785, -0.0010626426665112376, -0.2097477912902832, 0.004409470595419407, -0.003614971414208412, -0.0042505706660449505, 0.00291978451423347, 0.004429332911968231, 0.0005263556959107518, -0.0027807471342384815, 0.002095491625368595, -0.0006331165786832571, -0.005601219367235899, -0.0033964840695261955, 0.004528645426034927, 0.0015889984788373113, 0.0027211597189307213, -0.0048265825025737286, 0.0009980896720662713, 0.00038483552634716034, 0.0013605798594653606, -0.08103892207145691, -5.617357601295225e-05, 0.0018968668300658464, -0.018829630687832832, 0.0006902212044224143, 0.012473637238144875, 0.004528645426034927, 0.002313978737220168, 0.01207638718187809, -0.012791438028216362, 0.0016187921864911914, -0.007468292489647865, 0.002641709754243493, -0.0013506487011909485, -0.0019067979883402586, -0.013188687153160572, -0.004230707883834839, -0.006157368421554565, 0.011996937915682793, -0.005998468957841396, 0.00027683330699801445, 0.0010725739412009716, 0.09851789474487305, -0.00291978451423347, -0.0021948041394352913, -0.0004717338888440281, -0.0025225349236279726, -0.0008789146668277681, -0.000143382276291959, -0.0010030552512034774, 0.0003972496197093278, 0.0057203941978514194, -0.0004146292631048709, -0.00170817319303751, -0.007110767997801304, -0.0010278833797201514, 0.004707407671958208, 0.0012364393332973123, -0.004766995087265968, 0.0052436948753893375, -0.00478685786947608, 0.0003773870994336903, 0.01811458170413971, 0.00478685786947608, 0.005760118830949068, -0.0024331538006663322, 0.001137126935645938, 0.0054820445366203785, -0.0028999221976846457, -0.006276543252170086, 0.010805189609527588, 0.0008292585262097418, -0.003277309238910675, -0.007825816981494427, -0.00236363522708416, -0.001747898175381124, 0.0003575246373657137, -0.00347593380138278, 0.005124520044773817, -0.006157368421554565, 0.00655461847782135, -0.003952633589506149, 5.710462937713601e-05, 0.0067135184071958065, -0.006236818619072437, 0.0040122210048139095, 0.001469823531806469, -0.0008044304559007287, 0.0016883107600733638, -0.0052436948753893375, -0.004627957474440336, 0.003912908490747213, -0.002095491625368595, -0.0056806690990924835, 0.008461415767669678, -0.0015095483977347612, -0.00754774222150445, -0.003495796350762248, -0.008818941190838814, -0.005164244677871466, 0.00715049309656024, -0.008024442009627819, 0.003555383998900652, 0.00030910983332432806, -0.0012165769003331661, -0.007031317334622145, -0.004290295764803886, 0.0013009924441576004, -0.0021550790406763554, 0.006872417870908976, -0.006753243040293455, -0.011043539270758629, 0.010646289214491844, 0.002880059415474534, 0.0021054227836430073, 0.009295640513300896, -0.0024430849589407444, -0.0006653930759057403, -0.010964089073240757, 0.007229942828416824, -0.002045835368335247, -0.001718104467727244, -0.016128333285450935, -0.003277309238910675, 0.004588232841342688, -0.0019663856364786625, -0.0033964840695261955, -0.003138271626085043, -0.00363483396358788, 0.0064751687459647655, 9.807098831515759e-05, 0.021928178146481514, 0.0007349117659032345, -0.0048663076013326645, -0.0028006096836179495, -0.000286764552583918, 0.0016187921864911914, -0.005283419508486986, 0.0007944992394186556, 0.0013605798594653606, -0.0008441553800366819, 0.004230707883834839, 0.009017566218972206, 0.0038731833919882774, 0.018511829897761345, 0.007468292489647865, -0.00413139583542943, -0.001807485707104206, -0.0006355993682518601, 0.0015989297535270452, 0.0008193273097276688, 0.002880059415474534, -0.005521769635379314, -0.0016386546194553375, -0.000446905818535015, 9.000185673357919e-05, -0.004449195694178343, -0.0019067979883402586, 0.006395719014108181, 0.03384566307067871, -0.002760884817689657, 0.00297937192954123, -0.007905267179012299, -0.003495796350762248, 0.0013705111341550946, 0.002512603532522917, -0.007031317334622145, -0.00015455491666216403, 0.00016262405551970005, 0.00291978451423347, 0.0014201672747731209, 0.0024927412159740925, -0.0018770042806863785, 0.0015294109471142292, 0.0015989297535270452, 0.0031184093095362186, -0.0025423974730074406, -0.0035156586673110723, 0.011440788395702839, -6.207024853210896e-05, -0.008699766360223293, -0.003436208935454488, 0.0030588218942284584, -0.005402594804763794, -0.00089381163707003, 0.0033567592035979033, 0.0048265825025737286, 0.005203969776630402, -0.0012910611694678664, 0.019067980349063873, -0.0030190967954695225, 0.001171886338852346, 0.008977840654551983, 0.0067135184071958065, -0.006792968139052391, -0.0036944213788956404, -0.007190217729657888, -0.0008242929470725358, 0.003932771272957325, -0.0007746366900391877, -0.00472727045416832, 0.0027807471342384815, 0.0054820445366203785, -0.006514893379062414, 0.0007944992394186556, 0.0046676830388605595, -0.008660041727125645, -0.0021352164912968874, -0.00655461847782135, 0.004588232841342688, -0.0036546962801367044, -0.04067835956811905, -0.0040122210048139095, -0.007627191953361034, -0.00023090133618097752, -0.018273480236530304, -0.0021749415900558233, 0.0003475933917798102, 0.0006157368770800531, 0.00838196650147438, -0.00583956902846694, 0.0014201672747731209, -0.0031184093095362186, -0.003297171788290143, -0.011043539270758629, -1.0862293493119068e-05, -0.002284185029566288, 0.016843382269144058, 0.0033567592035979033, -0.0015790670877322555, -0.00239342893473804, -0.0037341462448239326, -0.002294116420671344, -0.004608095157891512, 0.0010328489588573575, 0.0025423974730074406, 0.005203969776630402, -0.005402594804763794, 0.013347586616873741, -0.00039476677193306386, 0.008620316162705421, 0.0027807471342384815, -0.003257446689531207, 0.004568370059132576, 1.3345103070605546e-05, 0.0033567592035979033, 0.006634068209677935, 0.003614971414208412, 0.0035156586673110723, -0.001147058210335672, 0.0033964840695261955, -0.011520237661898136, -0.0005412526079453528, -0.0021749415900558233, 0.033210065215826035, -0.00034014496486634016, -0.0008242929470725358, -0.0007398774032481015, -0.0007597398362122476, -0.001459892257116735, 0.0025026723742485046, 0.0069121429696679115, 0.0007845679065212607, -0.003217721823602915, -0.002601984888315201, -0.003754008561372757, 0.0021749415900558233, -0.013744835741817951, -0.002582122338935733, 0.0067135184071958065, -0.002999234478920698, -6.486340862466022e-05, 0.0007994648767635226, 0.0015592046547681093, -0.008064166642725468, -0.0002631778479553759, 0.00766691705211997, -0.007825816981494427, -0.0048265825025737286, -0.023993875831365585, -0.00407180842012167, 0.00297937192954123, 0.0016187921864911914, 0.008699766360223293, -0.0027211597189307213, -0.006276543252170086, -0.0007944992394186556, 0.00043200893560424447, -0.0005064932629466057, 0.0021948041394352913, 0.006673793308436871, 0.005045069847255945, -0.000429526116931811, -0.00363483396358788, -0.001489685964770615, -0.00014089947217144072, -0.0018472106894478202, -0.008580591529607773, 0.0005015276256017387, 0.004409470595419407, -0.0057203941978514194, 0.00347593380138278, -0.0006355993682518601, -0.00957371573895216, 0.00242322264239192, 0.001171886338852346, -0.000573529105167836, -0.0018670731224119663, 0.001191748771816492, 0.0007696710526943207, 0.0036745588295161724, -0.01493658497929573, -0.004111533518880606, -0.02129257842898369, -0.0009782271226868033, 0.0021749415900558233, -0.0007051180000416934, 0.002165010431781411, -0.3432236313819885, 0.0015095483977347612, 0.0013804424088448286, -0.005561494268476963, -0.0028601970989257097, 0.008183341473340988, 0.00754774222150445, -0.0052436948753893375, -0.0028403345495462418, -0.0004071808361914009, 0.003595108864828944, 0.0026218474376946688, -0.004766995087265968, -0.0003128340467810631, -0.0033766215201467276, -0.006673793308436871, -0.00655461847782135, -0.0012314737541601062, 0.003277309238910675, 0.0010378145379945636, 0.09343310445547104, -0.000297937192954123, 0.0009335365612059832, -0.007746366783976555, 0.0042108455672860146, -6.486340862466022e-05, 0.00655461847782135, 0.00291978451423347, -0.0019266605377197266, 0.000600840023253113, -0.002880059415474534, 0.007706642150878906, -0.010725738480687141, 0.001142092514783144, 0.004906032234430313, -0.004449195694178343, -0.002016041660681367, -0.005025207065045834, -0.00715049309656024, 0.0009434677776880562, -0.003555383998900652, 0.002373566385358572, -0.002701297402381897, 0.005084794946014881, 0.0010080208303406835, 0.001747898175381124, -0.00341634638607502, 0.003495796350762248, -0.0016982420347630978, 0.017717331647872925, -0.0010874707950279117, 0.00170817319303751, -0.0019663856364786625, -0.003793733660131693, -0.0007448429823853076, 0.0015592046547681093, -0.001777691999450326, -0.00786554254591465, -0.00969289056956768, -0.0007100836373865604, 0.022087078541517258, -0.0017578293336555362, -0.0007150492747314274, -3.351793566253036e-05, 0.0021054227836430073, -0.0011122989235445857, -0.00024207396199926734, 5.958743713563308e-05, 0.0005064932629466057, -0.000449388608103618, -0.0004270432982593775, -0.002820472000166774, -0.001479754806496203, -0.00059835723368451, -0.005601219367235899, 0.0042505706660449505, 0.004290295764803886, -0.0024530161172151566, 0.003793733660131693, -0.00957371573895216, 0.0032375843729823828, 0.00419098325073719, 0.001489685964770615, -0.0030588218942284584, 0.002701297402381897, 0.008501141332089901, -0.014142084866762161, -0.003952633589506149, -0.011122988536953926, 0.012632536701858044, -0.07563632726669312, -0.0021848727483302355, 0.0010676082456484437, 0.0005561494617722929, 0.0033368966542184353, -0.004469058010727167, -0.002323910128325224, 0.009255914948880672, 0.005799844395369291, -0.01390373520553112, 0.005799844395369291, -0.004707407671958208, 0.00012414049706421793, 0.003833458526059985, 0.006038193590939045, -0.003158134175464511, -0.008024442009627819, -0.0004642854619305581, -0.00595874385908246, 0.018273480236530304, -0.0013506487011909485, 0.00024083256721496582, 0.0759541243314743, -0.002939647063612938, -0.005601219367235899, 0.002383497543632984, 0.0069121429696679115, -0.010884638875722885, -0.00011731276754289865, 0.004747132770717144, 0.0024430849589407444, 0.0057203941978514194, -0.0048663076013326645, 0.0010378145379945636, 0.00033021371928043664, -0.010884638875722885, -0.0011271957773715258, 0.0020061105024069548, 0.0021153539419174194, 0.000449388608103618, -0.004091670736670494, -0.0018571418477222323, 0.0027211597189307213, -0.0014201672747731209, -0.001410236000083387, -0.0031978595070540905, -0.0031184093095362186, -0.003754008561372757, 0.000286764552583918, 0.0033964840695261955, -0.007229942828416824, -0.007706642150878906, -0.0025026723742485046, -0.005362869240343571, -0.0026814346201717854, 0.00119671446736902, -0.002294116420671344, 0.0018472106894478202, -0.006157368421554565, -0.001499617239460349, -0.00118181761354208, -0.00683269277215004, -0.005164244677871466, -0.01191748771816492, 0.00583956902846694, 0.00363483396358788, -0.003297171788290143, 0.00655461847782135, -0.003813595976680517, -0.002373566385358572, 0.00090870849089697, -0.004647820256650448, -0.005283419508486986, -0.0013208548771217465, -0.015016034245491028, -0.003853321075439453, 0.002055766759440303, 0.04830554872751236, 0.002145147882401943, -0.006673793308436871, -0.008858665823936462, -0.007587467320263386, -0.0030190967954695225, 0.017637882381677628, 0.003277309238910675, -0.006117643788456917, -0.0020061105024069548, -0.0022643227130174637, -0.0037341462448239326, 0.00173796690069139, 0.011440788395702839, -0.002353703835979104, -0.0009583646315149963, -0.005164244677871466, -0.013585936278104782, -0.0013705111341550946, 0.0007448429823853076, -0.020021378993988037, -0.0006082884501665831, -0.0003500762104522437, -0.01207638718187809, -0.00419098325073719, 0.0069121429696679115, 0.0004940791986882687, 0.0020259730517864227, 0.006236818619072437, -0.08262791484594345, 0.0002557294210419059, 0.005402594804763794, 0.0004742167075164616, 0.0031978595070540905, 0.002701297402381897, 0.014777685515582561, -0.0031184093095362186, -0.0006132540293037891, -8.938115934142843e-05, -0.005998468957841396, 0.0057203941978514194, -0.007706642150878906, -0.012950337491929531, -0.004369745496660471, 0.010964089073240757, 0.0002594536344986409, -0.001156989368610084, 0.0006182196666486561, -0.0042108455672860146, -0.0010030552512034774, 0.005164244677871466, 0.0008838803041726351, -0.008660041727125645, -0.007786091882735491, 0.0008441553800366819, 0.0028999221976846457, -0.007944991812109947, 0.011122988536953926, -0.010725738480687141, 0.0015989297535270452, -0.005919019225984812, -0.005640944000333548, -0.004886169917881489, 0.0054423194378614426, 0.006792968139052391, 0.007388842757791281, -0.00798471737653017, 0.002343772677704692, 0.0011122989235445857, 0.001176851917989552, -0.013188687153160572, -0.00044194015208631754, -0.0019763167947530746, -0.00347593380138278, 0.0030190967954695225, -0.004627957474440336, -0.006157368421554565, -0.003257446689531207, -0.004945757333189249, -0.0021550790406763554, -0.0010874707950279117, 0.001499617239460349, 0.0011271957773715258, 0.00038980116369202733, -6.082884283387102e-05, -0.03511686623096466, 0.0008093960932455957, -0.002820472000166774, 0.004627957474440336, 0.0018968668300658464, -0.010646289214491844, -0.007071042433381081, -0.00683269277215004, -0.005601219367235899, 0.0040519461035728455, 0.004925895016640425, -0.009017566218972206, -0.02987316995859146, 0.0052436948753893375, -0.0008391898008994758, -0.0057203941978514194, 0.014221535995602608, -0.005402594804763794, -0.0011122989235445857, -0.0008044304559007287, 0.005760118830949068, -0.0005437353975139558, 0.0031978595070540905, 0.0015889984788373113, -0.0009583646315149963, -0.009732615202665329, 0.004449195694178343, 0.0019663856364786625, -0.0025622600223869085, -0.0027807471342384815, -0.003436208935454488, 0.002165010431781411, -6.76565759931691e-05, -0.005025207065045834, -0.0015691358130425215, -0.002959509612992406, 0.008461415767669678, 0.012473637238144875, -0.002582122338935733, 0.006514893379062414, -0.0010229176841676235, 0.0010775395203381777, 0.0025225349236279726, 0.00838196650147438, -0.004588232841342688, 0.0003773870994336903, -0.0016684483271092176, 0.0009285709238611162, -0.00020607323676813394, 0.0032375843729823828, 0.0025622600223869085, 0.00013345103070605546, -0.003992358688265085, -0.016446134075522423, -0.018750181421637535, -0.009136740118265152, -0.011758588254451752, -0.0006703586550429463, 0.007587467320263386, -0.00655461847782135, 0.005760118830949068, 0.0027807471342384815, -0.00033021371928043664, 0.004886169917881489, -0.005521769635379314, 0.004290295764803886, -0.0030190967954695225, -0.0005213900585658848, 0.07023373246192932, -3.212135561625473e-05, 0.004647820256650448, -0.00407180842012167, -0.002045835368335247, 0.000898777216207236, -0.003277309238910675, 0.004806720186024904, -0.01366538554430008, -0.007349117659032345, 0.010805189609527588, 0.00363483396358788, -0.00178762327414006, -0.0032375843729823828, 0.005601219367235899, -0.0022146664559841156, -0.0009831928182393312, -0.010129865258932114, 0.0150954844430089, 0.0972466990351677, -0.009136740118265152, 0.004290295764803886, 0.00297937192954123, 0.0033368966542184353, -0.003972495906054974, 0.0008143616723828018, 0.001191748771816492, -0.007746366783976555, -0.0012910611694678664, -0.0016684483271092176, 0.0026814346201717854, 0.002601984888315201, 0.004906032234430313, -0.0008143616723828018, -0.002601984888315201, 0.0033766215201467276, 0.0069121429696679115, 0.0030588218942284584, -0.006077918689697981, 0.0018472106894478202, -0.0004692510701715946, -0.0009236053447239101, 0.003217721823602915, -0.14745904505252838, -0.008977840654551983, 0.0054423194378614426, -0.006634068209677935, 0.005402594804763794, -0.005879294127225876, -0.00242322264239192, -0.00643544364720583, 0.0057203941978514194, -0.005005344748497009, -0.00595874385908246, 8.503624121658504e-05, -0.007388842757791281, -0.008699766360223293, -0.002055766759440303, 0.009613440372049809, 0.005124520044773817, 0.0013208548771217465, 0.0011073332279920578, -0.0036944213788956404, -0.001469823531806469, 0.006077918689697981, 0.0006902212044224143, 0.006355993915349245, 0.003992358688265085, 0.007110767997801304, -0.00291978451423347, -0.016048884019255638, 0.0007100836373865604, 0.07404731959104538, -0.002601984888315201, 0.0025423974730074406, 0.00595874385908246, 0.0024728786665946245, 0.0031184093095362186, -0.004171120468527079, 0.0016287233447656035, -0.010566839016973972, 0.0031779969576746225, 0.00297937192954123, -0.0002681434853002429, -0.002165010431781411, -0.004290295764803886, 0.0028999221976846457, 0.00484644528478384, 0.005640944000333548, -0.006594343576580286, -0.003277309238910675, -0.00347593380138278, -0.0016883107600733638, -0.00595874385908246, -0.001459892257116735, 0.0003798699181061238, -0.0025026723742485046, 0.0025423974730074406, -0.0009236053447239101, -0.0013804424088448286, -0.00089381163707003, 0.007349117659032345, 0.000903742853552103, -0.00048166513442993164, -0.002760884817689657, -0.006634068209677935, -0.005362869240343571, -0.0016684483271092176, -0.00341634638607502, 0.007071042433381081, -0.005879294127225876, -0.004171120468527079, 0.006276543252170086, 2.979371856781654e-05, 0.0027410222683101892, 0.001479754806496203, -0.0048663076013326645, 0.0009682958479970694, 0.00031779968412593007, -0.0057203941978514194, 3.398346234462224e-05, 0.0026814346201717854, -0.00695186760276556, -0.019465230405330658, -0.002313978737220168, 0.0013109237188473344, 0.00357524654828012, 0.00695186760276556, -0.002373566385358572, 0.0022047352977097034, -0.0016187921864911914, 0.013347586616873741, 0.08262791484594345, 0.0002457982045598328, -0.0007001524209044874, 0.007905267179012299, -0.0009186397073790431, 0.0026814346201717854, -0.005561494268476963, -0.005601219367235899, -0.004806720186024904, -0.002641709754243493, -0.002582122338935733, -0.00046180267236195505, 0.0030389593448489904, -0.0019663856364786625, 0.006514893379062414, 0.001156989368610084, -0.003555383998900652, -0.006197093520313501, 0.004290295764803886, -0.001147058210335672, -0.005045069847255945, 0.0024530161172151566, 0.005362869240343571, 0.003972495906054974, -0.004627957474440336, -0.000568563467822969, -0.0002929715847130865, 0.011122988536953926, -0.004449195694178343, 0.0007944992394186556, 0.006753243040293455, 0.008064166642725468, 0.003436208935454488, -0.0012265080586075783, 0.05593274161219597, -0.0015194796724244952, -0.003297171788290143, -7.386360084638e-05, 0.008938116021454334, 0.001747898175381124, 0.00038483552634716034, -0.0005238729063421488, 0.002820472000166774, -0.0021153539419174194, -0.000573529105167836, 0.0013307861518114805, 0.002582122338935733, 0.0038731833919882774, -0.00838196650147438, -0.003595108864828944, -0.007428567390888929, 0.0048663076013326645, -0.0013705111341550946, -0.004290295764803886, 0.00022965992684476078, -0.0022643227130174637, -0.0007746366900391877, -0.0025026723742485046, -0.0056806690990924835, 0.003754008561372757, -0.0020061105024069548, 0.005640944000333548, 0.03718256205320358, 0.00017131389176938683, 0.004687545355409384, 0.004608095157891512, -2.9328191885724664e-05, 0.023199377581477165, -0.00419098325073719, 0.0010576769709587097, 0.006753243040293455, -0.0012513361871242523, -0.0015592046547681093, 0.0002433153713354841, 0.004032083321362734, 0.003853321075439453, 0.0013804424088448286, -0.00472727045416832, 0.0018472106894478202, 0.005045069847255945, 0.0012314737541601062, -0.0018869355553761125, 0.001986247953027487, 0.003277309238910675, 0.0013307861518114805, 0.00695186760276556, 0.00119671446736902, -0.003932771272957325, 0.00291978451423347, 0.0007448429823853076, 0.0010179521050304174, -0.0018372794147580862, -0.0027807471342384815, -0.0009682958479970694, -0.004310158081352711, 0.006395719014108181, 0.002045835368335247, -0.000568563467822969, 0.0012364393332973123, -0.0036546962801367044, 0.0001123471520259045, 0.010129865258932114, -0.0031184093095362186, 0.0025622600223869085, -0.0018372794147580862, -0.00033517932752147317, -0.006077918689697981, -0.03908935934305191, 0.001807485707104206, 0.00032028250279836357, -0.015174934640526772, 0.002582122338935733, 0.007309392560273409, 0.008977840654551983, 0.004906032234430313, 5.2759714890271425e-06, -0.01732008345425129, -0.00655461847782135, 0.005064932629466057, -0.002760884817689657, 0.004608095157891512, -0.015572183765470982, 0.0025026723742485046, -0.00291978451423347, -0.009891514666378498, -0.00472727045416832, -0.002075629075989127, 0.0022643227130174637, 0.002601984888315201, -0.0008441553800366819, 0.005283419508486986, 0.006077918689697981, -0.001807485707104206, -0.00341634638607502, -0.001747898175381124, -0.0010179521050304174, 0.00683269277215004, 0.0013804424088448286, 0.011281888000667095, 0.01191748771816492, -0.0024927412159740925, 0.000898777216207236, -0.0022543915547430515, -0.0004146292631048709, 0.004806720186024904, 0.004588232841342688, 0.0016982420347630978, 0.002999234478920698, -2.979371856781654e-05, -0.005521769635379314, 0.00478685786947608, -0.004389608278870583, -0.00643544364720583, 0.004766995087265968, -0.0048265825025737286, -0.0018770042806863785, 0.005124520044773817, 0.002512603532522917, 0.00010303661838406697, 0.000297937192954123, 0.0025225349236279726, 0.0008838803041726351, 0.0064751687459647655, 0.01326813641935587, -0.004151258151978254, 0.004429332911968231, 0.002582122338935733, 0.0031184093095362186, -0.0030389593448489904, 0.0006951867835596204, -0.0004146292631048709, -0.003138271626085043, 0.0027410222683101892, 0.004568370059132576, -0.0012265080586075783]}\n",
"{'doc_id': 'demo-001', 'chunk_id': 3, 'text': '. Although it is less intensive than training, large-scale inference — such as in public AI services — requires constant optimization to reduce latency and resource consumption. Chunking Techniques and Semantic Retrieval In retrieval-augmented generation (RAG) systems, the way information is segmented directly influences the quality of the generated responses. Length-based chunking alone can split ideas in half, affecting the coherence of the retrieved context. Semantic chunking, on the other hand, attempts to group text fragments that share meaning. This approach uses embeddings to measure similarity and determine where to divide the content. A similarity threshold that is too low may generate excessively large and heterogeneous chunks. Conversely, a threshold that is too high may produce small fragments and lose relevant context. Proper calibration depends', 'source': 'local_demo', 'metadata': {'title': 'Demo', 'doc_id': 'demo-001'}, 'embedding': [-0.0021839533001184464, -0.002791662234812975, 0.001186931156553328, -0.0017091810004785657, -0.0010397516889497638, 0.008431958965957165, -0.0014717945596203208, -0.00457680644467473, -0.006494887173175812, -0.0033803798723965883, -0.004064052365720272, -0.0030195526778697968, -0.0016332172090187669, -0.007862231694161892, 0.0007833745912648737, -0.001519271987490356, 0.007330486550927162, 0.0006314473575912416, -0.004595797508955002, 0.002962580183520913, 0.004234970547258854, 0.007026632782071829, -0.0038741433527320623, 0.004007079638540745, -0.0024308350402861834, -0.005279469769448042, -0.0028296438977122307, 0.0006124564679339528, 0.0036272616125643253, -0.008735813200473785, 0.004310933873057365, 0.0011536971433088183, 0.005469378549605608, -0.007824250496923923, -0.003931115847080946, 0.0063429600559175014, -0.002259917091578245, 0.003798179794102907, 0.011242612265050411, -0.010027194395661354, 0.00169968546833843, 0.0006551860133185983, -0.005697269458323717, 0.004861670080572367, 0.004804697353392839, -0.0021744577679783106, 0.0009970221435651183, 0.003665243275463581, -0.005963142029941082, -0.01040701288729906, -0.005621306132525206, -0.00011394538887543604, 0.003646252444013953, 0.005051578860729933, 0.0013863355852663517, 0.0015952355461195111, -0.012761884368956089, -9.495449921814725e-05, 0.0015382628189399838, 0.002221934963017702, 0.008469941094517708, 0.000598213286139071, 0.013825374655425549, -0.0039501069113612175, -0.002278907923027873, 0.0002136476250598207, 0.005773233249783516, -0.013977301307022572, 0.0045388247817754745, 0.009229577146470547, -0.0068747056648135185, -0.0035323072224855423, -0.0014148219488561153, -0.007748286705464125, -0.014585009776055813, -0.014888864010572433, -0.0010255086235702038, 0.004747724626213312, -0.0010492472210898995, 0.005279469769448042, -0.0018611080013215542, 0.0005910916952416301, -0.0016617035726085305, -0.08507922291755676, -0.00451983418315649, 0.0012249129358679056, 0.0058491965755820274, -0.002734689274802804, -0.00457680644467473, 0.0032664344180375338, -0.00611506961286068, 0.0001887220423668623, 0.0012106698704883456, -0.004234970547258854, -0.008355995640158653, 0.009343521669507027, -0.00017566581664141268, -0.00320946192368865, 0.0018516125855967402, -0.0022504215594381094, -0.0020225306507200003, -0.00915361288934946, -0.0111666489392519, -0.005051578860729933, -0.005241488106548786, -0.0021649624686688185, -0.003931115847080946, 0.004709742963314056, -0.00033471459755674005, -0.0009068154031410813, -0.0009258062927983701, 0.0002207692014053464, 0.0003133498248644173, -0.03691830858588219, 0.004500843118876219, 0.0049376338720321655, -0.0025827623903751373, 0.004975615534931421, 1.1591124575716094e-06, 0.002392853144556284, -0.0003869395877700299, -0.0006599337211810052, 0.004823688417673111, 0.0009970221435651183, 0.0006551860133185983, 0.0029245982877910137, -0.0013958311174064875, -0.0021459716372191906, -0.0008688336238265038, 0.0013008766109123826, -0.0010492472210898995, -0.001946567092090845, -0.0013198674423620105, 0.002962580183520913, 0.004007079638540745, -0.00015430105850100517, -0.03144892677664757, 0.0034373528324067593, 0.009495449252426624, 0.006456905510276556, 0.0007358972798101604, -0.002117485273629427, 0.00710259610787034, -0.000678924610838294, -0.0035133163910359144, 0.001614226377569139, 0.006077087949961424, -0.01709180884063244, 0.005431396886706352, 0.0036842343397438526, -4.272951991879381e-05, 0.0033803798723965883, 0.00695066899061203, 0.0009258062927983701, 0.07262119650840759, -0.009799303486943245, 0.004443869926035404, 0.006608832627534866, -0.002639734884724021, 0.00021127374202478677, 0.0015572537668049335, -0.0024688169360160828, 0.0015667491825297475, 0.00046765091246925294, -0.008735813200473785, -0.0010017699096351862, 0.0017091810004785657, -0.0035133163910359144, -0.004177997820079327, 0.001794639858417213, 0.004462861455976963, -0.0022314307279884815, 0.009647376835346222, 0.0011394539615139365, 0.0037791889626532793, 0.009115631692111492, -0.00046290314639918506, 0.00032759300665929914, 0.008393977768719196, 0.012154175899922848, 0.0021554669365286827, -0.0013958311174064875, 0.00019703057478182018, -0.0018706036498770118, -0.004690751899033785, 0.006570850964635611, 0.008128104731440544, 0.0025067985989153385, -0.00820406898856163, -0.00019703057478182018, -0.0064189238473773, -0.00427295221015811, -0.005469378549605608, 0.00011216499115107581, 0.005697269458323717, 0.000683672318700701, -0.008166085928678513, -0.005355433560907841, 0.0024688169360160828, -0.00018160046602133662, 0.0009637881303206086, -0.0012439038837328553, -0.006608832627534866, -0.0009115631110034883, 0.004007079638540745, -0.0020605125464498997, 0.0031714800279587507, -0.0010397516889497638, 0.006836724001914263, -0.003931115847080946, 0.0013958311174064875, -0.003798179794102907, 0.007558377925306559, 0.0033803798723965883, 0.002886616624891758, 0.008925722911953926, -0.0007121586822904646, 0.004026070237159729, -0.002259917091578245, 0.02400449477136135, 0.0015572537668049335, 0.004823688417673111, -0.08386380970478058, 0.00286762579344213, -0.002316889585927129, -0.003646252444013953, -0.006153051275759935, 3.694323095260188e-05, 0.01914282515645027, -0.0036842343397438526, 0.0007169064483605325, 0.0018611080013215542, -0.0053934152238070965, -0.003304416313767433, 0.0049376338720321655, -0.01526868250221014, 0.0019845489878207445, -0.00389313418418169, -0.004329924937337637, 0.0021649624686688185, 0.006304978393018246, 0.0009400495328009129, -0.00442487932741642, 0.001443308312445879, -0.001357849221676588, 0.0025827623903751373, 0.004215979482978582, -0.006608832627534866, -0.00457680644467473, 0.001433812896721065, 0.002288403222337365, -0.016256209462881088, 0.0024498258717358112, 0.0018895944813266397, 0.0018895944813266397, 0.01959860697388649, -0.004747724626213312, -0.00043679066584445536, 0.0018231262220069766, -0.0005412406171672046, -0.0014053265331313014, 0.007140577770769596, -0.0008830768056213856, 0.006570850964635611, -0.0009305540006607771, -0.007064614444971085, -0.007406450342386961, 0.0035323072224855423, 0.0012439038837328553, 0.0035133163910359144, -0.0008973199292086065, 0.0039501069113612175, 8.82780113897752e-06, -0.00427295221015811, -0.007064614444971085, 0.0002753680164460093, -0.0025447802618145943, -0.002981571014970541, 0.00558332446962595, -0.008887739852070808, -0.004690751899033785, -0.0016901899361982942, 0.0033803798723965883, 0.0003062282339669764, -0.005355433560907841, 5.378281912271632e-06, -0.10391819477081299, -0.005279469769448042, 0.002886616624891758, -0.001623721793293953, 0.0020035398192703724, 0.001367344637401402, 0.0035323072224855423, -0.00442487932741642, -0.0019940442871302366, 0.003589279716834426, 0.000510380370542407, 0.002136476105079055, -0.009001686237752438, 0.0003062282339669764, -0.001110967481508851, -0.001281885663047433, -0.00558332446962595, 0.0019750534556806087, -0.007406450342386961, -0.0050895605236291885, 0.0061910334043204784, -0.007558377925306559, 0.004083042964339256, 0.0003180975327268243, -0.006077087949961424, 0.004614788573235273, 0.0028296438977122307, 0.004310933873057365, -0.0018326216377317905, 0.004462861455976963, 0.0031904710922390223, 0.0009732835460454226, 0.005279469769448042, -0.01033104956150055, -0.000759635993745178, 0.00520350644364953, -0.002810653066262603, -0.018383190035820007, -0.002905607456341386, 0.0038361616898328066, 0.0014148219488561153, 0.002373862313106656, 0.003247443586587906, -0.0063809421844780445, -0.00025993792223744094, 0.0040450613014400005, -0.003247443586587906, -0.0009305540006607771, 0.004481852054595947, 0.03266434371471405, -0.012989774346351624, -0.0012723901309072971, 0.002639734884724021, -0.00031097597093321383, -0.005355433560907841, 0.003475334495306015, -0.0006599337211810052, 0.002886616624891758, 0.011242612265050411, -0.0018990898970514536, 0.007710305042564869, 0.0003180975327268243, -0.016332171857357025, -0.004348915535956621, 0.003342397976666689, 0.005773233249783516, -0.005811214912682772, -0.0020795033778995275, 0.02461220510303974, 0.0003679486399050802, -0.008963704109191895, 0.007748286705464125, -0.006912687327712774, -0.006153051275759935, -0.00442487932741642, -0.002981571014970541, -0.0020510172471404076, 0.0014148219488561153, -0.004481852054595947, 0.004102034494280815, 0.0035133163910359144, -0.005317451432347298, -0.007672323379665613, 0.006001123692840338, -0.0012723901309072971, 0.00611506961286068, 0.0128378476947546, 0.003000561846420169, 0.010634902864694595, -0.012458030134439468, -0.0003133498248644173, 0.0005721008055843413, 0.0024498258717358112, 0.0019370716763660312, -0.0011252107797190547, -0.0008355994941666722, 0.0010255086235702038, 0.0035323072224855423, 0.005241488106548786, 0.0023643667809665203, 0.003798179794102907, -0.00626699673011899, -0.00389313418418169, 0.003456343663856387, -0.002098494442179799, -0.005127542652189732, -0.0020700080785900354, 0.0007691314094699919, 0.0004344168119132519, -0.003665243275463581, 0.0019275762606412172, 0.03342398256063461, 0.0005483622080646455, 0.0021839533001184464, 0.009077649563550949, -0.0032854254823178053, -0.0027726711705327034, -0.028106531128287315, 0.0037791889626532793, 0.0019750534556806087, 0.001016013091430068, -0.0009495449485257268, 0.004367906600236893, -0.004500843118876219, -0.0006314473575912416, -0.003817170625552535, -0.003931115847080946, -0.0034183620009571314, 0.001443308312445879, -0.0005863439873792231, -0.010027194395661354, 0.006153051275759935, -0.008280032314360142, 0.002715698443353176, 0.001946567092090845, 0.0013103720266371965, -0.007254523225128651, 0.004329924937337637, 0.010179121047258377, -0.004785706289112568, -0.001281885663047433, -0.0018516125855967402, 0.007976177148520947, 0.005507360678166151, 0.00014895985077600926, 0.003969097975641489, -0.00045340770157054067, -0.0001341232273261994, 0.011774356476962566, 0.0020035398192703724, -0.004253961145877838, 0.0003323407145217061, -0.0023263851180672646, -0.001191678806208074, 0.00010623034177115187, -0.04162805154919624, 0.019902462139725685, 0.0013483538059517741, -0.0049376338720321655, -0.005621306132525206, -0.004007079638540745, 0.006912687327712774, -0.006153051275759935, -0.0036842343397438526, 0.0053934152238070965, -0.0024118442088365555, 0.00020652601961046457, -0.0003465838963165879, -0.0063429600559175014, -0.004102034494280815, 0.0014717945596203208, -0.003133498365059495, -0.003570288885384798, -0.004747724626213312, 0.0010634902864694595, 0.0008355994941666722, 0.010027194395661354, -0.0038361616898328066, -0.00026943336706608534, 0.0011489493772387505, -0.023700641468167305, 0.0005602315068244934, 0.001956062624230981, 0.005773233249783516, 1.4743909559911117e-06, -0.0016711989883333445, -0.012761884368956089, 0.005013597197830677, -0.001196426572278142, 0.00022670385078527033, -0.004481852054595947, -0.00611506961286068, -0.0020225306507200003, -0.0024308350402861834, 0.0023453759495168924, -0.0030765256378799677, 0.006684795953333378, 0.007748286705464125, -0.007292504888027906, -0.006912687327712774, 0.0013483538059517741, -0.002905607456341386, 0.0005649792728945613, 0.002791662234812975, -0.014357118867337704, 0.0004723986203316599, 0.006456905510276556, 0.004462861455976963, -0.003912125248461962, -0.004291943274438381, -0.008355995640158653, -0.0028486347291618586, 0.002886616624891758, 0.0040450613014400005, -0.0001103846007026732, 0.0032664344180375338, -0.005545342341065407, 0.6563254594802856, 0.00040355659439228475, -0.009191595017910004, 0.0007928700069896877, -0.004557815846055746, -0.008242050185799599, 0.00457680644467473, 0.012913811020553112, -0.004291943274438381, 0.004500843118876219, 0.0023358804173767567, 0.0035133163910359144, -0.009951231069862843, -0.00221243966370821, -0.004083042964339256, 0.03737408667802811, 0.008166085928678513, -0.007900213822722435, 0.005887178238481283, -0.004728733561933041, -0.001367344637401402, -0.002107989741489291, -0.0024118442088365555, 0.02734689600765705, 0.003665243275463581, 0.005127542652189732, 0.011014721356332302, 0.03205663710832596, 0.0023073942866176367, -0.0007833745912648737, 0.003969097975641489, -0.004215979482978582, -0.00862186774611473, 0.0010397516889497638, 0.047097425907850266, -0.00679874187335372, -0.002383357612416148, 0.005469378549605608, -0.0007833745912648737, 0.0031904710922390223, 0.0007833745912648737, -0.07657130062580109, -0.006229015067219734, 0.0023073942866176367, 0.0029435891192406416, -0.0028486347291618586, -0.004728733561933041, -0.0014243173645809293, 0.013065737672150135, 0.006304978393018246, 0.4326886236667633, 0.0008355994941666722, 0.00044628611067309976, 9.376755770063028e-05, -0.003665243275463581, 8.071132469922304e-05, 0.004671760834753513, -0.0023643667809665203, 0.00018041353905573487, 0.002563771326094866, -0.0020700080785900354, -0.0015477583510801196, 0.0038551525212824345, -0.0004083043022546917, 0.0013388583902269602, 0.005355433560907841, 0.006608832627534866, -0.004367906600236893, -0.004709742963314056, 0.0025827623903751373, -0.0007311495719477534, 0.0014622991438955069, 0.008583886548876762, 0.0012059221044182777, 0.002734689274802804, -0.0015477583510801196, -0.007254523225128651, -0.002117485273629427, -0.005659287795424461, 0.04314732179045677, -0.004329924937337637, 0.003247443586587906, -0.003114507533609867, 0.0017661536112427711, -0.0006409428315237164, 0.007558377925306559, -0.08143296837806702, 0.0037222160026431084, -0.004007079638540745, -0.2272830754518509, 0.0029435891192406416, -9.792182390810922e-05, -0.0012439038837328553, 0.003570288885384798, -0.0004083043022546917, -0.0031714800279587507, -0.00884975865483284, 0.00389313418418169, -0.007254523225128651, -0.00320946192368865, -0.007520396262407303, 0.004785706289112568, -0.00013234282960183918, 0.0016427127411589026, -0.0009875267278403044, 0.001956062624230981, 0.0003750702308025211, -0.003323407145217061, -0.09419485181570053, 0.0014243173645809293, -0.001096724416129291, -0.020054388791322708, -0.0019940442871302366, 0.011394538916647434, 0.002563771326094866, -0.0040450613014400005, 0.00573525158688426, -0.01040701288729906, 0.0012344084680080414, -0.004861670080572367, -0.0005721008055843413, 0.001775649026967585, -0.0005269974353723228, -0.0111666489392519, -0.0007121586822904646, -0.006229015067219734, 0.004102034494280815, -0.002601753221824765, -0.0025827623903751373, 0.0013768401695415378, 0.10391819477081299, -0.002639734884724021, 0.0005032587796449661, 0.0021459716372191906, -0.011622429825365543, 0.005697269458323717, 0.00611506961286068, 0.002193448832258582, -0.0017566581955179572, 0.0030195526778697968, 0.0032854254823178053, -0.0020605125464498997, -0.004690751899033785, 0.0005032587796449661, 0.00427295221015811, 0.001614226377569139, 0.0023643667809665203, 0.008583886548876762, -0.007406450342386961, -0.0022504215594381094, 0.017395662143826485, 0.0023453759495168924, 0.0010729858186095953, -0.002715698443353176, -0.002041521482169628, 0.0037032251711934805, 0.0019845489878207445, -0.00763434125110507, 0.014585009776055813, 0.003969097975641489, -0.0025827623903751373, -0.014509046450257301, -0.0013768401695415378, -0.002715698443353176, 3.011837907251902e-05, -0.005773233249783516, 0.0023453759495168924, -0.007178559433668852, 0.0020889989100396633, -0.00626699673011899, -0.002193448832258582, 0.004785706289112568, 0.000764383701607585, 0.0023073942866176367, 0.002810653066262603, 0.0010492472210898995, -0.0015097763389348984, -0.007216541562229395, -0.002193448832258582, 0.0024878077674657106, -0.002905607456341386, 0.00015548798546660691, 0.0017566581955179572, -0.002126980572938919, -0.008659849874675274, -0.0006884200847707689, -0.00389313418418169, -0.0048996517434716225, 0.0021459716372191906, -0.005507360678166151, -0.0029435891192406416, 0.00221243966370821, 0.0010634902864694595, -0.00305753480643034, -0.005545342341065407, -0.00013471668353304267, -0.0017281718319281936, 0.011242612265050411, -0.009191595017910004, -0.008052140474319458, 0.013977301307022572, 0.0063429600559175014, 0.0002207692014053464, 0.007976177148520947, -0.003342397976666689, -0.004747724626213312, -0.0010350040392950177, 0.00679874187335372, -0.0013768401695415378, 0.0008735813316889107, -0.02841038443148136, -0.0013863355852663517, -0.0005317451432347298, 0.0003821918508037925, -0.00763434125110507, 0.00035370548721402884, 0.003988088574260473, 0.004386897664517164, 3.9168728108052164e-05, 0.02461220510303974, 0.0020700080785900354, -0.005241488106548786, -0.002905607456341386, -0.0018895944813266397, 0.0010824812343344092, -6.79518052493222e-05, 0.0019750534556806087, 0.0011442016111686826, -0.0002456947404425591, 0.005507360678166151, 0.011774356476962566, 0.0038741433527320623, 0.013977301307022572, 0.002639734884724021, -0.0010255086235702038, 0.00020652601961046457, 0.0019085853127762675, -9.569632311468013e-06, 0.0018421171698719263, 0.0029245982877910137, -0.004026070237159729, -0.004804697353392839, -0.003817170625552535, -0.0007691314094699919, -0.007482414599508047, -0.003114507533609867, 0.0016332172090187669, 0.003570288885384798, -0.00679874187335372, 0.010938757099211216, -0.01147050317376852, -0.008469941094517708, -0.0030955167021602392, 0.005469378549605608, -0.0006005871691741049, 0.0009875267278403044, -0.00016260957636404783, 0.004443869926035404, -0.004367906600236893, -0.0020795033778995275, -0.0016711989883333445, 0.0030765256378799677, -0.0004249213670846075, 0.003494325326755643, -0.0013293628580868244, -0.0015857400139793754, 0.005811214912682772, -0.0006694291951134801, -0.0024308350402861834, -0.0033803798723965883, -0.0017186764162033796, -0.00626699673011899, 0.005621306132525206, 0.009077649563550949, 0.0034183620009571314, -0.003912125248461962, -0.0009068154031410813, 0.01640813797712326, -0.009609394706785679, 0.0014243173645809293, 0.006608832627534866, 0.0063809421844780445, -0.0030765256378799677, -0.0025067985989153385, -0.010179121047258377, 0.0030195526778697968, 0.00038456570473499596, -0.002098494442179799, -0.00558332446962595, 0.0004083043022546917, 0.012913811020553112, -0.005887178238481283, -0.002905607456341386, 0.0006694291951134801, -0.007444432005286217, 0.006456905510276556, -0.0025447802618145943, 0.009343521669507027, -0.0007406450458802283, -0.03448747098445892, 0.00023382545623462647, -0.0030195526778697968, -0.0011536971433088183, -0.012382066808640957, -0.006456905510276556, -0.0025067985989153385, -0.0024498258717358112, 0.003133498365059495, -0.006760759744793177, -0.0012723901309072971, 0.004728733561933041, -0.004462861455976963, -0.012913811020553112, 0.00520350644364953, -0.0012344084680080414, 0.021117879077792168, 0.002563771326094866, -0.0010065175592899323, 0.0027726711705327034, -0.0017471626633778214, -0.0003869395877700299, -0.0049376338720321655, 0.0025067985989153385, -0.00831801351159811, 0.00451983418315649, -0.006988650653511286, 0.009191595017910004, -0.0021744577679783106, 0.0050895605236291885, -0.004595797508955002, 0.0015572537668049335, -0.0022409260272979736, -0.0012628947151824832, 0.003475334495306015, -0.006608832627534866, 0.002962580183520913, 0.00032759300665929914, -0.0023073942866176367, -0.0004771463281940669, -0.01359748374670744, 0.0005649792728945613, -0.0037791889626532793, 0.03479132428765297, 0.0016332172090187669, -0.003304416313767433, 0.004557815846055746, 0.003114507533609867, 0.0033803798723965883, 0.008507922291755676, 0.002373862313106656, -0.00862186774611473, -0.0015572537668049335, 0.0018706036498770118, -0.004196988884359598, 0.002107989741489291, -0.0223332978785038, -0.002620744053274393, -0.0037412072997540236, -0.0007406450458802283, 0.0001317493588430807, 0.0036272616125643253, 0.0022029441315680742, -0.013369591906666756, -0.004975615534931421, 0.001785144442692399, -0.0018421171698719263, -0.0018895944813266397, -0.023092932999134064, -0.0037032251711934805, -0.013217665255069733, 0.00028248963644728065, 0.0025447802618145943, 0.00020415215112734586, -0.006456905510276556, -0.004386897664517164, -0.004481852054595947, -0.005811214912682772, 0.002981571014970541, 0.003798179794102907, -0.0018231262220069766, -0.004766715224832296, -0.0038741433527320623, -0.002373862313106656, 0.0023263851180672646, -0.0006931677926331758, -0.008393977768719196, 0.0014907855074852705, 0.00457680644467473, 0.0017471626633778214, 0.0036272616125643253, 0.0032664344180375338, -0.005013597197830677, 0.009267558343708515, 0.002905607456341386, 0.002639734884724021, -0.0015382628189399838, 0.000379817996872589, 0.0010017699096351862, 0.005469378549605608, -0.01937071792781353, -0.005621306132525206, 0.00389313418418169, -0.0003323407145217061, 0.0064189238473773, 0.0004201736010145396, 0.0011442016111686826, -0.3305935859680176, 0.003323407145217061, 0.0014812900917604566, -0.003323407145217061, -0.0017091810004785657, 0.0028486347291618586, 0.0030195526778697968, -0.003817170625552535, -0.004064052365720272, -0.007824250496923923, 0.0026777167804539204, 0.00044391225674189627, 0.0016522081568837166, 0.00020889987354166806, -0.00801415927708149, -0.0002991066430695355, -0.002392853144556284, -1.5652654838049784e-05, 0.0021554669365286827, -0.004064052365720272, 0.11242612451314926, -0.0031714800279587507, 0.0014148219488561153, -0.013521519489586353, 0.004083042964339256, 0.0009495449485257268, -0.0004937633639201522, -0.005431396886706352, -0.005165524780750275, 0.0037791889626532793, -0.003323407145217061, 0.007292504888027906, -0.009343521669507027, 0.003361388808116317, 0.008393977768719196, 0.005317451432347298, -0.0037412072997540236, 9.31740942178294e-05, -0.011698393151164055, -0.0007833745912648737, -0.004196988884359598, -0.0005364929093047976, -0.002221934963017702, 0.0013483538059517741, 0.005241488106548786, -0.0036082707811146975, -0.008811776526272297, 0.0022504215594381094, -0.00626699673011899, 0.008507922291755676, -0.003798179794102907, 0.0008878245134837925, -0.0016711989883333445, -0.004253961145877838, -0.0009163108188658953, -0.007900213822722435, 0.0020225306507200003, -0.005925160367041826, -0.005279469769448042, 0.000849842734169215, 0.007216541562229395, 0.00451983418315649, 0.0010255086235702038, 0.004728733561933041, -0.0017471626633778214, 0.002715698443353176, 0.0021649624686688185, -0.001443308312445879, -0.0032664344180375338, -0.003931115847080946, 0.00046527700033038855, 0.00029554584762081504, -0.0021839533001184464, -0.006760759744793177, -0.00854590442031622, 0.003114507533609867, -0.002041521482169628, -0.0021839533001184464, 0.007444432005286217, -0.01686391793191433, 0.004083042964339256, 0.00023145157319959253, -0.000593465578276664, -0.003114507533609867, -0.006646814290434122, 0.007862231694161892, 0.0014148219488561153, 0.0009447972406633198, -0.013217665255069733, 0.010179121047258377, -0.07292505353689194, -0.0013103720266371965, 0.001443308312445879, -0.008773795329034328, 0.0025067985989153385, -0.0007406450458802283, -0.009723340161144733, 0.008697831071913242, 0.0006599337211810052, -0.011242612265050411, 0.005051578860729933, -0.006608832627534866, 0.0002492555358912796, 0.0012723901309072971, 0.006304978393018246, -0.0008023654809221625, -0.005545342341065407, 0.0044058882631361485, 0.0007311495719477534, 0.01557253673672676, 0.0022314307279884815, 0.0009542926563881338, 0.06988650560379028, -0.004026070237159729, -0.004121025092899799, 0.003000561846420169, 0.007216541562229395, -0.007178559433668852, 0.0015382628189399838, 0.0020605125464498997, -0.005925160367041826, 0.002373862313106656, -0.0035133163910359144, 0.002259917091578245, 0.005925160367041826, -0.009875267744064331, 0.001452803728170693, 0.002886616624891758, -0.0007691314094699919, 0.0008688336238265038, -0.0008403472020290792, 0.0029245982877910137, 0.00033471459755674005, -0.00862186774611473, -0.002126980572938919, -0.0034373528324067593, -0.0012106698704883456, -0.0005459883250296116, 0.005621306132525206, 0.0061910334043204784, -0.009951231069862843, 0.0018800990656018257, -0.004348915535956621, -0.0012344084680080414, 0.0009732835460454226, -0.0004201736010145396, -0.0016806944040581584, 0.0009922744939103723, -0.01033104956150055, 0.004253961145877838, 0.0036842343397438526, 0.0010302562732249498, -0.010862793773412704, -0.007748286705464125, 0.01033104956150055, 0.005887178238481283, -0.001604730961844325, 0.0005151281366124749, -0.0018326216377317905, 0.005317451432347298, 9.376755770063028e-05, -0.0049376338720321655, -0.006722777616232634, 0.00286762579344213, -0.01420519221574068, -0.0037791889626532793, -0.0021459716372191906, 0.060770876705646515, -0.00018516126147005707, -0.003323407145217061, -0.007026632782071829, 0.00023619931016582996, 0.003912125248461962, 0.02126980572938919, 0.010938757099211216, -0.007672323379665613, -0.0028296438977122307, -0.0007358972798101604, 0.0007786268834024668, 0.004367906600236893, 0.011242612265050411, 0.005431396886706352, -0.005279469769448042, -0.00025637715589255095, -0.011318575590848923, 0.004861670080572367, -0.004159006755799055, -0.013749411329627037, -0.002117485273629427, -0.0016617035726085305, -0.02294100634753704, -0.00032521915272809565, 0.009077649563550949, -0.0022504215594381094, 0.0005721008055843413, 0.00801415927708149, -0.06380941718816757, -0.0024498258717358112, -0.003665243275463581, 0.00012344084098003805, 3.7981797504471615e-05, 0.004253961145877838, 0.006153051275759935, -0.00626699673011899, -0.0011252107797190547, 0.0012154175201430917, -0.0009780313121154904, 0.0006172042340040207, -0.00427295221015811, -0.01147050317376852, -0.004310933873057365, 0.0007169064483605325, 0.007824250496923923, -0.00457680644467473, 0.0009922744939103723, 0.0002207692014053464, 0.00019821750174742192, -0.002981571014970541, -0.006646814290434122, -0.004443869926035404, -0.008697831071913242, -0.0006599337211810052, 0.005165524780750275, -0.006077087949961424, -0.001281885663047433, -0.011242612265050411, -0.002601753221824765, -0.0010492472210898995, 7.299626304302365e-05, 0.003361388808116317, 0.003988088574260473, 0.0017281718319281936, 0.005773233249783516, -0.0037032251711934805, 0.0013293628580868244, 0.0004747724742628634, 0.0032664344180375338, -0.009229577146470547, -0.0023073942866176367, -0.0063809421844780445, 0.00032284529879689217, 0.005355433560907841, -0.0008973199292086065, -0.009875267744064331, -0.006001123692840338, -0.006153051275759935, -0.004804697353392839, -0.0011679402086883783, -0.0004510338476393372, 0.00021127374202478677, -0.0023263851180672646, 0.0018516125855967402, -0.024764133617281914, -0.001794639858417213, 0.0007311495719477534, -0.0001341232273261994, -0.0021839533001184464, -0.008963704109191895, -0.0019370716763660312, -0.0034373528324067593, -0.0032854254823178053, -0.0012913811951875687, 0.004671760834753513, -0.004975615534931421, -0.033575911074876785, 0.0045388247817754745, -0.0037032251711934805, -0.0021839533001184464, 0.00763434125110507, -0.003342397976666689, 5.964329102425836e-05, 0.0003062282339669764, 0.00017803967057261616, -0.0008023654809221625, 0.003342397976666689, 4.65870471089147e-05, -0.002383357612416148, -0.009723340161144733, -0.0036082707811146975, -0.0026967076119035482, -0.0013388583902269602, -0.00457680644467473, -0.0007738791755400598, 0.00389313418418169, -0.0038361616898328066, -5.459883323055692e-05, -0.001443308312445879, -0.009305540472269058, 0.00389313418418169, 0.009457467123866081, 0.0003821918508037925, 0.004975615534931421, 0.002658725716173649, 0.0009637881303206086, 0.005013597197830677, 0.007672323379665613, -0.009343521669507027, -0.0005910916952416301, -0.0044058882631361485, 0.0011252107797190547, 0.005051578860729933, -0.00427295221015811, 0.00169968546833843, 0.006684795953333378, -0.0022314307279884815, -0.020965952426195145, -0.017775479704141617, -0.005773233249783516, -0.012989774346351624, -0.0009685358381830156, 0.006456905510276556, -0.005051578860729933, 0.005431396886706352, 0.00903966836631298, -0.0021839533001184464, 0.009305540472269058, -0.003798179794102907, 0.006722777616232634, 0.0006053349352441728, -0.00355129805393517, 0.038437578827142715, 0.0020795033778995275, 0.004026070237159729, -0.005507360678166151, -0.004557815846055746, 0.001519271987490356, 0.002288403222337365, 0.006456905510276556, -0.01709180884063244, -0.004785706289112568, 0.010786830447614193, 0.0015952355461195111, 0.00044391225674189627, -0.004196988884359598, 0.003931115847080946, 0.0006029610522091389, -0.0024308350402861834, -0.016332171857357025, 0.013217665255069733, 0.1166800782084465, -0.00389313418418169, -0.0007121586822904646, 0.002126980572938919, -0.0019085853127762675, -0.0010539948707446456, -0.0005388667341321707, -0.0001513337338110432, -0.007976177148520947, 0.007558377925306559, 0.0018800990656018257, 0.0037791889626532793, 0.002297898754477501, 0.004367906600236893, 0.0005032587796449661, -0.0003726963768713176, -0.001443308312445879, 0.006001123692840338, 0.002288403222337365, -0.005165524780750275, 0.0008783290977589786, 0.004766715224832296, 0.001106219831854105, 0.003912125248461962, -0.14585010707378387, -0.01602831855416298, 0.0038741433527320623, -0.00389313418418169, 0.006229015067219734, -0.00801415927708149, -0.004310933873057365, -0.003152489196509123, 0.005013597197830677, 9.198716725222766e-06, -0.00695066899061203, -0.003152489196509123, -0.009875267744064331, -0.010255085304379463, -0.002563771326094866, 0.008811776526272297, 0.005469378549605608, 0.0038741433527320623, 2.4035356545937248e-05, -0.0007786268834024668, -0.0021744577679783106, 0.009609394706785679, -8.545903983758762e-05, 0.01253399346023798, -0.0050895605236291885, 0.004234970547258854, -0.0019845489878207445, -0.017319699749350548, 0.001519271987490356, 0.0960179790854454, 0.00457680644467473, 0.0005032587796449661, 0.002715698443353176, 0.0036842343397438526, 0.003988088574260473, -0.0019845489878207445, 0.0022504215594381094, -0.004766715224832296, 0.00035845322418026626, 0.0009827789617702365, -0.0011204630136489868, 0.002791662234812975, -0.007710305042564869, 0.00710259610787034, 0.002639734884724021, 0.003152489196509123, -0.005241488106548786, 0.0005151281366124749, -0.003475334495306015, -0.00457680644467473, -0.003152489196509123, -0.005545342341065407, 0.0018800990656018257, 0.001946567092090845, 0.004159006755799055, -0.002107989741489291, -0.0004985110717825592, -0.009457467123866081, 0.0048996517434716225, 0.0014148219488561153, 0.002316889585927129, -0.0017471626633778214, -0.00573525158688426, -0.0005792223964817822, -0.007938195951282978, 0.0035133163910359144, 0.00820406898856163, -0.0024688169360160828, -0.004443869926035404, 0.003494325326755643, 0.003589279716834426, 0.0004320429579820484, 0.005507360678166151, -0.004121025092899799, 0.0003869395877700299, 0.0060391053557395935, -0.004177997820079327, -0.001775649026967585, -0.001623721793293953, -0.004766715224832296, -0.019446680322289467, -0.00041305203922092915, 0.004140016157180071, 0.004975615534931421, 0.00778626836836338, -0.005545342341065407, -0.0001946567208506167, -0.000598213286139071, 0.004861670080572367, 0.08994089812040329, 0.0026967076119035482, -0.0010682380525395274, 0.003304416313767433, 0.004367906600236893, 0.003323407145217061, -0.005317451432347298, -0.005317451432347298, -0.0030195526778697968, -0.0015097763389348984, -0.0033803798723965883, -0.00558332446962595, -0.001020760741084814, -0.0038741433527320623, 0.002639734884724021, 0.0008403472020290792, -0.0038741433527320623, -0.005241488106548786, 0.0012439038837328553, 0.004747724626213312, -0.002107989741489291, 0.0009020676952786744, 0.0048996517434716225, 0.0038551525212824345, -0.0004344168119132519, -0.00041305203922092915, -0.0007881222991272807, 0.008469941094517708, -0.0065328688360750675, -0.0018041353905573487, 0.00442487932741642, -0.0034373528324067593, 0.0025447802618145943, 0.002810653066262603, 0.07262119650840759, 0.002791662234812975, 0.0011536971433088183, -6.735834176652133e-05, 0.00695066899061203, 0.0012059221044182777, 0.00047002476640045643, -0.00022195612837094814, 0.00019703057478182018, -0.001623721793293953, 0.0030955167021602392, -0.0009353018249385059, 0.004728733561933041, -0.0025827623903751373, -0.007368468679487705, -0.0022504215594381094, -0.00820406898856163, 0.007596359588205814, -0.0048996517434716225, -0.0028296438977122307, 0.00030148052610456944, -0.001519271987490356, -0.00011572578659979627, -0.0021459716372191906, -0.005773233249783516, 0.006229015067219734, -0.001946567092090845, 0.00520350644364953, 0.013749411329627037, 0.00022789077775087208, 0.001614226377569139, 0.005013597197830677, -0.0031714800279587507, 0.042843468487262726, -0.006646814290434122, -0.0018326216377317905, 0.003361388808116317, -0.002259917091578245, 0.004975615534931421, 0.0001899089984362945, 0.0111666489392519, -0.0021649624686688185, 0.003570288885384798, -0.004177997820079327, 0.007558377925306559, 0.0036082707811146975, 0.00558332446962595, -0.0009068154031410813, 0.004329924937337637, 0.0011204630136489868, -0.0022029441315680742, 0.0013293628580868244, 0.0004747724742628634, -0.0029245982877910137, -0.0019085853127762675, -0.00558332446962595, 0.001186931156553328, -0.004215979482978582, -0.005469378549605608, -0.0044058882631361485, -0.0007501404616050422, 0.0050895605236291885, -0.0024023486766964197, -0.00020889987354166806, 6.409428897313774e-05, 0.0019750534556806087, 0.0048996517434716225, 0.011622429825365543, 0.00558332446962595, -0.0007026632665656507, -0.009647376835346222, -0.004975615534931421, -0.0003679486399050802, -0.038437578827142715, -0.005241488106548786, 0.0011442016111686826, -0.0038741433527320623, 0.003247443586587906, 0.0025447802618145943, 0.01040701288729906, 0.0037032251711934805, -0.0018800990656018257, -0.017547590658068657, -0.005013597197830677, 0.00573525158688426, -0.01557253673672676, 0.00763434125110507, -0.007368468679487705, 0.0025827623903751373, -0.003817170625552535, -0.005317451432347298, -0.008280032314360142, -0.004310933873057365, -0.001946567092090845, -0.002658725716173649, -0.007064614444971085, 0.0010255086235702038, 0.002715698443353176, 0.0011204630136489868, -0.003000561846420169, -0.00152876740321517, -0.0017186764162033796, 0.009495449252426624, 0.002373862313106656, 0.01040701288729906, 0.00695066899061203, -0.0008213563705794513, 0.004177997820079327, -0.0024498258717358112, 0.004177997820079327, 0.00695066899061203, 0.0031714800279587507, 0.001196426572278142, 0.0037791889626532793, -0.0001994044432649389, -0.005621306132525206, 0.0030955167021602392, -0.006570850964635611, -0.008583886548876762, 0.00520350644364953, 0.00626699673011899, 0.001785144442692399, -0.0025067985989153385, 0.0030955167021602392, 0.004671760834753513, -0.002354871481657028, 0.005887178238481283, -0.005317451432347298, 0.006153051275759935, -0.004462861455976963, -0.004804697353392839, -0.0060391053557395935, 0.0016617035726085305, 0.01253399346023798, 0.0001899089984362945, -0.0003988088865298778, -0.0002718072209972888, -0.0008166086045093834, -0.0019750534556806087, 0.0027536803390830755, -0.008242050185799599]}\n",
"{'doc_id': 'demo-001', 'chunk_id': 4, 'text': ' large and heterogeneous chunks. Conversely, a threshold that is too high may produce small fragments and lose relevant context. Proper calibration depends on the text domain, the average paragraph length, and the embedding model used. Vertical Farming and the Urbanism of the Future Vertical farming proposes growing food in multi-level urban structures. This technique aims to reduce transportation dependency and optimize space usage in densely populated cities. Through hydroponic systems and automated nutrient control, plants can grow without traditional soil. Distributed sensors monitor humidity, temperature, and nutrient levels in real time. Moreover, integration with renewable energy allows these facilities to operate more sustainably. In some cases, agricultural buildings are architecturally designed to integrate seamlessly into the urban environment. Although it still faces economic challenges, vertical', 'source': 'local_demo', 'metadata': {'title': 'Demo', 'doc_id': 'demo-001'}, 'embedding': [-0.00291723245754838, 0.002878336003050208, -0.0032089557498693466, -0.00047648127656430006, 0.004142469726502895, 0.002431026892736554, -0.008868386037647724, -0.0005931705818511546, -0.0018378563690930605, -0.014780644327402115, -0.004609227180480957, 0.029094532132148743, -0.003111714730039239, -0.005912257824093103, -0.002460199175402522, -0.005173225421458483, 0.007623700425028801, -0.0001956976775545627, -0.006651289761066437, 0.009685211814939976, -0.0032089557498693466, 0.0020906832069158554, -0.0013710992643609643, 0.0044730897061526775, -0.0034812309313565493, 0.001983718015253544, 0.0037535056471824646, 0.0026060608215630054, 0.010190865024924278, -0.00583446491509676, 0.004687020089477301, 0.00672908267006278, 0.00032818864565342665, -0.0009383764117956161, 0.005873361136764288, 0.008012665435671806, 0.003597920062020421, -0.004006332717835903, 0.008168250322341919, -0.00431750388815999, -0.0010015831794589758, -0.00042542972369119525, -0.0035590236075222492, 0.002460199175402522, 0.0038896433543413877, -0.002362958388403058, -0.004414745140820742, 0.005251018330454826, -0.0015753055922687054, -0.006379015278071165, -0.002936680568382144, 0.001210651476867497, -0.0015266849659383297, 0.0022851654794067144, -0.0013030304107815027, -0.0008848938741721213, 0.001954545732587576, 0.00032089557498693466, 0.0033061967696994543, 0.00019448217062745243, 0.014391680248081684, 0.007818182930350304, 0.00723473634570837, -0.0046481238678097725, 0.0035201271530240774, 0.00017381843645125628, 0.00723473634570837, 0.0008119630510918796, -0.0011134103406220675, 0.003617368172854185, -0.0037924021016806364, -0.0011231345124542713, -0.002644957508891821, -0.0030728180427104235, -0.017581187188625336, -0.018436908721923828, 6.411833601305261e-05, 0.003131162840873003, 0.0015072367386892438, 0.0034812309313565493, -0.0020906832069158554, -0.0015753055922687054, 0.0039285398088395596, -0.0977078378200531, -0.003636816516518593, 0.0003379127592779696, 0.0069624618627130985, 0.003597920062020421, -0.005251018330454826, -0.0037729537580162287, -0.006145636085420847, -0.0014197197742760181, -0.0003087404475081712, 0.0008703077328391373, -0.00898507609963417, 0.009218454360961914, 0.004025780595839024, -0.002168476115912199, 0.0035201271530240774, 0.0025866127107292414, 0.0001367452641716227, -0.005367707926779985, -0.01859249547123909, -0.005406604148447514, -0.00824604369699955, 0.0009335143840871751, 0.003967436030507088, -0.0015753055922687054, -0.0005688603268936276, 0.003947988152503967, -0.006145636085420847, -0.003675712738186121, -0.0033839894458651543, -0.03702940419316292, 0.006262325681746006, 0.0020031663589179516, -0.00145861622877419, 0.004570330958813429, -0.0013808233197778463, 0.0031506111845374107, 0.00011121948773507029, -0.0003573609865270555, 0.003850746899843216, 0.005056536290794611, 0.0037340575363487005, 0.002187924226745963, 0.0027810949832201004, 0.00021879244013689458, -0.0020517867524176836, -0.0002929387555923313, -0.00030630940455012023, 0.0008459973614662886, 0.0038896433543413877, -0.0027810949832201004, 0.00028078362811356783, 0.00021149934036657214, -0.02053731679916382, -0.0020906832069158554, 0.02053731679916382, 0.006028946954756975, 0.0044730897061526775, 2.469011860739556e-06, 0.0067679788917303085, -0.0006515152053907514, -0.00241157878190279, 0.000977272866293788, 0.0016044778749346733, -0.024426959455013275, 0.0005226708017289639, 0.0063012223690748215, -0.004939847160130739, 0.0032867484260350466, 0.007662597578018904, 0.006495704408735037, 0.060056090354919434, -0.008479422889649868, 0.005562189966440201, 0.0026060608215630054, -0.003170059295371175, 0.007740390487015247, 0.004900950472801924, 0.002936680568382144, 0.0006952737458050251, 0.000724446086678654, -0.0044730897061526775, 0.00021636139717884362, 0.004161918070167303, -0.004687020089477301, -0.001711442950181663, -0.0007049978012219071, 0.0008605835027992725, 0.001225237618200481, 0.006262325681746006, 0.0017989600310102105, -0.003656264627352357, 0.008790593594312668, -0.007507011294364929, 0.0020226144697517157, 0.004764812998473644, 0.006106739863753319, 0.0007098598871380091, -0.008557215332984924, 0.0005445500719361007, 0.0037535056471824646, -0.008946179412305355, 0.015325195156037807, 0.007740390487015247, 0.001721167005598545, 0.003422885900363326, 0.00023337859602179378, -0.0025477162562310696, -0.004881502129137516, -0.0030728180427104235, -0.0007730665383860469, 0.004667571745812893, -0.0004132745962124318, -0.01236906461417675, -0.007740390487015247, 0.004220263101160526, 9.298678196500987e-05, -0.010190865024924278, -0.0008605835027992725, -0.005134329199790955, 0.002158751944079995, -0.001225237618200481, 0.0005931705818511546, 0.0019642699044197798, 0.0030144734773784876, 0.009296247735619545, 0.0016628224402666092, 0.003461782354861498, -0.0023726823274046183, 0.004434193018823862, -0.004803709220141172, -0.002149028005078435, 0.010502036660909653, -0.005717775784432888, 0.005017640069127083, -0.004259159322828054, 0.02333785966038704, -0.0005494120996445417, 0.0030533699318766594, -0.07623700797557831, 0.003461782354861498, 0.0006272050086408854, -0.000362223043339327, -0.0029755770228803158, -0.012291272170841694, 0.008323836140334606, 0.00014829264546278864, -0.0035006790421903133, 0.0007536183693446219, -0.008946179412305355, 0.0015947538195177913, 0.004589779302477837, -0.008129354566335678, 0.0019350976217538118, 0.00634011859074235, 0.0022657171357423067, -3.980806650361046e-05, 0.004025780595839024, -0.0016628224402666092, -0.001954545732587576, 0.0005372570012696087, -0.0032867484260350466, 0.004550882615149021, 0.001721167005598545, -0.002703302074223757, -0.010813208296895027, -0.0017989600310102105, 0.003831298789009452, -0.0037535056471824646, 0.004609227180480957, 0.002858887892216444, -0.0007438942557200789, 0.015014022588729858, -0.0018962010508403182, -0.0006053257384337485, -0.0019350976217538118, -0.0015072367386892438, 0.0004983605467714369, 0.005601086188107729, 0.005756672006100416, -0.0011328585678711534, -0.00015193918079603463, -0.006573496852070093, -0.0033839894458651543, 0.005251018330454826, -0.004628675524145365, 0.001672546612098813, 0.0027421985287219286, -0.00025890435790643096, 0.005212121643126011, -0.0010647898307070136, -0.01641429401934147, 0.007934872061014175, -0.002625509165227413, -0.004278607666492462, 0.0038118502125144005, -0.0005858775111846626, -0.002197648398578167, -0.009062868542969227, -0.0011863411637023091, 0.004336952231824398, -0.0030339215882122517, 0.005173225421458483, -0.10081955790519714, -0.0015461330767720938, 0.0017406154656782746, 0.004434193018823862, -0.0028394395485520363, 0.001448892173357308, 8.569370402256027e-05, -0.007662597578018904, 0.0031506111845374107, -0.001196065335534513, 0.00532881123945117, 0.004278607666492462, -0.006845771800726652, -0.0025477162562310696, -0.0024699235800653696, -0.004609227180480957, -0.002722750185057521, 0.0004618951352313161, -0.005445500370115042, -0.0012738581281155348, 0.003714609192684293, -0.0016919947229325771, 0.005289915017783642, 0.0011328585678711534, -0.0038701952435076237, -0.0020615109242498875, 0.004570330958813429, 0.0027810949832201004, 0.0011328585678711534, -0.0001470771385356784, 0.004006332717835903, 0.0013322028098627925, -0.0026060608215630054, -0.00925735104829073, -0.0025477162562310696, 0.0028394395485520363, 0.0017600635765120387, -0.00707915099337697, 0.0016044778749346733, 0.007156943902373314, -0.004123021848499775, 0.0022462690249085426, 0.008051561191678047, 0.00445364136248827, -0.0007876527961343527, -0.00029901633388362825, -0.002353234216570854, -0.008673904463648796, 0.0046481238678097725, 0.0342288613319397, -0.012602444738149643, -0.002178200287744403, -0.004511985927820206, -0.0039285398088395596, -0.00859611202031374, -0.0019448216771706939, 0.0030144734773784876, 0.007584804203361273, 0.005367707926779985, 0.0013127545826137066, 0.0010113072348758578, 0.005173225421458483, -0.013380372896790504, -0.002158751944079995, 0.008557215332984924, 0.0067679788917303085, -0.023026688024401665, 0.0029561289120465517, 0.032673001289367676, -0.004511985927820206, -0.003656264627352357, 0.00859611202031374, -0.007545907516032457, -0.00032332658884115517, 0.01446947269141674, 0.0028005430940538645, 0.0025282681453973055, -0.001191203249618411, -0.0038896433543413877, 0.005173225421458483, -0.0011863411637023091, -0.0027810949832201004, -0.00964631512761116, -0.0008703077328391373, -0.0018378563690930605, -0.0036951610818505287, 0.008168250322341919, -0.0019642699044197798, 0.007273633033037186, -0.00532881123945117, 0.0017406154656782746, -0.007740390487015247, 0.0018086840864270926, 0.003947988152503967, 0.002207372570410371, -0.00336454133503139, 0.00344233401119709, -0.004006332717835903, 0.007623700425028801, -0.0009481005254201591, 0.007818182930350304, -0.003131162840873003, 9.906435298034921e-05, -0.0005907395971007645, -0.0001689563796389848, -0.0023726823274046183, 0.0009237902704626322, -0.0010404795175418258, -0.006379015278071165, -0.0037729537580162287, 0.0018864768790081143, 0.03671823441982269, -0.0010939621133729815, 6.502996984636411e-05, 0.009490729309618473, -0.004045228939503431, -0.0013905474916100502, -0.021782001480460167, -0.0017892359755933285, 0.0019739940762519836, -0.00291723245754838, 0.002625509165227413, 0.009062868542969227, -0.008673904463648796, -0.0038896433543413877, 0.004725916776806116, -0.00025404233019798994, -0.0037729537580162287, 0.005095432512462139, 0.004511985927820206, -0.008751696906983852, -0.0025088200345635414, -0.004103573504835367, -0.0009869970381259918, 0.0011377206537872553, -0.000962686724960804, -0.0039868843741714954, -0.003656264627352357, 0.00583446491509676, -0.0007779286825098097, -0.006223429460078478, -0.0013613750925287604, 0.003539575496688485, 0.0006369290640577674, 0.002187924226745963, 0.0004084125394001603, -0.0044730897061526775, 0.0033256448805332184, 0.002878336003050208, 0.0033061967696994543, 0.003675712738186121, -0.006456807721406221, -0.0020323386415839195, -0.0015169607941061258, -0.0008168250788003206, -0.013613751158118248, 0.02007056027650833, 0.003714609192684293, -0.005445500370115042, -0.0025477162562310696, -0.007973768748342991, 0.0037924021016806364, 0.0012446858454495668, 0.0007001357735134661, 0.0016433742130175233, -0.004239711444824934, 0.007545907516032457, -3.2287077829096233e-06, -0.0033839894458651543, -0.001711442950181663, 0.0008605835027992725, -0.0007730665383860469, -0.003422885900363326, -0.0020323386415839195, 0.0010647898307070136, 0.0020323386415839195, 0.0059511540457606316, -0.00038653326919302344, -0.002149028005078435, -0.0012641340726986527, -0.01789235882461071, 0.006262325681746006, 0.0015461330767720938, 0.004725916776806116, 0.0016044778749346733, -0.0012349617900326848, -0.011435551568865776, 0.003656264627352357, 0.0010502036893740296, -0.002460199175402522, -0.00145861622877419, -0.00890728272497654, 0.0015072367386892438, 0.0008848938741721213, 0.004064677283167839, -0.004045228939503431, 0.005289915017783642, 0.001429443946108222, -0.011513344012200832, -0.003909091465175152, 0.0028199912048876286, 0.00145861622877419, 0.00047405026271007955, 0.0027421985287219286, -0.013535957783460617, -0.006845771800726652, 0.002897784346714616, -0.0007730665383860469, -0.0030533699318766594, -0.001983718015253544, -0.00599005026742816, 0.003831298789009452, 0.003170059295371175, 0.0047453646548092365, -0.0013710992643609643, 0.0020712348632514477, -0.004220263101160526, 0.6671515703201294, -0.002897784346714616, -0.008207147009670734, -0.0005737224128097296, -0.004103573504835367, -0.00047648127656430006, 0.0037729537580162287, 0.0005737224128097296, -0.0004132745962124318, 0.005912257824093103, 0.005251018330454826, 0.0013808233197778463, 0.002362958388403058, 0.0042008147574961185, 0.001006445148959756, 0.0387408472597599, 0.0011717550223693252, -0.001682270667515695, 0.004278607666492462, -0.0001689563796389848, -0.011435551568865776, -0.002382406499236822, -0.006106739863753319, 0.02131524495780468, 0.0016142019303515553, 0.0002285165392095223, 0.0071180472150444984, 0.04138580337166786, -0.00047648127656430006, 0.000724446086678654, -0.001701718894764781, -0.007156943902373314, -0.004667571745812893, 0.006262325681746006, 0.03656264767050743, -0.0026838539633899927, -0.003461782354861498, 0.0011668929364532232, -0.00043029175139963627, -0.005017640069127083, 5.682525807060301e-05, -0.020848486572504044, -0.005017640069127083, -0.0004789123486261815, -0.0007584803970530629, -0.005639982409775257, 0.0011377206537872553, -0.0010842380579560995, 0.017036637291312218, 0.00707915099337697, 0.43812939524650574, -0.0012544100172817707, -0.003656264627352357, -0.001176617108285427, -0.00336454133503139, 0.005406604148447514, 0.004706468433141708, -0.00532881123945117, -0.0019448216771706939, 0.007740390487015247, -0.008479422889649868, 0.0013808233197778463, 0.0044730897061526775, 0.001439168001525104, 0.002703302074223757, -0.004434193018823862, 0.0029561289120465517, -0.019448215141892433, 0.0005396879860199988, 0.003675712738186121, -0.0005226708017289639, 0.004103573504835367, 0.0012738581281155348, -0.003111714730039239, -0.004064677283167839, 0.002460199175402522, -0.008051561191678047, -0.0015753055922687054, -0.00145861622877419, 0.0126802371814847, -0.006379015278071165, 0.00038653326919302344, -0.0036951610818505287, 0.005678879097104073, 0.0007925148238427937, 0.001468340284191072, -0.06192312389612198, 0.0020420625805854797, 0.0013516510371118784, -0.21657532453536987, -0.0025671645998954773, 0.0028005430940538645, 0.0017503395210951567, 0.0010453416034579277, 0.0015364090213552117, 0.00010331864905310795, -0.0033256448805332184, 0.0023435100447386503, 0.0014197197742760181, -0.003714609192684293, -0.005639982409775257, 0.009412936866283417, 3.494601332931779e-05, 0.0002905077417381108, -0.0015461330767720938, -0.0009140661568380892, 0.00038896434125490487, -0.0009675488108769059, -0.09086206555366516, 0.0005129466881044209, -0.0010307554621249437, -0.011202172376215458, 0.0005785844405181706, 0.0126802371814847, 0.005095432512462139, 0.007662597578018904, 0.007857079617679119, -0.005406604148447514, -0.0008168250788003206, -0.004920398350805044, -0.0018184082582592964, 0.001468340284191072, 0.0004546020645648241, -0.013535957783460617, 0.0007536183693446219, -0.0033061967696994543, 0.0016628224402666092, -0.0015753055922687054, -0.0007390322280116379, -5.9864043578272685e-05, 0.10455361008644104, -0.00044974000775255263, -0.0003452058299444616, 0.0001956976775545627, -0.0035006790421903133, -0.003131162840873003, 0.0033839894458651543, -0.0006855496321804821, -0.0025477162562310696, 0.0032089557498693466, -0.00026862850063480437, -0.0016530983848497272, -0.0037340575363487005, 0.007156943902373314, 0.0018767528235912323, 5.4698110034223646e-05, 0.004356400575488806, 0.007934872061014175, -0.008868386037647724, -0.003422885900363326, 0.013380372896790504, 0.0015655814204365015, -0.0005567051703110337, -0.00707915099337697, -0.0006199119379743934, 0.00532881123945117, -0.001701718894764781, -0.00027227503596805036, 0.014780644327402115, 0.00291723245754838, -0.004589779302477837, -0.010113072581589222, -0.0032867484260350466, -0.0032478522043675184, -0.0022365448530763388, -0.006145636085420847, 0.003597920062020421, -0.005212121643126011, 0.005795568693429232, -0.005367707926779985, -0.006106739863753319, 0.004531434271484613, 0.000714721973054111, 0.0016044778749346733, 0.0022754413075745106, 0.0022754413075745106, 0.0007001357735134661, -0.002187924226745963, -0.0003427748160902411, 0.0037729537580162287, -0.004706468433141708, -0.0022948896512389183, 0.0008362733060494065, -0.0012738581281155348, -0.00828493945300579, -0.005212121643126011, -0.0019642699044197798, -0.001711442950181663, -0.0040841251611709595, -0.0020031663589179516, -0.005484397057443857, 0.00532881123945117, 0.002664405619725585, -0.00027956810663454235, -0.005251018330454826, 0.0015947538195177913, -0.0034812309313565493, 0.006806875579059124, -0.002664405619725585, -0.0023337858729064465, 0.01711443066596985, 0.005056536290794611, 0.0006661014049313962, -0.0012933063553646207, -0.00044487795094028115, -0.0033256448805332184, 0.0023337858729064465, 0.003617368172854185, -0.004706468433141708, 0.0017892359755933285, -0.025671645998954773, 0.000359792000381276, 0.004123021848499775, 0.0013419269816949964, -0.005484397057443857, -0.0017795118037611246, 0.00431750388815999, 0.010035280138254166, -0.003422885900363326, 0.016647672280669212, 0.004842605907469988, -0.006223429460078478, -0.0006417911499738693, 0.0016336501576006413, 0.0016142019303515553, -0.005212121643126011, 0.0073903221637010574, 0.004259159322828054, -0.0023143377620726824, 0.002187924226745963, 0.011435551568865776, -0.0033061967696994543, 0.02069290168583393, -0.0004910674761049449, -0.0047453646548092365, 0.0018281323136761785, -0.0006077567231841385, -0.0033256448805332184, 0.004959295503795147, -0.0013613750925287604, 0.0006126188091002405, -0.000503222574479878, -0.0001689563796389848, 0.00074875628342852, -0.010190865024924278, -0.004356400575488806, -0.0008508594473823905, 0.02255992963910103, 0.0020712348632514477, 0.010891000740230083, -0.006262325681746006, -0.008518318645656109, 0.004434193018823862, 0.0010307554621249437, -0.009918591007590294, 0.0014877885114401579, -0.0018670287681743503, 0.0017892359755933285, -0.0020906832069158554, 0.002431026892736554, 0.0009481005254201591, 0.005406604148447514, -0.0059511540457606316, 0.006262325681746006, 0.0013613750925287604, -0.003675712738186121, 0.00824604369699955, 0.0008216871065087616, -0.003947988152503967, -4.938023721479112e-06, 0.00723473634570837, -0.000991859007626772, -0.0019739940762519836, 0.005639982409775257, 0.0008314112201333046, -0.002012890297919512, 0.016258709132671356, 0.01727001555263996, -0.005017640069127083, -0.0016336501576006413, 0.005289915017783642, 0.007701493799686432, -0.008168250322341919, -0.0006028946954756975, -0.0005275328876450658, 0.0013322028098627925, -0.0063012223690748215, -0.0005153777310624719, -0.0015364090213552117, 0.005173225421458483, 0.010113072581589222, 0.004628675524145365, -0.0028005430940538645, 0.0032089557498693466, 0.011435551568865776, 0.0028199912048876286, -0.010035280138254166, 0.000719584000762552, -0.0028394395485520363, -0.03438444808125496, -0.0009967210935428739, -0.0032478522043675184, -0.0016530983848497272, -0.005795568693429232, -0.0026060608215630054, -0.001429443946108222, 0.006223429460078478, 0.007156943902373314, -0.005484397057443857, 0.0015947538195177913, -0.007740390487015247, -0.0012349617900326848, -0.007468115072697401, 0.00011121948773507029, 0.0016239261021837592, 0.006651289761066437, 0.004687020089477301, -0.006067843176424503, 0.0005810154834762216, -0.0030144734773784876, -0.007623700425028801, -0.00890728272497654, -0.0024699235800653696, 0.005251018330454826, 0.004006332717835903, -0.004667571745812893, 0.023026688024401665, -0.0006952737458050251, 0.011513344012200832, -0.005095432512462139, -0.005601086188107729, -0.006184532307088375, -0.00018232702859677374, 0.0005129466881044209, 0.007973768748342991, -0.00038896434125490487, -0.00035249890061095357, -0.0010210312902927399, 0.0027810949832201004, -0.002255992963910103, -0.007312529254704714, 0.00019205112766940147, 0.027227502316236496, 0.0013710992643609643, -0.0011474448256194592, 0.006651289761066437, -0.0003816712414845824, -0.0027616466395556927, 0.008012665435671806, 0.002936680568382144, 0.0004473089938983321, -0.0018962010508403182, 0.005601086188107729, -0.0025088200345635414, 0.02053731679916382, -0.01781456544995308, -0.0006126188091002405, -0.0002637664438225329, -0.002382406499236822, 0.0008605835027992725, 0.0035006790421903133, 0.0011523067951202393, -0.00898507609963417, -0.002129579661414027, -0.006145636085420847, -0.004395296797156334, 0.004531434271484613, -0.019448215141892433, -0.0010793759720399976, -0.03438444808125496, -0.0004618951352313161, 0.0023046135902404785, 0.0009675488108769059, -0.007973768748342991, -0.0026060608215630054, 0.006262325681746006, -0.0015169607941061258, 0.0063012223690748215, 0.002450475236400962, 0.0019059251062572002, -0.00032818864565342665, -0.00431750388815999, 0.002644957508891821, -0.0028005430940538645, 0.0019350976217538118, -0.0036951610818505287, 0.005601086188107729, 0.009685211814939976, 0.0008994800155051053, 0.006184532307088375, -0.0008848938741721213, -0.009685211814939976, 0.008090457879006863, 0.0016044778749346733, -0.0007633424829691648, 0.00037194712786003947, -0.00016287880134768784, 0.0007876527961343527, 0.0044730897061526775, -0.02147083170711994, 0.00028321464196778834, 0.0014197197742760181, -0.0059511540457606316, 0.0010939621133729815, 0.001429443946108222, 0.004511985927820206, -0.35349076986312866, 0.001429443946108222, 0.001429443946108222, -0.006923564709722996, 0.002936680568382144, 0.006534600630402565, -0.0003257576026953757, -0.0004594640922732651, -0.004784261342138052, -0.005056536290794611, 0.0027421985287219286, 0.0014002715470269322, -0.0040841251611709595, -3.980806650361046e-05, -0.002664405619725585, 0.004356400575488806, -0.0030144734773784876, -0.0005567051703110337, 0.0028199912048876286, -0.005134329199790955, 0.11388875544071198, -0.008051561191678047, -0.0022948896512389183, -0.009023971855640411, 0.0030144734773784876, 0.0022851654794067144, -0.0012933063553646207, -0.006612393539398909, -0.0010599278612062335, -0.010113072581589222, -0.005173225421458483, 0.011902308091521263, -0.006417911499738693, 0.004687020089477301, 0.00688466802239418, -0.0012398238759487867, -0.0004157056100666523, -0.0015558573650196195, -0.0038701952435076237, 0.0001811115216696635, -0.0009286522981710732, 0.0015072367386892438, -0.0027421985287219286, -0.0037535056471824646, 0.0016336501576006413, -0.0017892359755933285, -0.004395296797156334, 0.0038896433543413877, -0.0031895076390355825, 0.013224787078797817, -0.003111714730039239, 0.0007049978012219071, -0.001205789390951395, -0.002139303833246231, -0.004706468433141708, -0.005756672006100416, -0.004025780595839024, -0.006612393539398909, -0.006495704408735037, -0.00149751256685704, 0.01859249547123909, -0.0016142019303515553, -0.0018767528235912323, -0.001439168001525104, -0.0028394395485520363, 0.0008459973614662886, 0.0012835822999477386, 0.0046481238678097725, 0.0017503395210951567, -0.001721167005598545, 0.005134329199790955, 0.00145861622877419, -0.0013516510371118784, -0.005017640069127083, 0.0018086840864270926, -0.0019350976217538118, 0.0008703077328391373, -0.0012835822999477386, 0.0025671645998954773, -0.013535957783460617, 0.00925735104829073, -0.0010647898307070136, -0.0035006790421903133, 0.00037680918467231095, 0.0014002715470269322, 0.005289915017783642, -0.007895976305007935, -0.0011085482547059655, -0.006573496852070093, 0.015402987599372864, -0.07903755456209183, 0.006145636085420847, 0.0033839894458651543, 0.0005761533975601196, 0.001215513446368277, -0.0010404795175418258, -0.002450475236400962, 0.006067843176424503, 0.0032673003152012825, -0.014391680248081684, 0.003111714730039239, -0.0012544100172817707, -0.0016433742130175233, -0.00018718907085713, 0.009374040178954601, -0.001181479194201529, -0.0035201271530240774, 0.004550882615149021, -0.0023046135902404785, 0.0034812309313565493, 0.004278607666492462, 0.007040254306048155, 0.08028224110603333, -0.003636816516518593, -0.0022365448530763388, 0.00863500777631998, 0.0019934421870857477, -0.009763004258275032, -0.0009189281845465302, 0.009140661917626858, -0.000714721973054111, 0.006534600630402565, -0.0047453646548092365, 0.00021636139717884362, 0.004687020089477301, -0.010346450842916965, 0.0009383764117956161, 0.00028321464196778834, 0.002936680568382144, 0.006184532307088375, -0.003422885900363326, -0.00044487795094028115, 0.0014197197742760181, 0.0012349617900326848, -0.003539575496688485, -0.002110131550580263, 0.002625509165227413, -0.0017406154656782746, 0.0025866127107292414, 0.0014099956024438143, -0.0044730897061526775, 0.0037924021016806364, -0.0030533699318766594, -0.009840796701610088, 0.0005688603268936276, 0.002644957508891821, -0.0015558573650196195, 0.0009432384395040572, -0.0039285398088395596, -0.002187924226745963, 0.0046481238678097725, -0.01727001555263996, -0.009763004258275032, -0.01408050861209631, 0.009724107570946217, 0.002217096509411931, 0.004764812998473644, -0.0003136025043204427, -0.002110131550580263, -0.002012890297919512, 0.00042542972369119525, 0.0028394395485520363, -0.005212121643126011, 0.0028394395485520363, -0.00723473634570837, -0.004414745140820742, -0.004978743381798267, 0.051343291997909546, -0.0013030304107815027, 0.0018573045963421464, -0.014002716168761253, -0.002217096509411931, -0.006145636085420847, 0.016958845779299736, 0.005795568693429232, -0.0004400158941280097, -0.00723473634570837, -0.004803709220141172, 4.2846852011280134e-05, -0.0003354817454237491, 0.009918591007590294, 0.003909091465175152, -0.007156943902373314, -0.0059511540457606316, -0.019059251993894577, -0.006456807721406221, -0.009140661917626858, -0.010035280138254166, 0.0004157056100666523, -0.0025282681453973055, -0.01789235882461071, -0.0059511540457606316, 0.008401629514992237, -0.0026060608215630054, 0.001954545732587576, 0.003909091465175152, -0.0684577226638794, 0.002139303833246231, -0.0037340575363487005, -0.002644957508891821, 0.002936680568382144, 0.0034812309313565493, 0.003947988152503967, -0.003170059295371175, 0.0002917232341133058, 0.0007827907102182508, -0.00344233401119709, -0.00021514587569981813, -0.004356400575488806, -0.008557215332984924, -0.005212121643126011, 0.005289915017783642, 0.0027421985287219286, -0.0023337858729064465, 0.0016433742130175233, 0.002878336003050208, -0.002197648398578167, -0.0009140661568380892, -0.002858887892216444, -0.0008508594473823905, -0.009412936866283417, -0.000724446086678654, -0.00017624945030547678, -0.005367707926779985, 0.0030728180427104235, 0.002129579661414027, 0.003675712738186121, -0.002168476115912199, 0.0047453646548092365, 0.0028005430940538645, 0.0014002715470269322, -0.0012641340726986527, 0.00299502513371408, -0.0011279964819550514, -6.806875899201259e-05, 0.006612393539398909, 0.004375848453491926, -0.003422885900363326, -0.0026838539633899927, 0.0019642699044197798, 0.005134329199790955, -0.0016044778749346733, -0.005445500370115042, -0.002450475236400962, -0.0006661014049313962, -0.005173225421458483, -0.004492538049817085, 0.0006661014049313962, -0.0040841251611709595, 0.0039285398088395596, -0.006379015278071165, -0.0025088200345635414, -0.025827230885624886, -0.001230099587701261, 0.0006272050086408854, 0.003170059295371175, 0.0016044778749346733, -0.00925735104829073, -0.007740390487015247, -0.001448892173357308, -0.008207147009670734, 0.009957486763596535, 0.006028946954756975, -0.00634011859074235, -0.03454003110527992, -0.0018475805409252644, -0.002187924226745963, -0.0027421985287219286, 0.0025477162562310696, -0.002703302074223757, 0.004142469726502895, 0.0003452058299444616, 0.0019934421870857477, -0.010113072581589222, 0.0008654455887153745, 0.0017503395210951567, -0.0016239261021837592, -0.006145636085420847, -0.0016628224402666092, -0.007351425476372242, -0.0015753055922687054, 0.0007098598871380091, -0.003617368172854185, 0.0011620309669524431, -0.0006126188091002405, -0.002936680568382144, -0.003403437789529562, -0.0033061967696994543, 0.0069624618627130985, 0.01376933604478836, -0.0009092041291296482, 0.005406604148447514, 0.00149751256685704, 0.0018378563690930605, -0.0003354817454237491, 0.004006332717835903, -0.01236906461417675, 0.0005323949153535068, -0.0013710992643609643, -0.00043515386641956866, 0.006495704408735037, -0.000724446086678654, 0.0033061967696994543, 0.0020226144697517157, 0.0003184645320288837, -0.016025330871343613, -0.018825873732566833, -0.0023435100447386503, -0.009140661917626858, -0.0018086840864270926, 0.006845771800726652, -0.007312529254704714, 0.004628675524145365, -4.5885633880971e-05, -0.0029755770228803158, 0.0030533699318766594, -0.003831298789009452, 0.00898507609963417, -0.0023435100447386503, -0.0011085482547059655, 0.04636454954743385, 0.0013613750925287604, 0.0023143377620726824, -0.007584804203361273, -0.003967436030507088, -0.0013224787544459105, -0.006106739863753319, 0.0011328585678711534, -0.013691543601453304, -0.0028005430940538645, 0.01073541585355997, -0.0010307554621249437, -0.002878336003050208, -0.00532881123945117, 0.006067843176424503, 0.0025088200345635414, -0.00020785280503332615, -0.0013322028098627925, 0.009763004258275032, 0.10517594963312149, -0.009763004258275032, -0.001215513446368277, 0.003131162840873003, -0.0011036862852051854, 0.0013224787544459105, 0.0004716192197520286, 0.0014099956024438143, -0.0015364090213552117, 0.0012738581281155348, -0.0005688603268936276, 0.0013224787544459105, 0.00022487000387627631, 0.0015461330767720938, 0.0010502036893740296, 0.003539575496688485, -0.0034812309313565493, 0.007040254306048155, 0.004842605907469988, -0.005678879097104073, 0.0011863411637023091, 0.001448892173357308, 0.0034812309313565493, 0.002625509165227413, -0.13255903124809265, -0.007001358084380627, 0.004025780595839024, 0.0005639982409775257, -0.0011085482547059655, -0.007623700425028801, -0.0020226144697517157, -0.002936680568382144, 0.0026060608215630054, -0.0025477162562310696, 0.005056536290794611, 0.0002844301634468138, -0.008790593594312668, -0.010190865024924278, -0.0019059251062572002, 0.009062868542969227, 0.007001358084380627, 0.004628675524145365, -0.0008654455887153745, -0.0031895076390355825, -0.0013905474916100502, 0.002362958388403058, -0.00291723245754838, 0.009179558604955673, -0.0016336501576006413, 0.003170059295371175, -0.0013905474916100502, -0.01867028698325157, -0.0020323386415839195, 0.03920760378241539, -0.004336952231824398, 0.00038896434125490487, 0.001210651476867497, 0.002362958388403058, 0.0035201271530240774, -0.0020517867524176836, 0.004492538049817085, -0.009218454360961914, 0.0018086840864270926, -0.0001993442274397239, -0.0010793759720399976, 0.001191203249618411, -0.0073903221637010574, 0.005756672006100416, 0.0013322028098627925, 0.0032089557498693466, -0.009879694320261478, -0.0015072367386892438, -0.0038118502125144005, -0.005717775784432888, -0.005289915017783642, -0.0008216871065087616, -0.004862053785473108, 0.0003354817454237491, 0.005367707926779985, 0.0010356174316257238, -0.003461782354861498, -0.0028199912048876286, 0.003675712738186121, -0.005601086188107729, 0.0033256448805332184, -0.0017503395210951567, -0.008323836140334606, -0.003345093224197626, -0.00890728272497654, 0.0013419269816949964, 0.0030728180427104235, -0.005795568693429232, -0.00824604369699955, 0.002440751064568758, 0.004142469726502895, 0.005639982409775257, 0.0033839894458651543, -0.0006320670363493264, 0.002226820681244135, -0.0022462690249085426, -0.006534600630402565, 0.0004594640922732651, 0.0026838539633899927, -0.002119855722412467, -0.014702850952744484, 0.001225237618200481, 0.0037729537580162287, 0.0010696519166231155, 0.010113072581589222, 0.001730891177430749, 0.0006612393772229552, 0.0010550657752901316, 0.013535957783460617, 0.09023971855640411, 0.00025768886553123593, -0.001210651476867497, 0.0030922661535441875, 0.0030728180427104235, 0.007973768748342991, -0.010190865024924278, 0.000714721973054111, -0.005212121643126011, -0.006223429460078478, -0.0007827907102182508, -0.004628675524145365, -0.002158751944079995, -0.00299502513371408, 0.009685211814939976, -0.005523293279111385, -0.011279964819550514, -0.001730891177430749, -0.000495929503813386, 0.003947988152503967, -0.0003184645320288837, -0.0029755770228803158, 0.005173225421458483, 0.0025477162562310696, -0.010424243286252022, -0.0018184082582592964, -0.0008216871065087616, 0.01065762247890234, -0.005251018330454826, -0.0005129466881044209, -0.0047453646548092365, 0.004395296797156334, 0.0069624618627130985, -0.0029561289120465517, 0.03671823441982269, -0.0007049978012219071, -0.0005007915897294879, -0.005445500370115042, -0.006184532307088375, 0.0006004636525176466, 0.005523293279111385, -0.0015461330767720938, 0.0025477162562310696, -0.0020906832069158554, -0.0016044778749346733, -0.004006332717835903, -0.00344233401119709, 0.0003257576026953757, -0.008479422889649868, -0.005795568693429232, -0.004161918070167303, 0.005134329199790955, -0.004589779302477837, -0.00043272279435768723, -0.0011863411637023091, 0.0038701952435076237, 0.006806875579059124, -0.008790593594312668, -0.0019642699044197798, 0.001701718894764781, -0.0020226144697517157, -0.0025477162562310696, 0.037496160715818405, 0.0001689563796389848, -0.0005591362132690847, 0.0011182724265381694, -0.0030922661535441875, -0.004939847160130739, -0.002625509165227413, -0.003656264627352357, 0.005212121643126011, -0.007662597578018904, 0.0039285398088395596, 0.0024796477518975735, 0.004687020089477301, -0.004842605907469988, 0.004103573504835367, -0.0029755770228803158, 0.0006904116598889232, 0.0032089557498693466, 0.00532881123945117, -0.0015364090213552117, 0.007429218385368586, 0.004181366413831711, -0.005289915017783642, 0.0019350976217538118, 0.00482315756380558, -0.0012446858454495668, 0.004220263101160526, 0.0024796477518975735, 0.0009529625531286001, -0.0027421985287219286, 0.0005858775111846626, 0.004142469726502895, -0.002187924226745963, 0.0038118502125144005, 0.005367707926779985, 0.004939847160130739, 0.0038701952435076237, -0.005095432512462139, -0.0011182724265381694, 0.002703302074223757, -0.00336454133503139, 0.0071180472150444984, -0.009023971855640411, 0.0013710992643609643, -0.003170059295371175, -0.02333785966038704, -0.004142469726502895, -0.004900950472801924, -0.006067843176424503, 0.0017406154656782746, 0.005912257824093103, 0.002401854610070586, 0.0035590236075222492, -0.0020906832069158554, -0.015714159235358238, 0.0009043420432135463, 0.007468115072697401, -0.009685211814939976, 0.00828493945300579, -0.0126802371814847, 0.0029755770228803158, 0.005056536290794611, -0.0020420625805854797, -0.0164920873939991, -0.002110131550580263, -0.0013808233197778463, 0.0037729537580162287, -0.004725916776806116, -0.0018864768790081143, 0.0036951610818505287, -0.005523293279111385, 0.0007925148238427937, 0.006067843176424503, -0.0005639982409775257, 0.009607418440282345, -0.002207372570410371, 0.00038653326919302344, 0.010424243286252022, 0.004336952231824398, 0.002936680568382144, -0.0022365448530763388, 0.005639982409775257, 0.002255992963910103, -0.00011668929801089689, 0.0010550657752901316, 0.0023046135902404785, 0.006106739863753319, -0.006145636085420847, 0.0010842380579560995, -0.00025647334405221045, -0.0003354817454237491, 0.005095432512462139, -0.003539575496688485, 0.0035006790421903133, -0.001205789390951395, -0.005445500370115042, 0.00291723245754838, -0.0011474448256194592, -0.005251018330454826, 0.0005129466881044209, 0.004278607666492462, 0.01579195261001587, -0.004842605907469988, 0.005251018330454826, 0.0023240619339048862, -0.0005858775111846626, -0.006495704408735037, -0.00037437814171426, -0.003170059295371175, 0.0025866127107292414, 0.0030339215882122517, -0.00145861622877419, -0.0039868843741714954]}\n",
"{'doc_id': 'demo-001', 'chunk_id': 5, 'text': ' some cases, agricultural buildings are architecturally designed to integrate seamlessly into the urban environment. Although it still faces economic challenges, vertical farming represents a potential solution for food security in megacities.', 'source': 'local_demo', 'metadata': {'title': 'Demo', 'doc_id': 'demo-001'}, 'embedding': [-0.0032012788578867912, 0.0012100072344765067, 0.0028582848608493805, -0.002353321062400937, 0.0022389895748347044, -0.0020674928091466427, -0.0013148109428584576, 0.00014946448209229857, -0.0028201742097735405, -0.015472848899662495, -0.004230261780321598, 0.028659069910645485, -0.001391031895764172, -0.0010528016136959195, -0.002057964913547039, -0.006288226693868637, 0.0046875872649252415, -0.005907122045755386, -0.0016863880446180701, 0.010442267172038555, 0.0005097274552099407, 0.0004239788977429271, 0.0009479977888986468, 0.0007479178602807224, -0.0024771802127361298, 0.0012862281873822212, 0.007431540638208389, -0.0007717369007878006, -0.0005406922427937388, -0.0067455521784722805, 0.004592311102896929, 0.004878139588981867, -0.0038491571322083473, -0.010823371820151806, 0.0021722964011132717, 0.0037919911555945873, 0.008536743931472301, -0.004325537942349911, 0.00194363365881145, -0.00028344657039269805, -0.0014577251859009266, -0.0017435537884011865, 0.000412069377489388, -0.0009289425797760487, 0.007507761009037495, -0.006021453067660332, -0.00781264528632164, 0.000347757973941043, 0.003163168439641595, -0.005183022934943438, -0.003086947603151202, 0.003620494157075882, -0.001109967241063714, -0.002610566793009639, -0.0035442730877548456, 0.005945232696831226, 0.0006145312217995524, -0.0018959955777972937, -0.0016006394289433956, -0.007545872125774622, 0.010594709776341915, 0.004287427291274071, 0.007965086959302425, -0.006250116508454084, 0.005030581261962652, -0.00195316132158041, 0.007850755006074905, 0.005526017397642136, -0.0011480777757242322, -0.0018483574967831373, -0.00010599472443573177, -0.0013529214775189757, -0.0032012788578867912, -0.002381904050707817, -0.023933371528983116, -0.01501552201807499, 0.0017244984628632665, -0.0010337464045733213, 0.0007526816334575415, 0.0023056829813867807, -4.0492366679245606e-05, -0.0022771002259105444, 0.008955958299338818, -0.08109907060861588, -0.0024581248871982098, 0.0013148109428584576, 0.006859883666038513, 0.0020007994025945663, 0.0017530813347548246, -0.004859084263443947, 0.0026486774440854788, 0.011890465393662453, -0.0006621693610213697, -0.00011016306234523654, -0.008536743931472301, 0.006669331341981888, 0.00533546507358551, -0.005068691913038492, 0.0012767005246132612, 0.0022771002259105444, -0.0016959155909717083, 0.0036395492497831583, -0.027744416147470474, -0.004744752775877714, -0.006669331341981888, 0.002667732536792755, 0.0012100072344765067, -0.002782063791528344, -0.007240988314151764, 0.006859883666038513, -0.005564127583056688, -0.0035252179950475693, -0.006021453067660332, -0.03750069811940193, 0.002629621885716915, 0.0022008793894201517, 0.0038682122249156237, 0.006135784555226564, -0.0018674127059057355, 0.0018578851595520973, 0.000986108323559165, -0.0006097674486227334, 0.004477979149669409, 0.005640348419547081, 0.004268371965736151, -0.0014386700931936502, 0.004173095803707838, 0.001257645315490663, 0.0010003997012972832, -0.0024009591434150934, -0.005754680372774601, -0.006173895206302404, 0.0008955959347076714, -0.004211206454783678, -0.0049162497743964195, 0.0002500999253243208, -0.009756279177963734, -0.0038491571322083473, 0.014558196999132633, 3.6472904412221396e-06, 0.0009194149752147496, 0.005983342882245779, 0.00632633687928319, 0.0010909120319411159, 0.0005144912283867598, 0.0002596275298856199, 0.005030581261962652, -0.02637244015932083, -0.001781664090231061, 0.002362848725169897, -0.004134985618293285, 0.0019341061124578118, 0.007736424449831247, 0.002915450371801853, 0.03750069811940193, -0.016844825819134712, 0.0016578052891418338, -0.006669331341981888, -0.0014958357205614448, 0.003048837184906006, 0.013414883054792881, 0.00394443329423666, -0.0006288226577453315, 0.0014196147676557302, -0.006669331341981888, 0.0031060026958584785, 0.004154040478169918, -0.0014577251859009266, 0.004287427291274071, 0.001095675746910274, -0.004096874967217445, -0.0005740388878621161, 0.0026867876295000315, 5.0913196901092306e-05, -0.002724898047745228, 0.007202877663075924, -0.008460523560643196, 0.0037919911555945873, 0.003125058254227042, 0.0003787227033171803, 0.002229462144896388, -0.01021360419690609, -0.002248517470434308, 0.002896395279094577, -0.007583982311189175, 0.007965086959302425, 0.004230261780321598, -0.0010575654450803995, 0.016616161912679672, 0.004363648127764463, -0.0001327911450061947, -0.0028201742097735405, 0.004306482616811991, -0.0011052035260945559, 0.0032584446016699076, -0.0014386700931936502, -0.0070123253390192986, -0.0035252179950475693, 0.004096874967217445, 0.0007669730694033206, -0.012271569110453129, -0.003220334416255355, -0.0010242187418043613, 0.0017530813347548246, -0.00035252177622169256, 0.004439868964254856, 0.0035061626695096493, 0.0038491571322083473, 0.0052973548881709576, -0.003334665670990944, 0.0019245785661041737, -0.0019626887515187263, 0.005830900743603706, -0.0028392295353114605, -0.002248517470434308, 0.007736424449831247, -0.0018769402522593737, 0.004077819641679525, -0.00533546507358551, 0.01501552201807499, 0.003029781626537442, 0.007088546175509691, -0.06585487723350525, 0.0011623691534623504, 0.0015530013479292393, 0.0012004795717075467, -0.0024295421317219734, -0.02057965099811554, 0.01051848754286766, 0.002115130890160799, -0.0005954760126769543, 0.0005264008068479598, -0.012119126506149769, 0.0003406122559681535, -0.0015911118825897574, -0.0046113659627735615, -0.0011623691534623504, 0.01067093014717102, 0.001524418592453003, 0.0015911118825897574, 0.0002381904050707817, -0.000976580660790205, 0.0012767005246132612, -0.000986108323559165, -0.0070123253390192986, 0.007431540638208389, 0.000416833208873868, 0.002782063791528344, -0.005411685910075903, -0.004363648127764463, 0.0020484374836087227, -0.0004859084147028625, 0.0031060026958584785, 0.00636444753035903, -0.003601438831537962, 0.022408952936530113, -0.005449796095490456, -0.0010623291600495577, -0.002534345956519246, -0.00046208937419578433, 0.0003048837243113667, 0.0008098473772406578, 0.007279098499566317, -0.0016578052891418338, 0.0005859484081156552, -0.0037538805045187473, 0.0033156105782836676, -0.0008860682719387114, -0.007393429987132549, 0.0003620494098868221, 0.0032012788578867912, -0.003067892277613282, 0.0032393895089626312, -0.0016768603818491101, -0.011433139443397522, 0.009413284249603748, -0.0022104070521891117, -0.001667332835495472, 0.008689185604453087, -0.002801119117066264, 0.0028201742097735405, -0.007583982311189175, -0.0014958357205614448, 0.005411685910075903, 0.0013148109428584576, 0.005526017397642136, -0.16097860038280487, -0.00010956758342217654, 0.0002905922883655876, 0.003163168439641595, -0.0017721365438774228, -0.0005883302656002343, 0.0064025577157735825, -0.008917848579585552, 0.0033918311819434166, 0.0036395492497831583, 0.005678459070622921, 0.002077020239084959, -0.001381504349410534, -0.00038110464811325073, 0.0008431940223090351, -0.010137383826076984, -0.0007669730694033206, -0.002610566793009639, -0.00016196946671698242, 0.0009194149752147496, 0.006859883666038513, -0.0005406922427937388, 0.006288226693868637, 0.002743953373283148, -0.0046304212883114815, -0.0038110464811325073, 0.006516889203339815, 0.0023152106441557407, -0.0003215570468455553, 0.0001941251684911549, 0.004801918286830187, -0.005678459070622921, -0.0006716969073750079, -0.005907122045755386, 0.0033156105782836676, 0.0015720566734671593, 0.006288226693868637, 0.004744752775877714, 0.0038491571322083473, 0.008384302258491516, 0.001667332835495472, 0.004497034940868616, 0.007164767477661371, 0.0014196147676557302, 0.0018864680314436555, 0.0024581248871982098, -0.005030581261962652, -0.0028582848608493805, 0.003772936062887311, 0.03612871840596199, -0.01310999970883131, -0.0022104070521891117, -0.0018293021712452173, -0.0052973548881709576, -0.00819374993443489, -0.005945232696831226, 0.0031441133469343185, 0.0052973548881709576, 0.0007669730694033206, 0.007660203147679567, -0.00045732554281130433, 0.008651075884699821, -0.012805115431547165, 0.002534345956519246, 0.011814244091510773, 0.00788886658847332, -0.013719767332077026, 0.0006026217015460134, 0.023018721491098404, -0.006593110039830208, -0.0034680520184338093, 0.0025534010492265224, -0.0024581248871982098, 0.0017626089975237846, 0.02073209173977375, 0.0009384701261296868, -0.0002477180096320808, 0.0017911918694153428, -0.0018864680314436555, -0.0003036927664652467, 0.0018197746248915792, -0.0033918311819434166, -0.011890465393662453, -0.0011433139443397522, -0.005754680372774601, -0.008536743931472301, 0.007469650823622942, 0.0005835664924234152, 0.0023056829813867807, -0.005869011394679546, 0.00033823036937974393, -0.008994069881737232, 0.003601438831537962, -0.0024200144689530134, 0.0018293021712452173, -0.00011194949183845893, 0.0017911918694153428, -0.002743953373283148, 0.007660203147679567, 0.0036586043424904346, 0.006859883666038513, -0.004039709456264973, -0.003296555019915104, 0.0021532413084059954, 0.0006669331341981888, 0.0012195348972454667, -0.0003215570468455553, -0.004134985618293285, -0.0024390697944909334, 4.674486626754515e-05, 0.0017626089975237846, 0.03201279044151306, -0.0017244984628632665, 0.005183022934943438, 0.003448996925726533, -0.004154040478169918, 7.145712152123451e-05, -0.03247011452913284, -0.010137383826076984, -0.0021722964011132717, -0.0013148109428584576, -0.0008670130046084523, 0.00819374993443489, -0.0070504359900951385, -0.003029781626537442, 0.008994069881737232, -0.006212005391716957, -0.00020007992861792445, 0.008803517557680607, 0.003086947603151202, -0.002610566793009639, -0.0011718968162313104, -0.00636444753035903, 0.0008384301909245551, 0.00046208937419578433, -0.009146511554718018, -0.0016959155909717083, -0.012576453387737274, 0.0064025577157735825, -0.0019626887515187263, -0.0049543604254722595, -0.002972616348415613, -0.0019912717398256063, -9.706258424557745e-05, 0.0009575253934599459, 0.002934505697339773, 0.003220334416255355, 0.004706642124801874, 0.004516089800745249, 0.004268371965736151, -0.001400559558533132, 0.0037919911555945873, -0.0010575654450803995, -0.0033727760892361403, -3.736612052307464e-05, 0.007126656360924244, 0.017530811950564384, 0.007698314264416695, -0.004878139588981867, -0.003563328180462122, -0.0068217734806239605, 0.00394443329423666, 0.005602238234132528, 7.175486098276451e-05, 0.0019912717398256063, -0.004744752775877714, 0.005449796095490456, -0.000824138754978776, 0.0002810646838042885, 0.0015530013479292393, 8.158021228155121e-05, -0.0008527216850779951, -0.0008384301909245551, -0.005106802098453045, 0.01615883782505989, -0.0014958357205614448, 0.004516089800745249, 0.001371976686641574, -0.001371976686641574, -0.003125058254227042, -0.016844825819134712, 0.0038872673176229, -0.0032012788578867912, 0.006212005391716957, 0.004573255777359009, -0.004039709456264973, 4.704260209109634e-05, 0.005183022934943438, 0.005792790558189154, -0.005678459070622921, 2.4414517611148767e-05, -0.010061162523925304, 0.0019150507869198918, 0.005449796095490456, -3.1634663173463196e-06, -0.0024581248871982098, 0.0014958357205614448, 0.0012100072344765067, -0.007736424449831247, -0.004477979149669409, 0.002381904050707817, 0.002591511467471719, 0.0005049636820331216, 0.005564127583056688, -0.003963488154113293, -0.0005788026610389352, 0.004878139588981867, -0.0004430341359693557, -0.002248517470434308, 0.000833666417747736, 0.0021722964011132717, -0.0007288625929504633, -0.001543473801575601, 0.0017149709165096283, -0.003334665670990944, 0.0036395492497831583, -0.002496235305443406, 0.6219627857208252, 0.0008098473772406578, -0.00815563928335905, -0.002782063791528344, -0.005373575259000063, -0.0033156105782836676, 0.000833666417747736, 0.017835697159171104, 0.002391431713476777, 0.00035966752329841256, 0.0005764207453466952, 0.0016387499636039138, 0.004782863426953554, 0.0038301015738397837, -0.0024581248871982098, 0.09085534512996674, 0.0005930940969847143, -0.0012862281873822212, 0.007736424449831247, -0.00533546507358551, -0.008994069881737232, -0.006173895206302404, -0.008003197610378265, 0.024390697479248047, 0.001381504349410534, -0.0006716969073750079, 0.007965086959302425, 0.04542767256498337, 0.015091744251549244, 0.0011528414906933904, 0.003296555019915104, -0.0038110464811325073, -4.466070095077157e-05, 0.004230261780321598, 0.03536651283502579, -0.0012767005246132612, -0.0049543604254722595, -0.0033727760892361403, -0.0023152106441557407, -0.0049162497743964195, 0.003334665670990944, 0.0036395492497831583, -0.0026867876295000315, 0.0022675725631415844, 0.004211206454783678, -0.003563328180462122, 0.0005430741002783179, 0.005830900743603706, 0.014863081276416779, 0.0016768603818491101, 0.4829358160495758, 0.0018864680314436555, -0.0017054433701559901, 0.002115130890160799, -0.0067455521784722805, 0.005983342882245779, 0.005183022934943438, -0.002782063791528344, -0.005640348419547081, 0.0019912717398256063, -0.004039709456264973, 0.004363648127764463, 0.003086947603151202, -0.0010432739509269595, -8.277117012767121e-05, -0.007850755006074905, 0.0006288226577453315, -0.012957558035850525, -5.031772525398992e-05, 0.0070504359900951385, 0.0023056829813867807, 0.0068217734806239605, -0.001400559558533132, -0.006783662363886833, -0.002534345956519246, 0.0013529214775189757, -0.0034299418330192566, 0.00023938134836498648, 0.0017911918694153428, -0.027134649455547333, -0.009908720850944519, -0.0014100871048867702, -0.005449796095490456, 0.0067074415273964405, -0.0008193749818019569, 0.0011861881939694285, -0.04542767256498337, 0.0036395492497831583, -0.003448996925726533, -0.21097952127456665, -0.00632633687928319, 0.0017054433701559901, 0.0009146510856226087, -0.00025367276975885034, 0.0068217734806239605, 0.0008574854582548141, -0.004134985618293285, 0.005564127583056688, 0.002219934482127428, 4.8754595809441525e-06, -0.005678459070622921, 0.008841628208756447, -0.004287427291274071, -0.0007145712152123451, 0.0010051634162664413, 0.002391431713476777, 0.00036681321216747165, -0.0008860682719387114, -0.079879529774189, -0.0005740388878621161, 0.0005811845767311752, -0.008079418912529945, 0.0018197746248915792, 0.006516889203339815, -0.0002489089674782008, 0.007431540638208389, 0.008612965233623981, -0.009146511554718018, -0.012576453387737274, -0.004211206454783678, -0.00027153705013915896, 0.0028582848608493805, -0.0016292223008349538, -0.012271569110453129, -0.0022008793894201517, -0.005449796095490456, 0.0006669331341981888, -0.0013052833965048194, 0.0036776599008589983, -0.0015911118825897574, 0.11951441317796707, -0.005411685910075903, -0.0022104070521891117, 0.0007765006739646196, -0.010747150518000126, 0.0006621693610213697, -0.002782063791528344, -1.6375589666495216e-06, -0.0019245785661041737, 0.00632633687928319, -0.0002596275298856199, -1.1016305506927893e-05, -0.004344592802226543, 0.00804130733013153, 0.0007860283367335796, 0.0024009591434150934, 0.001257645315490663, 0.0011433139443397522, -0.004992470610886812, -0.004287427291274071, 0.016692383214831352, 0.008231859654188156, -0.0024390697944909334, -0.006859883666038513, 0.0019055232405662537, 0.006974215153604746, 0.0015720566734671593, -0.0016578052891418338, 0.01615883782505989, 0.0022675725631415844, -0.0049543604254722595, -0.0038872673176229, -0.002972616348415613, 0.004306482616811991, -0.0017911918694153428, -0.008460523560643196, 0.007965086959302425, -0.002972616348415613, 0.006250116508454084, -0.0005740388878621161, -0.0046304212883114815, 0.005144912749528885, 0.0008670130046084523, -0.000824138754978776, 0.002591511467471719, -0.0003858684503939003, -0.0005716569721698761, -0.002515290630981326, -0.0014672528486698866, 0.0004954360192641616, -0.0001333866239292547, -0.0038491571322083473, 0.00016196946671698242, -0.0036776599008589983, -0.006897993851453066, -0.00819374993443489, -0.002229462144896388, 0.0008003197144716978, -0.004268371965736151, 0.0011052035260945559, -0.00037157704355195165, 0.005068691913038492, 0.0024104868061840534, -0.0035252179950475693, 0.0008670130046084523, 0.0013433938147500157, -0.009984941221773624, 0.002801119117066264, -0.004115929827094078, -0.006212005391716957, 0.018293023109436035, 0.002934505697339773, 0.0017721365438774228, 0.0022008793894201517, 0.004820973612368107, -0.0028582848608493805, 0.00023223564494401217, 0.003296555019915104, 0.0008813044987618923, 0.0009003597078844905, -0.048476506024599075, 0.0003739589301403612, -0.0006192950531840324, -0.0006669331341981888, -0.009451394900679588, -0.005487906746566296, 0.005869011394679546, 0.007622092962265015, 0.0011290224501863122, 0.011738022789359093, 0.0022675725631415844, -4.2576531996019185e-05, -0.0032393895089626312, 0.008574854582548141, 0.0005311645800247788, -0.007126656360924244, 0.0002882103726733476, 0.0017911918694153428, -0.002972616348415613, 0.0025724563747644424, 0.005792790558189154, -0.0032584446016699076, 0.019207673147320747, 0.00012743186380248517, -0.00194363365881145, -0.0007288625929504633, 0.00013040924386586994, -0.0021341859828680754, 0.005144912749528885, -0.009337063878774643, 0.0008955959347076714, 0.0015911118825897574, -0.007583982311189175, -0.0021341859828680754, -0.01539662852883339, -0.007355319801717997, 0.0017340260092169046, 0.032927438616752625, 0.0038301015738397837, 0.009451394900679588, -0.0005430741002783179, -0.0018864680314436555, 0.00044541602255776525, -0.001524418592453003, -0.006593110039830208, 0.009489505551755428, 0.0012290624435991049, 0.003296555019915104, -0.0017340260092169046, -0.0006669331341981888, 0.002763008698821068, 0.006859883666038513, -0.002496235305443406, 0.009184622205793858, 0.003163168439641595, -0.005106802098453045, 0.008612965233623981, 0.0006097674486227334, -0.005526017397642136, -0.00025605468545109034, 0.003163168439641595, -0.004192151129245758, 0.0034680520184338093, 0.005373575259000063, 0.0011337862815707922, -0.0010480377823114395, 0.009489505551755428, 0.015320406295359135, -0.005602238234132528, 0.0010385101195424795, 0.0013052833965048194, 0.004878139588981867, -0.007926976308226585, -0.0012767005246132612, 0.0007240988197736442, 0.0002620094455778599, -0.008689185604453087, -0.0018959955777972937, 0.001114731072448194, 0.006974215153604746, 0.009984941221773624, 0.008917848579585552, 0.0012385901063680649, 0.0002655822900123894, 0.005526017397642136, 1.4365858987730462e-05, -0.014177092351019382, -0.002362848725169897, -0.0006192950531840324, -0.042988602072000504, 0.00013040924386586994, -0.00804130733013153, 0.0021722964011132717, -0.01021360419690609, -0.003620494157075882, -0.0026486774440854788, 0.0032393895089626312, 0.009070290252566338, -0.0037919911555945873, 0.002496235305443406, -0.007850755006074905, 0.0005406922427937388, -0.009337063878774643, -0.002372376387938857, -0.0006669331341981888, 0.006897993851453066, 0.0008479577954858541, -0.0024581248871982098, -0.00037634081672877073, -0.004096874967217445, -0.004401758778840303, -0.004782863426953554, 0.0012862281873822212, 0.0067455521784722805, 0.0012767005246132612, 0.0010003997012972832, 0.02621999941766262, -0.0046304212883114815, 0.013948430307209492, -0.003220334416255355, -0.00804130733013153, 0.001810247078537941, 0.007355319801717997, -0.0020103268325328827, 0.0046113659627735615, -0.0020007994025945663, 0.003163168439641595, 0.0005216369754634798, 0.001257645315490663, 0.008651075884699821, -0.002915450371801853, -0.0006026217015460134, 0.022866278886795044, -0.0020007994025945663, 0.004801918286830187, 0.0029916714411228895, -0.0006288226577453315, -0.004077819641679525, 0.0038491571322083473, 0.00533546507358551, 0.008803517557680607, -0.001505363266915083, 0.005983342882245779, -7.622093107784167e-05, 0.019664999097585678, -0.01067093014717102, -0.002629621885716915, -0.0018578851595520973, -0.00010480377386556938, -0.0033727760892361403, 0.0011623691534623504, 0.0006145312217995524, -0.008422412909567356, -0.004439868964254856, 0.002381904050707817, -0.004363648127764463, 0.005221133586019278, -0.01996988244354725, 0.0010051634162664413, -0.019436337053775787, 0.0007098073838278651, -0.0014291424304246902, -0.0018388299504294991, -0.004744752775877714, -0.0020007994025945663, 0.012271569110453129, 0.00040254180203191936, 0.005373575259000063, 0.001267172978259623, 0.001648277509957552, 0.00014172328519634902, -0.0026867876295000315, 0.0036395492497831583, 0.0010289824567735195, 0.00025367276975885034, -0.000681224511936307, 0.003982543479651213, 0.008498633280396461, 0.003010726533830166, 0.0022389895748347044, -0.0020389098208397627, -0.006669331341981888, 0.004134985618293285, 0.0012100072344765067, -0.003220334416255355, 0.002782063791528344, -0.0001452961441827938, 0.00016792422684375197, 0.0052973548881709576, -0.01585395261645317, 0.002953561022877693, 0.003334665670990944, -0.007317208684980869, 0.0014577251859009266, 0.0032012788578867912, 0.002743953373283148, -0.36829954385757446, 0.0018578851595520973, -0.0004430341359693557, -0.005106802098453045, 0.007622092962265015, -0.0021246583200991154, -0.0018769402522593737, 0.002953561022877693, -0.002496235305443406, -0.0033918311819434166, -7.532771269325167e-05, 0.0006288226577453315, 0.0013529214775189757, -0.0015815842198207974, 0.00023342658823821694, 0.0010099273640662432, -0.005221133586019278, -0.0031441133469343185, 0.0068217734806239605, -0.00811752863228321, 0.10609953850507736, -0.0029916714411228895, 0.0005740388878621161, 0.002496235305443406, 0.0003001198929268867, 0.005068691913038492, -0.0009622892830520868, -0.0014672528486698866, -4.7340337914647534e-05, -0.0006764607387594879, -0.008346191607415676, 0.02027476765215397, -0.00788886658847332, -0.00038110464811325073, 0.009222731925547123, 0.002372376387938857, 0.0035823837388306856, -0.005144912749528885, -0.0019245785661041737, -0.0037157703191041946, -0.0018197746248915792, 0.005373575259000063, -0.002610566793009639, 0.0009241787483915687, 0.002896395279094577, -0.0012767005246132612, -0.0024295421317219734, 0.0021532413084059954, -0.002915450371801853, 0.012042906135320663, 2.381904050707817e-05, 0.0008813044987618923, 0.001667332835495472, 1.3100471733196173e-05, 0.00010539925278862938, -0.004992470610886812, -0.00035252177622169256, -0.0049543604254722595, -0.00819374993443489, -0.0026867876295000315, 0.004840028937906027, -0.0046494766138494015, -0.00636444753035903, -0.0016006394289433956, -0.004725697450339794, 0.0009479977888986468, -0.0008622492314316332, -0.00018578852177597582, 0.00020960754773113877, 0.0005144912283867598, 0.0038872673176229, 0.01272889506071806, -0.003620494157075882, 0.0009003597078844905, 0.0020674928091466427, -0.003925377503037453, 0.0007098073838278651, 0.0022389895748347044, 0.0012290624435991049, -0.01539662852883339, 0.007431540638208389, -0.00023223564494401217, -0.0016387499636039138, -0.00023580850393045694, 0.0012957557337358594, 0.005907122045755386, -0.00811752863228321, -0.0011528414906933904, -0.007622092962265015, 0.014634417369961739, -0.07622092962265015, 0.003563328180462122, 0.0009384701261296868, 0.009489505551755428, 0.004077819641679525, -0.0033156105782836676, -0.0046113659627735615, 0.005830900743603706, 0.002667732536792755, -0.012957558035850525, 0.00636444753035903, 0.0022389895748347044, -0.0013148109428584576, -0.002057964913547039, 0.006631221156567335, -0.0016863880446180701, -0.006631221156567335, 0.006516889203339815, -0.004535145126283169, -0.010594709776341915, 0.004516089800745249, 0.005945232696831226, 0.07500139623880386, 6.520462193293497e-05, -0.004554200451821089, 0.007317208684980869, -0.0006240588263608515, -0.01272889506071806, -0.005830900743603706, 0.012500233016908169, 0.0006383502623066306, 0.005221133586019278, 0.001391031895764172, 0.0001536328054498881, 0.0028773401863873005, -0.006631221156567335, 0.0022771002259105444, 0.001505363266915083, -0.00031441132887266576, 0.006554999854415655, -0.0007383902557194233, -0.0035823837388306856, 0.004458924289792776, 0.000695515947882086, 0.0014386700931936502, 0.000554983620531857, 0.0049543604254722595, 0.00022389898367691785, 0.0049162497743964195, 0.0008431940223090351, -0.005411685910075903, 0.0018293021712452173, 0.0008765406673774123, -0.0049162497743964195, 0.002496235305443406, 0.002610566793009639, -0.004458924289792776, -0.004992470610886812, 0.0006574054714292288, 0.0038682122249156237, 0.004230261780321598, -0.013567324727773666, -0.005564127583056688, -0.0036776599008589983, 0.00194363365881145, 0.00781264528632164, 0.005373575259000063, 0.0003834865347016603, -0.006173895206302404, -0.004230261780321598, 0.0014196147676557302, -0.00023342658823821694, -0.006135784555226564, 0.0013243387220427394, -0.01265267375856638, -0.006631221156567335, -0.0012862281873822212, 0.028963953256607056, -0.00012802734272554517, 0.0009289425797760487, -0.012195348739624023, -0.0031060026958584785, -0.008498633280396461, 0.00020960754773113877, 0.001562529127113521, 0.00013160020171198994, -0.0035061626695096493, -0.0009670530562289059, -0.0007622092962265015, -0.00015958756557665765, 0.004363648127764463, 0.0013433938147500157, -0.005754680372774601, -0.01028982549905777, -0.006212005391716957, -0.010366045869886875, -0.007850755006074905, -0.008346191607415676, 0.004134985618293285, -0.002629621885716915, -0.012576453387737274, -0.003125058254227042, 0.005068691913038492, 0.0015911118825897574, 0.0022104070521891117, 0.0046304212883114815, -0.07622092962265015, 0.003982543479651213, -0.0035252179950475693, -0.0003858684503939003, 0.0024581248871982098, 0.00390632264316082, 0.007622092962265015, -0.004992470610886812, 0.0037538805045187473, 0.0009479977888986468, -0.005526017397642136, 0.00035966752329841256, -0.002077020239084959, -0.009108400903642178, -0.003601438831537962, 0.0024390697944909334, 0.0022675725631415844, 0.00010182639380218461, 0.001381504349410534, 0.0037919911555945873, 0.00044541602255776525, 0.005830900743603706, -0.0021627689711749554, -0.0037157703191041946, -0.005792790558189154, -0.0035061626695096493, -0.00022270801127888262, -0.006554999854415655, 0.0003334665670990944, -0.0028582848608493805, 0.005640348419547081, 0.000685988343320787, 0.0013433938147500157, 0.0014100871048867702, -0.002915450371801853, -0.0009241787483915687, 0.004820973612368107, -0.0020198547281324863, -0.004115929827094078, 0.00195316132158041, 0.002086547901853919, -0.00027630088152363896, -0.0024581248871982098, 0.004077819641679525, 0.001505363266915083, 0.004592311102896929, -0.007202877663075924, 0.002496235305443406, -0.00022389898367691785, -0.0031060026958584785, -0.0023437936324626207, 0.0015815842198207974, -0.0025534010492265224, 0.0017149709165096283, -0.007317208684980869, -0.0036395492497831583, -0.02576267533004284, -0.0017911918694153428, 0.004458924289792776, 0.002391431713476777, 0.002743953373283148, -0.005830900743603706, -0.0035061626695096493, 0.0011671329848468304, -0.0038110464811325073, 0.00644066883251071, 0.002610566793009639, -0.0036395492497831583, -0.027591975405812263, -0.0005144912283867598, 0.004077819641679525, -0.004535145126283169, -0.0022008793894201517, -0.003048837184906006, 0.0006383502623066306, 0.0020293821580708027, 0.006250116508454084, -0.009070290252566338, 0.0025724563747644424, 0.004554200451821089, -0.0003429941716603935, -0.004992470610886812, -0.0008193749818019569, -0.0032774999272078276, -0.0008289026445709169, -0.004211206454783678, 0.00011671329411910847, 0.0015911118825897574, -0.0009527616202831268, 0.003448996925726533, -0.004420814104378223, -0.0003429941716603935, 0.0027058429550379515, 0.010061162523925304, -0.004173095803707838, 0.006897993851453066, -0.0038110464811325073, 0.001543473801575601, 0.0008431940223090351, 0.0036776599008589983, -0.005144912749528885, 0.0008955959347076714, -0.0009956358699128032, -0.003086947603151202, -0.0004811446415260434, 0.0016101672081276774, 0.0036967149935662746, 0.0036967149935662746, -0.0016863880446180701, -0.008574854582548141, -0.021494301036000252, -0.0026867876295000315, -0.006897993851453066, -0.0021722964011132717, 0.01288133766502142, -0.009641947224736214, -0.00039539605495519936, -6.490688247140497e-05, -0.006021453067660332, 0.0002477180096320808, 0.0008146111504174769, 0.002972616348415613, -0.0013338662683963776, 0.0023247383069247007, 0.03567139431834221, 0.0005192550597712398, 0.0002894013305194676, -0.004725697450339794, -0.005640348419547081, -0.00039539605495519936, -0.0010670929914340377, -0.002610566793009639, -0.004497034940868616, -0.002534345956519246, 0.006021453067660332, 0.004325537942349911, -0.004535145126283169, -0.002610566793009639, 0.005564127583056688, 0.004573255777359009, -0.00815563928335905, 0.0022866278886795044, 0.002896395279094577, 0.07926976680755615, -0.0070504359900951385, 0.002086547901853919, 0.003010726533830166, -0.0016101672081276774, -0.0012147710658609867, 0.000350139889633283, -0.000681224511936307, -0.0017340260092169046, 0.0021532413084059954, -0.0013338662683963776, 0.006173895206302404, -0.0019150507869198918, 0.0036586043424904346, 0.0014481976395472884, 0.0007145712152123451, 0.0004597074876073748, 0.0034680520184338093, 0.00525924377143383, -0.004744752775877714, 0.0046494766138494015, 0.004706642124801874, 0.011204476468265057, 0.0011957158567383885, -0.14451487362384796, -0.0019055232405662537, 0.002086547901853919, 0.000416833208873868, -0.0049543604254722595, -0.012271569110453129, -0.002724898047745228, -0.004706642124801874, 0.0018483574967831373, -0.0046113659627735615, 0.005792790558189154, -0.0023437936324626207, -0.011661801487207413, -0.004173095803707838, -0.0038491571322083473, 0.0067455521784722805, 0.0032012788578867912, 0.004782863426953554, -0.0005216369754634798, -0.0035823837388306856, -2.05439209821634e-05, 0.0022389895748347044, -0.0015530013479292393, 0.0068217734806239605, 0.001562529127113521, 0.0069361040368676186, 0.0038872673176229, -0.010442267172038555, 0.001562529127113521, 0.033384766429662704, -0.004249316640198231, -0.002724898047745228, -0.001257645315490663, 0.0046875872649252415, 0.0036776599008589983, 0.0032012788578867912, 0.002972616348415613, -0.005678459070622921, 0.000547837873455137, -0.0033918311819434166, -0.0009956358699128032, 0.004706642124801874, -0.0070123253390192986, 0.005945232696831226, 0.002915450371801853, 0.0031441133469343185, -0.008765405975282192, -0.002591511467471719, -0.001505363266915083, 0.0017244984628632665, -0.0033537207636982203, 0.005640348419547081, -0.005183022934943438, -0.002801119117066264, 0.003734825411811471, -0.0010909120319411159, -0.0022580449003726244, 9.706258424557745e-05, 0.005564127583056688, -0.0003215570468455553, 0.007850755006074905, -0.0008050836040638387, -0.0046685319393873215, -0.004363648127764463, -0.0020484374836087227, -0.003086947603151202, 0.002391431713476777, -0.004058764316141605, -0.008955958299338818, 0.0028773401863873005, 0.004039709456264973, 0.007507761009037495, 0.0014577251859009266, -0.000976580660790205, 0.004477979149669409, -0.0011814243625849485, -0.006250116508454084, 0.002610566793009639, 0.007317208684980869, -0.007545872125774622, -0.009832499548792839, 0.0014100871048867702, 0.004134985618293285, -0.00194363365881145, 0.005487906746566296, 0.0013433938147500157, -0.0020103268325328827, -0.003296555019915104, 0.021799184381961823, 0.09146511554718018, 0.0017626089975237846, -0.001267172978259623, -0.0021722964011132717, 0.005487906746566296, 0.008765405975282192, -0.0008431940223090351, -0.005945232696831226, -0.0046685319393873215, -0.0024390697944909334, 0.0034299418330192566, -0.006097674369812012, -0.0007479178602807224, -0.006554999854415655, 0.010594709776341915, -0.0005359284114092588, -0.007736424449831247, -0.0035061626695096493, 0.002972616348415613, 0.0024200144689530134, 0.0005287827225401998, -0.003029781626537442, 0.005945232696831226, 0.0023152106441557407, -0.007583982311189175, 0.0017244984628632665, 0.007545872125774622, 0.009337063878774643, -0.003182223765179515, -0.00021675325115211308, -0.002534345956519246, 0.006859883666038513, 0.0008193749818019569, -0.004878139588981867, 0.0064025577157735825, 0.00028225561254657805, -0.003067892277613282, -0.009070290252566338, -0.002496235305443406, 0.0008955959347076714, 0.004992470610886812, -0.006097674369812012, 0.0012147710658609867, 5.001998215448111e-05, -0.008727296255528927, -0.004306482616811991, -0.0036395492497831583, -0.0014291424304246902, -0.0067455521784722805, -0.005144912749528885, -0.003925377503037453, 0.004992470610886812, -0.003029781626537442, 0.00036443129647523165, -0.0014291424304246902, 0.005068691913038492, 0.006021453067660332, -0.010823371820151806, 0.0010194549104198813, -0.0003072656108997762, -0.0019817440770566463, 0.0012767005246132612, 0.043293487280607224, 0.00028463752823881805, 0.0034108867403119802, 0.001267172978259623, 0.0017149709165096283, -0.012347790412604809, -0.0010670929914340377, 0.002515290630981326, -0.00031679324456490576, -0.004497034940868616, -0.0017340260092169046, -0.001514890813268721, -0.0028201742097735405, 0.000971816829405725, 0.0038682122249156237, -0.004458924289792776, 0.0009670530562289059, 0.004458924289792776, 0.007240988314151764, 0.0001137359140557237, 0.005144912749528885, 0.005030581261962652, 5.269962639431469e-05, 0.005716569721698761, 0.002801119117066264, 0.0035252179950475693, 0.0026486774440854788, 0.001781664090231061, -0.003182223765179515, -0.002515290630981326, -0.0017721365438774228, 0.010061162523925304, -0.0032012788578867912, 0.002724898047745228, 0.01272889506071806, 0.012805115431547165, 0.0014863081742078066, -0.004211206454783678, -0.0007288625929504633, 0.0021532413084059954, -0.004077819641679525, 0.010137383826076984, -0.003963488154113293, 0.0008479577954858541, -0.007164767477661371, -0.005678459070622921, -0.001267172978259623, -0.004439868964254856, 0.011204476468265057, -0.0020674928091466427, 0.007126656360924244, 0.0067074415273964405, 0.003620494157075882, -0.0017435537884011865, -0.014024650678038597, -0.0008431940223090351, 0.01021360419690609, -0.00020246184431016445, 0.005144912749528885, -0.011738022789359093, -0.0004811446415260434, 0.00525924377143383, 0.0018293021712452173, 0.004325537942349911, 0.0007622092962265015, 0.005487906746566296, 0.006173895206302404, -0.003010726533830166, -0.0020389098208397627, 0.004782863426953554, 0.0005001998506486416, 0.0013529214775189757, -0.0010528016136959195, 0.0015720566734671593, 0.004535145126283169, 0.0028392295353114605, -0.0022771002259105444, 0.010061162523925304, 0.00010361283057136461, 0.002743953373283148, -0.003772936062887311, 0.0001250499626621604, 0.0014291424304246902, 0.0014196147676557302, 0.002801119117066264, -0.0020293821580708027, 0.005602238234132528, -0.006097674369812012, -0.002362848725169897, -0.002077020239084959, 0.0012862281873822212, 0.007202877663075924, -0.004554200451821089, 0.001562529127113521, 0.0032774999272078276, -0.005449796095490456, 0.002077020239084959, 0.00022389898367691785, -0.006021453067660332, 6.788426253478974e-05, 0.003982543479651213, 0.0036586043424904346, -0.003601438831537962, 0.007202877663075924, 0.0034680520184338093, -0.004287427291274071, -0.0035823837388306856, -0.0022008793894201517, -0.004782863426953554, 0.0046304212883114815, 0.00533546507358551, 0.0016292223008349538, -0.0009241787483915687]}\n"
]
}
],
"source": [
"for i in range(len(chunks)):\n",
" doc_id = f\"{chunks[i].doc_id}:{chunks[i].chunk_id}\"\n",
" doc = es.get(index=es_index, id=doc_id)\n",
" print(doc[\"_source\"])"
]
},
{
"cell_type": "markdown",
"id": "6cc45ba9",
"metadata": {},
"source": [
"## Retrieve"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "4cf8cd66",
"metadata": {},
"outputs": [],
"source": [
"def retrieve_similar_chunks(\n",
" es: Elasticsearch,\n",
" index_name: str,\n",
" query: str,\n",
" embedding_model_name: str = embedding_model_name,\n",
" top_k: int = 5,\n",
") -> List[Dict[str, Any]]:\n",
" # Embed the query\n",
" tokenizer = AutoTokenizer.from_pretrained(embedding_model_name)\n",
" model = AutoModel.from_pretrained(embedding_model_name)\n",
" device = \"cuda\" if torch.cuda.is_available() else \"cpu\"\n",
" model.to(device)\n",
" model.eval()\n",
" with torch.no_grad():\n",
" enc = tokenizer([query], padding=True, truncation=True, return_tensors=\"pt\").to(device)\n",
" out = model(**enc)\n",
" mask = enc[\"attention_mask\"].unsqueeze(-1)\n",
" vec = (out.last_hidden_state * mask).sum(1) / mask.sum(1).clamp(min=1e-9)\n",
" vec = F.normalize(vec, p=2, dim=1)\n",
" query_vector = vec[0].cpu().tolist()\n",
"\n",
" # Search in Elasticsearch using dense vector\n",
" body = {\n",
" \"size\": top_k,\n",
" \"query\": {\n",
" \"script_score\": {\n",
" \"query\": {\"match_all\": {}},\n",
" \"script\": {\n",
" \"source\": \"cosineSimilarity(params.query_vector, 'embedding') + 1.0\",\n",
" \"params\": {\"query_vector\": query_vector},\n",
" },\n",
" }\n",
" }\n",
" }\n",
" res = es.search(index=index_name, body=body)\n",
" return [hit[\"_source\"] for hit in res[\"hits\"][\"hits\"]]\n",
"\n",
"# Example usage:\n",
"results = retrieve_similar_chunks(es, es_index, \"What are the challenges of distributed computing?\", top_k=3)\n",
"for r in results:\n",
" print(r[\"text\"])"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "assistance-engine",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.11"
}
},
"nbformat": 4,
"nbformat_minor": 5
}