Skip to content

Instantly share code, notes, and snippets.

@jimwhite
Created December 26, 2023 23:02
Show Gist options
  • Save jimwhite/ec3cb445b04a456f7ccc7ede4a14220e to your computer and use it in GitHub Desktop.
Save jimwhite/ec3cb445b04a456f7ccc7ede4a14220e to your computer and use it in GitHub Desktop.
llama_example.ipynb
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "view-in-github",
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/gist/jimwhite/ec3cb445b04a456f7ccc7ede4a14220e/llama_example.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "code",
"source": [
"%pip install -qU trulens_eval pydantic fastapi kaleido python-multipart uvicorn cohere openai tiktoken \"llama-index\""
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "hEiAjhrHThpM",
"outputId": "d7dfa536-84a2-4c5e-870f-c875022208a3"
},
"execution_count": 6,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m15.7/15.7 MB\u001b[0m \u001b[31m47.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m143.0/143.0 kB\u001b[0m \u001b[31m15.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[?25h"
]
}
]
},
{
"cell_type": "code",
"source": [
"%pip show pydantic"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "p4AKfy87XLpJ",
"outputId": "5c699fff-3bb0-4fae-d8ce-a1bca85d1dd9"
},
"execution_count": 25,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Name: pydantic\n",
"Version: 2.5.3\n",
"Summary: Data validation using Python type hints\n",
"Home-page: \n",
"Author: \n",
"Author-email: Samuel Colvin <s@muelcolvin.com>, Eric Jolibois <em.jolibois@gmail.com>, Hasan Ramezani <hasan.r67@gmail.com>, Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, Terrence Dorsey <terry@pydantic.dev>, David Montague <david@pydantic.dev>, Serge Matveenko <lig@countzero.co>, Marcelo Trylesinski <marcelotryle@gmail.com>, Sydney Runkle <sydneymarierunkle@gmail.com>, David Hewitt <mail@davidhewitt.io>\n",
"License: \n",
"Location: /usr/local/lib/python3.10/dist-packages\n",
"Requires: annotated-types, pydantic-core, typing-extensions\n",
"Required-by: confection, fastapi, inflect, langchain, langchain-core, langsmith, lida, llmx, openai, spacy, thinc, trulens-eval\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"import os\n",
"from google.colab import userdata\n",
"os.environ[\"OPENAI_API_KEY\"] = userdata.get('OPENAI_API_KEY')"
],
"metadata": {
"id": "2xILRfH3Vd6z"
},
"execution_count": 12,
"outputs": []
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 70
},
"id": "iU06lAFITZQ3",
"outputId": "941899a9-c20b-41dc-ae96-da75e4f7c7d4"
},
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"\"\\nimport logging\\n\\nroot = logging.getLogger()\\nroot.setLevel(logging.DEBUG)\\n\\nhandler = logging.StreamHandler(sys.stdout)\\nhandler.setLevel(logging.DEBUG)\\nformatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')\\nhandler.setFormatter(formatter)\\nroot.addHandler(handler)\\n\""
],
"application/vnd.google.colaboratory.intrinsic+json": {
"type": "string"
}
},
"metadata": {},
"execution_count": 3
}
],
"source": [
"%load_ext autoreload\n",
"%autoreload 2\n",
"from pathlib import Path\n",
"import sys\n",
"\n",
"sys.path.append(str(Path().cwd().parent.parent.parent.resolve()))\n",
"\n",
"from pprint import PrettyPrinter\n",
"pp = PrettyPrinter()\n",
"\n",
"# Uncomment to get more debugging printouts:\n",
"\"\"\"\n",
"import logging\n",
"\n",
"root = logging.getLogger()\n",
"root.setLevel(logging.DEBUG)\n",
"\n",
"handler = logging.StreamHandler(sys.stdout)\n",
"handler.setLevel(logging.DEBUG)\n",
"formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')\n",
"handler.setFormatter(formatter)\n",
"root.addHandler(handler)\n",
"\"\"\""
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"id": "XaeKX8_bTZQ4"
},
"outputs": [],
"source": [
"from trulens_eval.keys import *"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {
"id": "QbW9FUtJTZQ4"
},
"outputs": [],
"source": [
"from llama_index import VectorStoreIndex, SimpleDirectoryReader\n",
"\n",
"documents = SimpleDirectoryReader('data').load_data()\n",
"index = VectorStoreIndex.from_documents(documents)\n",
"\n",
"query_engine = index.as_query_engine()\n",
"# response = query_engine.query(\"What did the author do growing up?\")\n",
"# print(response)"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {
"id": "Hg-Tl_pzTZQ4"
},
"outputs": [],
"source": [
"# For aggregation,\n",
"import numpy as np\n",
"\n",
"from trulens_eval import feedback, Feedback, Tru, TruLlama"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "PNn7ovVqTZQ5",
"outputId": "8a41da3e-1231-4ee0-9bbb-68dbc257406b"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"✅ In language_match, input text1 will be set to __record__.main_input or `Select.RecordInput` .\n",
"✅ In language_match, input text2 will be set to __record__.main_output or `Select.RecordOutput` .\n",
"✅ In relevance, input prompt will be set to __record__.main_input or `Select.RecordInput` .\n",
"✅ In relevance, input response will be set to __record__.main_output or `Select.RecordOutput` .\n",
"✅ In qs_relevance, input question will be set to __record__.main_input or `Select.RecordInput` .\n",
"✅ In qs_relevance, input statement will be set to __record__.app.query.rets.source_nodes[:].node.text .\n"
]
}
],
"source": [
"# Construct feedback functions.\n",
"\n",
"hugs = feedback.Huggingface()\n",
"openai = feedback.OpenAI()\n",
"\n",
"# Language match between question/answer.\n",
"f_lang_match = Feedback(hugs.language_match).on_input_output()\n",
"# By default this will evaluate feedback on main app input and main app output.\n",
"\n",
"# Question/answer relevance between overall question and answer.\n",
"f_qa_relevance = Feedback(openai.relevance).on_input_output()\n",
"# Same default inputs as the above.\n",
"\n",
"# Question/statement relevance between question and each context chunk.\n",
"f_qs_relevance = Feedback(openai.qs_relevance).on_input().on(\n",
" TruLlama.select_source_nodes().node.text\n",
").aggregate(np.min)\n",
"# First feedback arg is the main app input while the second is the context\n",
"# chunks retrieved from the main app output, output of `query`.\n",
"\n",
"feedbacks = [\n",
" f_lang_match,\n",
" f_qa_relevance,\n",
" f_qs_relevance\n",
"]"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "_onfdF-ITZQ5",
"outputId": "b4000b3c-e9d0-4e6b-8c7e-267388803c03"
},
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"{'text1': Lens().__record__.main_input, 'text2': Lens().__record__.main_output}"
]
},
"metadata": {},
"execution_count": 16
}
],
"source": [
"f_lang_match.selectors"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "qgxVxE2HTZQ5",
"outputId": "ba7be681-c3be-411e-ee98-6a03ed02c1d0"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"🦑 Tru initialized with db url sqlite:///default.sqlite .\n",
"🛑 Secret keys may be written to the database. See the `database_redact_keys` option of `Tru` to prevent this.\n"
]
}
],
"source": [
"l = TruLlama(app=query_engine, feedbacks=feedbacks)"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "zzvBvfGqTZQ6",
"outputId": "1b1417b3-6ee0-4b36-ce75-e4b7ea56d7ba"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Components:\n",
"\tTruLlama (Other) at 0x7abdc0766f70 with path __app__\n",
"\tClass (Other) at 0x7abdc25f15d0 with path __app__.root_class\n",
"\tModule (Other) at 0x7abdc25f05e0 with path __app__.root_class.module\n",
"\tRetrieverQueryEngine (Other) at 0x7abdc28e3b20 with path __app__.app\n",
"\t_abc_data (Custom) at 0x7abdc23e2bc0 with path __app__.app._abc_impl\n",
"\tmethod (Custom) at 0x7abdc03dbd80 with path __app__.app._apply_node_postprocessors\n",
"\tmethod (Custom) at 0x7abdc24f1880 with path __app__.app._get_prompt_modules\n",
"\tCompactAndRefine (Other) at 0x7abdc28e1f90 with path __app__.app._response_synthesizer\n",
"\t_abc_data (Custom) at 0x7abdc2c8a780 with path __app__.app._response_synthesizer._abc_impl\n",
"\tmethod (Custom) at 0x7abdc03daf00 with path __app__.app._response_synthesizer._agive_response_single\n",
"\tmethod (Custom) at 0x7abdc03d8100 with path __app__.app._response_synthesizer._arefine_response_single\n",
"\tCallbackManager (Other) at 0x7abdc28e31c0 with path __app__.app._response_synthesizer._callback_manager\n",
"\t_abc_data (Custom) at 0x7abdc6460b40 with path __app__.app._response_synthesizer._callback_manager._abc_impl\n",
"\tmethod (Custom) at 0x7abdc03d8440 with path __app__.app._response_synthesizer._callback_manager._reset_trace_events\n",
"\tmethod (Custom) at 0x7abdc03d80c0 with path __app__.app._response_synthesizer._callback_manager.add_handler\n",
"\tmethod (Custom) at 0x7abdc03d8b40 with path __app__.app._response_synthesizer._callback_manager.as_trace\n",
"\tmethod (Custom) at 0x7abdc24f01c0 with path __app__.app._response_synthesizer._callback_manager.end_trace\n",
"\tmethod (Custom) at 0x7abdc03d8080 with path __app__.app._response_synthesizer._callback_manager.event\n",
"\tmethod (Custom) at 0x7abdc03d9500 with path __app__.app._response_synthesizer._callback_manager.on_event_end\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app._response_synthesizer._callback_manager.on_event_start\n",
"\tmethod (Custom) at 0x7abdc03d8300 with path __app__.app._response_synthesizer._callback_manager.remove_handler\n",
"\tmethod (Custom) at 0x7abdc03d8b80 with path __app__.app._response_synthesizer._callback_manager.set_handlers\n",
"\tmethod (Custom) at 0x7abdc03dbdc0 with path __app__.app._response_synthesizer._callback_manager.start_trace\n",
"\tmethod (Custom) at 0x7abdbf6ebf40 with path __app__.app._response_synthesizer._default_program_factory\n",
"\tmethod (Custom) at 0x7abdc03d9500 with path __app__.app._response_synthesizer._get_metadata_for_response\n",
"\tmethod (Custom) at 0x7abdc04cfb40 with path __app__.app._response_synthesizer._get_prompt_modules\n",
"\tmethod (Custom) at 0x7abdc24f01c0 with path __app__.app._response_synthesizer._give_response_single\n",
"\tmethod (Custom) at 0x7abdc04cfb40 with path __app__.app._response_synthesizer._log_prompt_and_response\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app._response_synthesizer._make_compact_text_chunks\n",
"\tmethod (Custom) at 0x7abdc03dbf40 with path __app__.app._response_synthesizer._prepare_response_output\n",
"\tmethod (Custom) at 0x7abdc2b7a1c0 with path __app__.app._response_synthesizer._program_factory\n",
"\tmethod (Custom) at 0x7abdc03d8440 with path __app__.app._response_synthesizer._refine_response_single\n",
"\tSelectorPromptTemplate (Other) at 0x7abdc2c7d990 with path __app__.app._response_synthesizer._refine_template\n",
"\tPromptTemplate (Other) at 0x7abdc2c7da20 with path __app__.app._response_synthesizer._refine_template.default_template\n",
"\tfunction (Custom) at 0x7abdc3b5d480 with path __app__.app._response_synthesizer._refine_template.conditionals[0][0]\n",
"\tChatPromptTemplate (Other) at 0x7abdc2c7db70 with path __app__.app._response_synthesizer._refine_template.conditionals[0][1]\n",
"\tChatMessage (Other) at 0x7abdc2c7d3f0 with path __app__.app._response_synthesizer._refine_template.conditionals[0][1].message_templates[0]\n",
"\tSelectorPromptTemplate (Other) at 0x7abdc2c7d030 with path __app__.app._response_synthesizer._text_qa_template\n",
"\tPromptTemplate (Other) at 0x7abdc2c7ce80 with path __app__.app._response_synthesizer._text_qa_template.default_template\n",
"\tfunction (Custom) at 0x7abdc3b5d480 with path __app__.app._response_synthesizer._text_qa_template.conditionals[0][0]\n",
"\tChatPromptTemplate (Other) at 0x7abdc2c7da50 with path __app__.app._response_synthesizer._text_qa_template.conditionals[0][1]\n",
"\tChatMessage (Other) at 0x7abdc2c7d270 with path __app__.app._response_synthesizer._text_qa_template.conditionals[0][1].message_templates[0]\n",
"\tChatMessage (Other) at 0x7abdc2c7d2a0 with path __app__.app._response_synthesizer._text_qa_template.conditionals[0][1].message_templates[1]\n",
"\tmethod (Custom) at 0x7abdc056f880 with path __app__.app._response_synthesizer._validate_prompts\n",
"\tmethod (Custom) at 0x7abdc03d8fc0 with path __app__.app._response_synthesizer.aget_response\n",
"\tmethod (Custom) at 0x7abdc03da240 with path __app__.app._response_synthesizer.asynthesize\n",
"\tmethod (Custom) at 0x7abdc03dbd80 with path __app__.app._response_synthesizer.get_prompts\n",
"\tmethod (Custom) at 0x7abdc0436180 with path __app__.app._response_synthesizer.get_response\n",
"\tServiceContext (Other) at 0x7abdc793f820 with path __app__.app._response_synthesizer.service_context\n",
"\tLLMPredictor (Other) at 0x7abdc2b7fa40 with path __app__.app._response_synthesizer.service_context.llm_predictor\n",
"\tPromptHelper (Other) at 0x7abdc2a1cf40 with path __app__.app._response_synthesizer.service_context.prompt_helper\n",
"\tOpenAIEmbedding (Other) at 0x7abdc27927a0 with path __app__.app._response_synthesizer.service_context.embed_model\n",
"\tSentenceSplitter (Other) at 0x7abdce689080 with path __app__.app._response_synthesizer.service_context.transformations[0]\n",
"\tfunction (Custom) at 0x7abdc347a440 with path __app__.app._response_synthesizer.service_context.transformations[0].id_func\n",
"\tLlamaLogger (Other) at 0x7abdcef929b0 with path __app__.app._response_synthesizer.service_context.llama_logger\n",
"\tmethod (Custom) at 0x7abdc03db8c0 with path __app__.app._response_synthesizer.service_context.llama_logger.add_log\n",
"\tmethod (Custom) at 0x7abdc25a13c0 with path __app__.app._response_synthesizer.service_context.llama_logger.get_logs\n",
"\tmethod (Custom) at 0x7abdc03d8540 with path __app__.app._response_synthesizer.service_context.llama_logger.get_metadata\n",
"\tmethod (Custom) at 0x7abdc03db340 with path __app__.app._response_synthesizer.service_context.llama_logger.reset\n",
"\tmethod (Custom) at 0x7abdc03daf40 with path __app__.app._response_synthesizer.service_context.llama_logger.set_metadata\n",
"\tmethod (Custom) at 0x7abdc03d8540 with path __app__.app._response_synthesizer.service_context.llama_logger.unset_metadata\n",
"\tCallbackManager (Other) at 0x7abdc28e31c0 with path __app__.app._response_synthesizer.service_context.callback_manager\n",
"\t_abc_data (Custom) at 0x7abdc6460b40 with path __app__.app._response_synthesizer.service_context.callback_manager._abc_impl\n",
"\tmethod (Custom) at 0x7abdc03d9ec0 with path __app__.app._response_synthesizer.service_context.callback_manager._reset_trace_events\n",
"\tmethod (Custom) at 0x7abdc03da980 with path __app__.app._response_synthesizer.service_context.callback_manager.add_handler\n",
"\tmethod (Custom) at 0x7abdc04cfb40 with path __app__.app._response_synthesizer.service_context.callback_manager.as_trace\n",
"\tmethod (Custom) at 0x7abdc03da140 with path __app__.app._response_synthesizer.service_context.callback_manager.end_trace\n",
"\tmethod (Custom) at 0x7abdc03d9ec0 with path __app__.app._response_synthesizer.service_context.callback_manager.event\n",
"\tmethod (Custom) at 0x7abdc03d8080 with path __app__.app._response_synthesizer.service_context.callback_manager.on_event_end\n",
"\tmethod (Custom) at 0x7abdc03dbe00 with path __app__.app._response_synthesizer.service_context.callback_manager.on_event_start\n",
"\tmethod (Custom) at 0x7abdc03da980 with path __app__.app._response_synthesizer.service_context.callback_manager.remove_handler\n",
"\tmethod (Custom) at 0x7abdc03d9ec0 with path __app__.app._response_synthesizer.service_context.callback_manager.set_handlers\n",
"\tmethod (Custom) at 0x7abdc03d8080 with path __app__.app._response_synthesizer.service_context.callback_manager.start_trace\n",
"\tmethod (Custom) at 0x7abdc2453340 with path __app__.app._response_synthesizer.synthesize\n",
"\tmethod (Custom) at 0x7abdc03d80c0 with path __app__.app._response_synthesizer.update_prompts\n",
"\tmethod (Custom) at 0x7abdc254fc00 with path __app__.app._validate_prompts\n",
"\tmethod (Custom) at 0x7abdc2453340 with path __app__.app.aquery\n",
"\tmethod (Custom) at 0x7abdc05784c0 with path __app__.app.aretrieve\n",
"\tmethod (Custom) at 0x7abdc03da980 with path __app__.app.asynthesize\n",
"\tCallbackManager (Other) at 0x7abdc28e31c0 with path __app__.app.callback_manager\n",
"\t_abc_data (Custom) at 0x7abdc6460b40 with path __app__.app.callback_manager._abc_impl\n",
"\tmethod (Custom) at 0x7abdc03daf00 with path __app__.app.callback_manager._reset_trace_events\n",
"\tmethod (Custom) at 0x7abdc03db440 with path __app__.app.callback_manager.add_handler\n",
"\tmethod (Custom) at 0x7abdc1fc2580 with path __app__.app.callback_manager.as_trace\n",
"\tmethod (Custom) at 0x7abdc04cfb00 with path __app__.app.callback_manager.end_trace\n",
"\tmethod (Custom) at 0x7abdbf6eb100 with path __app__.app.callback_manager.event\n",
"\tmethod (Custom) at 0x7abdc03daf00 with path __app__.app.callback_manager.on_event_end\n",
"\tmethod (Custom) at 0x7abdc03dbdc0 with path __app__.app.callback_manager.on_event_start\n",
"\tmethod (Custom) at 0x7abdc03d9440 with path __app__.app.callback_manager.remove_handler\n",
"\tmethod (Custom) at 0x7abdc03dbf40 with path __app__.app.callback_manager.set_handlers\n",
"\tmethod (Custom) at 0x7abdc03d80c0 with path __app__.app.callback_manager.start_trace\n",
"\tmethod (Custom) at 0x7abdc25a13c0 with path __app__.app.from_args\n",
"\tmethod (Custom) at 0x7abdc03dbe00 with path __app__.app.get_prompts\n",
"\tmethod (Custom) at 0x7abdc2453340 with path __app__.app.query\n",
"\tmethod (Custom) at 0x7abdc03da100 with path __app__.app.retrieve\n",
"\tVectorIndexRetriever (Other) at 0x7abdc28e2f20 with path __app__.app.retriever\n",
"\t_abc_data (Custom) at 0x7abdc284e180 with path __app__.app.retriever._abc_impl\n",
"\tmethod (Custom) at 0x7abdc03d93c0 with path __app__.app.retriever._aget_nodes_with_embeddings\n",
"\tmethod (Custom) at 0x7abdc03dbe00 with path __app__.app.retriever._build_node_list_from_query_result\n",
"\tmethod (Custom) at 0x7abdc03daf40 with path __app__.app.retriever._build_vector_store_query\n",
"\tmethod (Custom) at 0x7abdc07b1500 with path __app__.app.retriever._check_callback_manager\n",
"\tSimpleDocumentStore (Other) at 0x7abdc28e2830 with path __app__.app.retriever._docstore\n",
"\t_abc_data (Custom) at 0x7abdc29bd200 with path __app__.app.retriever._docstore._abc_impl\n",
"\tSimpleKVStore (Other) at 0x7abdc28e2d70 with path __app__.app.retriever._docstore._kvstore\n",
"\t_abc_data (Custom) at 0x7abdc32c0c00 with path __app__.app.retriever._docstore._kvstore._abc_impl\n",
"\tmethod (Custom) at 0x7abdc26424c0 with path __app__.app.retriever._docstore._kvstore.delete\n",
"\tmethod (Custom) at 0x7abdc03da780 with path __app__.app.retriever._docstore._kvstore.from_dict\n",
"\tmethod (Custom) at 0x7abdc03db140 with path __app__.app.retriever._docstore._kvstore.from_persist_path\n",
"\tmethod (Custom) at 0x7abdc03d8040 with path __app__.app.retriever._docstore._kvstore.get\n",
"\tmethod (Custom) at 0x7abdc03dbe00 with path __app__.app.retriever._docstore._kvstore.get_all\n",
"\tmethod (Custom) at 0x7abdc03d8fc0 with path __app__.app.retriever._docstore._kvstore.persist\n",
"\tmethod (Custom) at 0x7abdc03db8c0 with path __app__.app.retriever._docstore._kvstore.put\n",
"\tmethod (Custom) at 0x7abdc03dbdc0 with path __app__.app.retriever._docstore._kvstore.to_dict\n",
"\tmethod (Custom) at 0x7abdc03daf40 with path __app__.app.retriever._docstore._remove_ref_doc_node\n",
"\tmethod (Custom) at 0x7abdc25a2840 with path __app__.app.retriever._docstore.add_documents\n",
"\tmethod (Custom) at 0x7abdc03db340 with path __app__.app.retriever._docstore.delete_document\n",
"\tmethod (Custom) at 0x7abdc03da780 with path __app__.app.retriever._docstore.delete_ref_doc\n",
"\tTextNode (Other) at 0x7abdc040eec0 with path __app__.app.retriever._docstore.docs.b6f659fc-a470-4163-9dde-a6e9867594d2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc05d92d0 with path __app__.app.retriever._docstore.docs.b6f659fc-a470-4163-9dde-a6e9867594d2.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc040df60 with path __app__.app.retriever._docstore.docs.b6f659fc-a470-4163-9dde-a6e9867594d2.relationships.3\n",
"\tTextNode (Other) at 0x7abdc040ee90 with path __app__.app.retriever._docstore.docs.e8bf0d6e-8dc5-41f6-8137-a1f608fd40bc\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478d00 with path __app__.app.retriever._docstore.docs.e8bf0d6e-8dc5-41f6-8137-a1f608fd40bc.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479630 with path __app__.app.retriever._docstore.docs.e8bf0d6e-8dc5-41f6-8137-a1f608fd40bc.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc05db610 with path __app__.app.retriever._docstore.docs.e8bf0d6e-8dc5-41f6-8137-a1f608fd40bc.relationships.3\n",
"\tTextNode (Other) at 0x7abdc040df60 with path __app__.app.retriever._docstore.docs.9e74e2b7-1d82-4957-a9af-a3286ef18500\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478550 with path __app__.app.retriever._docstore.docs.9e74e2b7-1d82-4957-a9af-a3286ef18500.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479810 with path __app__.app.retriever._docstore.docs.9e74e2b7-1d82-4957-a9af-a3286ef18500.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04782e0 with path __app__.app.retriever._docstore.docs.9e74e2b7-1d82-4957-a9af-a3286ef18500.relationships.3\n",
"\tTextNode (Other) at 0x7abdc05d92d0 with path __app__.app.retriever._docstore.docs.41060338-1ecf-4fdd-b933-5838ab8035a7\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479ab0 with path __app__.app.retriever._docstore.docs.41060338-1ecf-4fdd-b933-5838ab8035a7.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479570 with path __app__.app.retriever._docstore.docs.41060338-1ecf-4fdd-b933-5838ab8035a7.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478970 with path __app__.app.retriever._docstore.docs.41060338-1ecf-4fdd-b933-5838ab8035a7.relationships.3\n",
"\tTextNode (Other) at 0x7abdc05db610 with path __app__.app.retriever._docstore.docs.297533a1-8b75-45de-9280-500ff32c94a0\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04784f0 with path __app__.app.retriever._docstore.docs.297533a1-8b75-45de-9280-500ff32c94a0.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478e20 with path __app__.app.retriever._docstore.docs.297533a1-8b75-45de-9280-500ff32c94a0.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479600 with path __app__.app.retriever._docstore.docs.297533a1-8b75-45de-9280-500ff32c94a0.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479b70 with path __app__.app.retriever._docstore.docs.ff73bb53-7414-4580-83e2-9a1ae8048389\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478520 with path __app__.app.retriever._docstore.docs.ff73bb53-7414-4580-83e2-9a1ae8048389.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479c90 with path __app__.app.retriever._docstore.docs.ff73bb53-7414-4580-83e2-9a1ae8048389.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc047a050 with path __app__.app.retriever._docstore.docs.ff73bb53-7414-4580-83e2-9a1ae8048389.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478df0 with path __app__.app.retriever._docstore.docs.6a73b641-83a1-4592-b5f8-e0085dc416c0\n",
"\tRelatedNodeInfo (Other) at 0x7abdc047a080 with path __app__.app.retriever._docstore.docs.6a73b641-83a1-4592-b5f8-e0085dc416c0.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04791b0 with path __app__.app.retriever._docstore.docs.6a73b641-83a1-4592-b5f8-e0085dc416c0.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478520 with path __app__.app.retriever._docstore.docs.6a73b641-83a1-4592-b5f8-e0085dc416c0.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478220 with path __app__.app.retriever._docstore.docs.ad0d3826-fa03-4486-b631-310d09e49ca4\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478bb0 with path __app__.app.retriever._docstore.docs.ad0d3826-fa03-4486-b631-310d09e49ca4.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04780a0 with path __app__.app.retriever._docstore.docs.ad0d3826-fa03-4486-b631-310d09e49ca4.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc047a050 with path __app__.app.retriever._docstore.docs.ad0d3826-fa03-4486-b631-310d09e49ca4.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478e20 with path __app__.app.retriever._docstore.docs.6b890bf1-dde1-4a9d-aa5b-c3366fdcbcf5\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478fa0 with path __app__.app.retriever._docstore.docs.6b890bf1-dde1-4a9d-aa5b-c3366fdcbcf5.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478880 with path __app__.app.retriever._docstore.docs.6b890bf1-dde1-4a9d-aa5b-c3366fdcbcf5.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479600 with path __app__.app.retriever._docstore.docs.6b890bf1-dde1-4a9d-aa5b-c3366fdcbcf5.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479870 with path __app__.app.retriever._docstore.docs.a9eaa8a6-9367-44e3-a389-6fe500602762\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478670 with path __app__.app.retriever._docstore.docs.a9eaa8a6-9367-44e3-a389-6fe500602762.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479ba0 with path __app__.app.retriever._docstore.docs.a9eaa8a6-9367-44e3-a389-6fe500602762.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04793f0 with path __app__.app.retriever._docstore.docs.a9eaa8a6-9367-44e3-a389-6fe500602762.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478df0 with path __app__.app.retriever._docstore.docs.e8e16ae3-21a1-4c7f-9239-b56f3e2d89c4\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479ab0 with path __app__.app.retriever._docstore.docs.e8e16ae3-21a1-4c7f-9239-b56f3e2d89c4.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04782e0 with path __app__.app.retriever._docstore.docs.e8e16ae3-21a1-4c7f-9239-b56f3e2d89c4.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479a20 with path __app__.app.retriever._docstore.docs.e8e16ae3-21a1-4c7f-9239-b56f3e2d89c4.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479840 with path __app__.app.retriever._docstore.docs.6e8334ca-9b39-4245-9650-7ab37a266839\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479690 with path __app__.app.retriever._docstore.docs.6e8334ca-9b39-4245-9650-7ab37a266839.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479930 with path __app__.app.retriever._docstore.docs.6e8334ca-9b39-4245-9650-7ab37a266839.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04782e0 with path __app__.app.retriever._docstore.docs.6e8334ca-9b39-4245-9650-7ab37a266839.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478760 with path __app__.app.retriever._docstore.docs.c766be93-5aa8-4026-a5f5-9ca24d0b3868\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479ea0 with path __app__.app.retriever._docstore.docs.c766be93-5aa8-4026-a5f5-9ca24d0b3868.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478b50 with path __app__.app.retriever._docstore.docs.c766be93-5aa8-4026-a5f5-9ca24d0b3868.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479c90 with path __app__.app.retriever._docstore.docs.c766be93-5aa8-4026-a5f5-9ca24d0b3868.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479300 with path __app__.app.retriever._docstore.docs.997aaf89-8173-4031-af9f-aef79eb3be44\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479270 with path __app__.app.retriever._docstore.docs.997aaf89-8173-4031-af9f-aef79eb3be44.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479ab0 with path __app__.app.retriever._docstore.docs.997aaf89-8173-4031-af9f-aef79eb3be44.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04788b0 with path __app__.app.retriever._docstore.docs.997aaf89-8173-4031-af9f-aef79eb3be44.relationships.3\n",
"\tTextNode (Other) at 0x7abdc04793c0 with path __app__.app.retriever._docstore.docs.455b88ed-5688-4359-910e-c0309beed51c\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478220 with path __app__.app.retriever._docstore.docs.455b88ed-5688-4359-910e-c0309beed51c.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479660 with path __app__.app.retriever._docstore.docs.455b88ed-5688-4359-910e-c0309beed51c.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479c90 with path __app__.app.retriever._docstore.docs.455b88ed-5688-4359-910e-c0309beed51c.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478640 with path __app__.app.retriever._docstore.docs.47daf0fa-7002-4c8f-ab86-c83012c0de97\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479300 with path __app__.app.retriever._docstore.docs.47daf0fa-7002-4c8f-ab86-c83012c0de97.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478d00 with path __app__.app.retriever._docstore.docs.47daf0fa-7002-4c8f-ab86-c83012c0de97.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc047a050 with path __app__.app.retriever._docstore.docs.47daf0fa-7002-4c8f-ab86-c83012c0de97.relationships.3\n",
"\tTextNode (Other) at 0x7abdc04797b0 with path __app__.app.retriever._docstore.docs.817a5d81-a3d6-45be-a8ad-4c11b20bd5c7\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478760 with path __app__.app.retriever._docstore.docs.817a5d81-a3d6-45be-a8ad-4c11b20bd5c7.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479b10 with path __app__.app.retriever._docstore.docs.817a5d81-a3d6-45be-a8ad-4c11b20bd5c7.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478e80 with path __app__.app.retriever._docstore.docs.817a5d81-a3d6-45be-a8ad-4c11b20bd5c7.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479690 with path __app__.app.retriever._docstore.docs.995adfa5-7f83-438c-b3d5-7f031d418d0c\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04782e0 with path __app__.app.retriever._docstore.docs.995adfa5-7f83-438c-b3d5-7f031d418d0c.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04794e0 with path __app__.app.retriever._docstore.docs.995adfa5-7f83-438c-b3d5-7f031d418d0c.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04794b0 with path __app__.app.retriever._docstore.docs.995adfa5-7f83-438c-b3d5-7f031d418d0c.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479420 with path __app__.app.retriever._docstore.docs.c646b04b-2417-46fc-862a-4eb4b2077769\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478130 with path __app__.app.retriever._docstore.docs.c646b04b-2417-46fc-862a-4eb4b2077769.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478670 with path __app__.app.retriever._docstore.docs.c646b04b-2417-46fc-862a-4eb4b2077769.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04794e0 with path __app__.app.retriever._docstore.docs.c646b04b-2417-46fc-862a-4eb4b2077769.relationships.3\n",
"\tTextNode (Other) at 0x7abdc04783a0 with path __app__.app.retriever._docstore.docs.5b09230a-734e-4c90-9035-867439ffb7db\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479b70 with path __app__.app.retriever._docstore.docs.5b09230a-734e-4c90-9035-867439ffb7db.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479300 with path __app__.app.retriever._docstore.docs.5b09230a-734e-4c90-9035-867439ffb7db.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04792a0 with path __app__.app.retriever._docstore.docs.5b09230a-734e-4c90-9035-867439ffb7db.relationships.3\n",
"\tTextNode (Other) at 0x7abdc047a080 with path __app__.app.retriever._docstore.docs.bf076cbb-eaf6-49f5-a8ac-8b956bc78b95\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478130 with path __app__.app.retriever._docstore.docs.bf076cbb-eaf6-49f5-a8ac-8b956bc78b95.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc047a8c0 with path __app__.app.retriever._docstore.docs.bf076cbb-eaf6-49f5-a8ac-8b956bc78b95.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc047a080 with path __app__.app.retriever._docstore.docs.bf076cbb-eaf6-49f5-a8ac-8b956bc78b95.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479840 with path __app__.app.retriever._docstore.docs.dbe26130-162d-4c46-9b30-71cc085342c5\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479c30 with path __app__.app.retriever._docstore.docs.dbe26130-162d-4c46-9b30-71cc085342c5.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479b70 with path __app__.app.retriever._docstore.docs.dbe26130-162d-4c46-9b30-71cc085342c5.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479480 with path __app__.app.retriever._docstore.docs.dbe26130-162d-4c46-9b30-71cc085342c5.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478550 with path __app__.app.retriever._docstore.docs.8ed4d72d-96a5-447d-a93b-b8438d92c702\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479cc0 with path __app__.app.retriever._docstore.docs.8ed4d72d-96a5-447d-a93b-b8438d92c702.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc047a050 with path __app__.app.retriever._docstore.docs.8ed4d72d-96a5-447d-a93b-b8438d92c702.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479cc0 with path __app__.app.retriever._docstore.docs.8ed4d72d-96a5-447d-a93b-b8438d92c702.relationships.3\n",
"\tTextNode (Other) at 0x7abdc047a260 with path __app__.app.retriever._docstore.docs.c880d8d2-5fb5-4f02-a2b6-c07ddb87783f\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04795d0 with path __app__.app.retriever._docstore.docs.c880d8d2-5fb5-4f02-a2b6-c07ddb87783f.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478a90 with path __app__.app.retriever._docstore.docs.c880d8d2-5fb5-4f02-a2b6-c07ddb87783f.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04797e0 with path __app__.app.retriever._docstore.docs.c880d8d2-5fb5-4f02-a2b6-c07ddb87783f.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479660 with path __app__.app.retriever._docstore.docs.c706b533-109e-4048-9147-5abfad8f6c39\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04794e0 with path __app__.app.retriever._docstore.docs.c706b533-109e-4048-9147-5abfad8f6c39.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479cf0 with path __app__.app.retriever._docstore.docs.c706b533-109e-4048-9147-5abfad8f6c39.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479180 with path __app__.app.retriever._docstore.docs.c706b533-109e-4048-9147-5abfad8f6c39.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479a20 with path __app__.app.retriever._docstore.docs.aa1d02e8-6a79-4f3f-b640-79c41fa03042\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478220 with path __app__.app.retriever._docstore.docs.aa1d02e8-6a79-4f3f-b640-79c41fa03042.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479d50 with path __app__.app.retriever._docstore.docs.aa1d02e8-6a79-4f3f-b640-79c41fa03042.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04797e0 with path __app__.app.retriever._docstore.docs.aa1d02e8-6a79-4f3f-b640-79c41fa03042.relationships.3\n",
"\tTextNode (Other) at 0x7abdc04788b0 with path __app__.app.retriever._docstore.docs.7d8b193e-2cca-4de2-8596-d8ff30676a14\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478640 with path __app__.app.retriever._docstore.docs.7d8b193e-2cca-4de2-8596-d8ff30676a14.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478b80 with path __app__.app.retriever._docstore.docs.7d8b193e-2cca-4de2-8596-d8ff30676a14.relationships.2\n",
"\tmethod (Custom) at 0x7abdbf5f1a40 with path __app__.app.retriever._docstore.document_exists\n",
"\tmethod (Custom) at 0x7abdbf5f1e00 with path __app__.app.retriever._docstore.from_dict\n",
"\tmethod (Custom) at 0x7abdbf5f1a00 with path __app__.app.retriever._docstore.from_persist_dir\n",
"\tmethod (Custom) at 0x7abdc20e8440 with path __app__.app.retriever._docstore.from_persist_path\n",
"\tmethod (Custom) at 0x7abdbf5f1a40 with path __app__.app.retriever._docstore.get_all_document_hashes\n",
"\tmethod (Custom) at 0x7abdbf5f0540 with path __app__.app.retriever._docstore.get_all_ref_doc_info\n",
"\tmethod (Custom) at 0x7abdbf5f1980 with path __app__.app.retriever._docstore.get_document\n",
"\tmethod (Custom) at 0x7abdbf627640 with path __app__.app.retriever._docstore.get_document_hash\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._docstore.get_node\n",
"\tmethod (Custom) at 0x7abdbf627240 with path __app__.app.retriever._docstore.get_node_dict\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._docstore.get_nodes\n",
"\tmethod (Custom) at 0x7abdbf627fc0 with path __app__.app.retriever._docstore.get_ref_doc_info\n",
"\tmethod (Custom) at 0x7abdbf627240 with path __app__.app.retriever._docstore.persist\n",
"\tmethod (Custom) at 0x7abdbf5f1480 with path __app__.app.retriever._docstore.ref_doc_exists\n",
"\tmethod (Custom) at 0x7abdbf627e40 with path __app__.app.retriever._docstore.set_document_hash\n",
"\tmethod (Custom) at 0x7abdbf627fc0 with path __app__.app.retriever._docstore.to_dict\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._get_nodes_with_embeddings\n",
"\tmethod (Custom) at 0x7abdbf627180 with path __app__.app.retriever._get_prompt_modules\n",
"\tVectorStoreIndex (Other) at 0x7abdc793eec0 with path __app__.app.retriever._index\n",
"\t_abc_data (Custom) at 0x7abdc284d840 with path __app__.app.retriever._index._abc_impl\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._index._add_nodes_to_index\n",
"\tmethod (Custom) at 0x7abdc25a2840 with path __app__.app.retriever._index._aget_node_with_embedding\n",
"\tmethod (Custom) at 0x7abdbf5f1480 with path __app__.app.retriever._index._async_add_nodes_to_index\n",
"\tmethod (Custom) at 0x7abdc0435c40 with path __app__.app.retriever._index._delete_node\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._index._get_node_with_embedding\n",
"\tSimpleGraphStore (Other) at 0x7abdc28e2f80 with path __app__.app.retriever._index._graph_store\n",
"\t_abc_data (Custom) at 0x7abdc2998380 with path __app__.app.retriever._index._graph_store._abc_impl\n",
"\tSimpleGraphStoreData (Other) at 0x7abdc28e3550 with path __app__.app.retriever._index._graph_store._data\n",
"\tLocalFileSystem (Custom) at 0x7abdc28e2230 with path __app__.app.retriever._index._graph_store._fs\n",
"\tfunction (Custom) at 0x7abdc2cd7400 with path __app__.app.retriever._index._graph_store._fs._get_kwargs_from_urls\n",
"\tmethod (Custom) at 0x7abdc055a340 with path __app__.app.retriever._index._graph_store._fs._get_pyarrow_filesystem\n",
"\tmethod (Custom) at 0x7abdc2641000 with path __app__.app.retriever._index._graph_store._fs._isfilestore\n",
"\tmethod (Custom) at 0x7abdc04378c0 with path __app__.app.retriever._index._graph_store._fs._ls_from_cache\n",
"\tmethod (Custom) at 0x7abdbf5f1480 with path __app__.app.retriever._index._graph_store._fs._parent\n",
"\tmethod (Custom) at 0x7abdbf5f0f80 with path __app__.app.retriever._index._graph_store._fs._strip_protocol\n",
"\tmethod (Custom) at 0x7abdbf5f1480 with path __app__.app.retriever._index._graph_store._fs.cat\n",
"\tmethod (Custom) at 0x7abdbf5f0f80 with path __app__.app.retriever._index._graph_store._fs.cat_file\n",
"\tmethod (Custom) at 0x7abdbf5f0540 with path __app__.app.retriever._index._graph_store._fs.cat_ranges\n",
"\tmethod (Custom) at 0x7abdbf5f1480 with path __app__.app.retriever._index._graph_store._fs.checksum\n",
"\tmethod (Custom) at 0x7abdbf627f80 with path __app__.app.retriever._index._graph_store._fs.chmod\n",
"\tmethod (Custom) at 0x7abdbf5f1480 with path __app__.app.retriever._index._graph_store._fs.clear_instance_cache\n",
"\tmethod (Custom) at 0x7abdbf627600 with path __app__.app.retriever._index._graph_store._fs.copy\n",
"\tmethod (Custom) at 0x7abdbf5f0540 with path __app__.app.retriever._index._graph_store._fs.cp\n",
"\tmethod (Custom) at 0x7abdbf5f0f80 with path __app__.app.retriever._index._graph_store._fs.cp_file\n",
"\tmethod (Custom) at 0x7abdbf6ea2c0 with path __app__.app.retriever._index._graph_store._fs.created\n",
"\tmethod (Custom) at 0x7abdbf627880 with path __app__.app.retriever._index._graph_store._fs.current\n",
"\tmethod (Custom) at 0x7abdbf6ea2c0 with path __app__.app.retriever._index._graph_store._fs.delete\n",
"\tDirCache (Custom) at 0x7abdc28e23e0 with path __app__.app.retriever._index._graph_store._fs.dircache\n",
"\tobject (Custom) at 0x7abe1a9b4330 with path __app__.app.retriever._index._graph_store._fs.dircache._MutableMapping__marker\n",
"\t_abc_data (Custom) at 0x7abdc2ce3f00 with path __app__.app.retriever._index._graph_store._fs.dircache._abc_impl\n",
"\tmethod (Custom) at 0x7abdc055b600 with path __app__.app.retriever._index._graph_store._fs.dircache.clear\n",
"\tmethod (Custom) at 0x7abdbf5f1d40 with path __app__.app.retriever._index._graph_store._fs.dircache.get\n",
"\tmethod (Custom) at 0x7abdbf627fc0 with path __app__.app.retriever._index._graph_store._fs.dircache.items\n",
"\tmethod (Custom) at 0x7abdbf5f1e40 with path __app__.app.retriever._index._graph_store._fs.dircache.keys\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._index._graph_store._fs.dircache.pop\n",
"\tmethod (Custom) at 0x7abdbf5f1d40 with path __app__.app.retriever._index._graph_store._fs.dircache.popitem\n",
"\tmethod (Custom) at 0x7abdbf627fc0 with path __app__.app.retriever._index._graph_store._fs.dircache.setdefault\n",
"\tmethod (Custom) at 0x7abdbf5f1e00 with path __app__.app.retriever._index._graph_store._fs.dircache.update\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._index._graph_store._fs.dircache.values\n",
"\tmethod (Custom) at 0x7abdc055bdc0 with path __app__.app.retriever._index._graph_store._fs.disk_usage\n",
"\tmethod (Custom) at 0x7abdbf5f1e40 with path __app__.app.retriever._index._graph_store._fs.download\n",
"\tmethod (Custom) at 0x7abdbf6ea2c0 with path __app__.app.retriever._index._graph_store._fs.du\n",
"\tmethod (Custom) at 0x7abdbf5f1480 with path __app__.app.retriever._index._graph_store._fs.end_transaction\n",
"\tmethod (Custom) at 0x7abdbf627880 with path __app__.app.retriever._index._graph_store._fs.exists\n",
"\tmethod (Custom) at 0x7abdbf5f1e00 with path __app__.app.retriever._index._graph_store._fs.expand_path\n",
"\tmethod (Custom) at 0x7abdbf627880 with path __app__.app.retriever._index._graph_store._fs.find\n",
"\tfunction (Custom) at 0x7abdc2b11090 with path __app__.app.retriever._index._graph_store._fs.from_json\n",
"\tmethod (Custom) at 0x7abdbf5f1e00 with path __app__.app.retriever._index._graph_store._fs.get\n",
"\tmethod (Custom) at 0x7abdbf627fc0 with path __app__.app.retriever._index._graph_store._fs.get_file\n",
"\tmethod (Custom) at 0x7abdbf626f00 with path __app__.app.retriever._index._graph_store._fs.get_mapper\n",
"\tmethod (Custom) at 0x7abdbf5f1e00 with path __app__.app.retriever._index._graph_store._fs.glob\n",
"\tmethod (Custom) at 0x7abdbf5f17c0 with path __app__.app.retriever._index._graph_store._fs.head\n",
"\tmethod (Custom) at 0x7abdbf626f00 with path __app__.app.retriever._index._graph_store._fs.info\n",
"\tmethod (Custom) at 0x7abdbf627fc0 with path __app__.app.retriever._index._graph_store._fs.invalidate_cache\n",
"\tmethod (Custom) at 0x7abdbf627600 with path __app__.app.retriever._index._graph_store._fs.isdir\n",
"\tmethod (Custom) at 0x7abdbf5f17c0 with path __app__.app.retriever._index._graph_store._fs.isfile\n",
"\tmethod (Custom) at 0x7abdbf627fc0 with path __app__.app.retriever._index._graph_store._fs.islink\n",
"\tmethod (Custom) at 0x7abdbf627880 with path __app__.app.retriever._index._graph_store._fs.lexists\n",
"\tmethod (Custom) at 0x7abdbf5f17c0 with path __app__.app.retriever._index._graph_store._fs.link\n",
"\tmethod (Custom) at 0x7abdbf5f1480 with path __app__.app.retriever._index._graph_store._fs.listdir\n",
"\tmethod (Custom) at 0x7abdbf5f0540 with path __app__.app.retriever._index._graph_store._fs.ls\n",
"\tmethod (Custom) at 0x7abdbf5f1e00 with path __app__.app.retriever._index._graph_store._fs.makedir\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._index._graph_store._fs.makedirs\n",
"\tmethod (Custom) at 0x7abdbf5f17c0 with path __app__.app.retriever._index._graph_store._fs.mkdir\n",
"\tmethod (Custom) at 0x7abdbf5f1d40 with path __app__.app.retriever._index._graph_store._fs.mkdirs\n",
"\tmethod (Custom) at 0x7abdc25a1dc0 with path __app__.app.retriever._index._graph_store._fs.modified\n",
"\tmethod (Custom) at 0x7abdbf5f1480 with path __app__.app.retriever._index._graph_store._fs.move\n",
"\tmethod (Custom) at 0x7abdbf5f1e00 with path __app__.app.retriever._index._graph_store._fs.mv\n",
"\tmethod (Custom) at 0x7abdbf5f1480 with path __app__.app.retriever._index._graph_store._fs.mv_file\n",
"\tmethod (Custom) at 0x7abdbf6ebf40 with path __app__.app.retriever._index._graph_store._fs.open\n",
"\tmethod (Custom) at 0x7abdbf5f0540 with path __app__.app.retriever._index._graph_store._fs.pipe\n",
"\tmethod (Custom) at 0x7abdbf5f1e00 with path __app__.app.retriever._index._graph_store._fs.pipe_file\n",
"\tmethod (Custom) at 0x7abdc2451540 with path __app__.app.retriever._index._graph_store._fs.put\n",
"\tmethod (Custom) at 0x7abdbf5f1e00 with path __app__.app.retriever._index._graph_store._fs.put_file\n",
"\tmethod (Custom) at 0x7abdbf5f0540 with path __app__.app.retriever._index._graph_store._fs.read_block\n",
"\tmethod (Custom) at 0x7abdbf627880 with path __app__.app.retriever._index._graph_store._fs.read_bytes\n",
"\tmethod (Custom) at 0x7abdc1aab780 with path __app__.app.retriever._index._graph_store._fs.read_text\n",
"\tmethod (Custom) at 0x7abdbf5f1e00 with path __app__.app.retriever._index._graph_store._fs.rename\n",
"\tmethod (Custom) at 0x7abdbf5f1480 with path __app__.app.retriever._index._graph_store._fs.rm\n",
"\tmethod (Custom) at 0x7abdbf5f17c0 with path __app__.app.retriever._index._graph_store._fs.rm_file\n",
"\tmethod (Custom) at 0x7abdc26b1d80 with path __app__.app.retriever._index._graph_store._fs.rmdir\n",
"\tmethod (Custom) at 0x7abdbf5f1e00 with path __app__.app.retriever._index._graph_store._fs.sign\n",
"\tmethod (Custom) at 0x7abdbf626f00 with path __app__.app.retriever._index._graph_store._fs.size\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._index._graph_store._fs.sizes\n",
"\tmethod (Custom) at 0x7abdbf626f00 with path __app__.app.retriever._index._graph_store._fs.start_transaction\n",
"\tmethod (Custom) at 0x7abdbf6ebc80 with path __app__.app.retriever._index._graph_store._fs.stat\n",
"\tmethod (Custom) at 0x7abdbf5f0f80 with path __app__.app.retriever._index._graph_store._fs.symlink\n",
"\tmethod (Custom) at 0x7abdbf6ebc80 with path __app__.app.retriever._index._graph_store._fs.tail\n",
"\tmethod (Custom) at 0x7abdbf626f00 with path __app__.app.retriever._index._graph_store._fs.to_json\n",
"\tmethod (Custom) at 0x7abdbf6ebf40 with path __app__.app.retriever._index._graph_store._fs.touch\n",
"\tTransaction (Custom) at 0x7abdf42d28f0 with path __app__.app.retriever._index._graph_store._fs.transaction\n",
"\tmethod (Custom) at 0x7abdbf6ea2c0 with path __app__.app.retriever._index._graph_store._fs.transaction.complete\n",
"\tmethod (Custom) at 0x7abdbf6e8a80 with path __app__.app.retriever._index._graph_store._fs.transaction.start\n",
"\tmethod (Custom) at 0x7abdbf6ebc80 with path __app__.app.retriever._index._graph_store._fs.ukey\n",
"\tmethod (Custom) at 0x7abdbf5f17c0 with path __app__.app.retriever._index._graph_store._fs.unstrip_protocol\n",
"\tmethod (Custom) at 0x7abdbf5f1d40 with path __app__.app.retriever._index._graph_store._fs.upload\n",
"\tmethod (Custom) at 0x7abdc2451540 with path __app__.app.retriever._index._graph_store._fs.walk\n",
"\tmethod (Custom) at 0x7abdbf5f0f80 with path __app__.app.retriever._index._graph_store._fs.write_bytes\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._index._graph_store._fs.write_text\n",
"\tmethod (Custom) at 0x7abdbf6ebf40 with path __app__.app.retriever._index._graph_store.delete\n",
"\tmethod (Custom) at 0x7abdc07b1500 with path __app__.app.retriever._index._graph_store.from_dict\n",
"\tmethod (Custom) at 0x7abdbf6e8a80 with path __app__.app.retriever._index._graph_store.from_persist_dir\n",
"\tmethod (Custom) at 0x7abdbf627600 with path __app__.app.retriever._index._graph_store.from_persist_path\n",
"\tmethod (Custom) at 0x7abdbf626f00 with path __app__.app.retriever._index._graph_store.get\n",
"\tmethod (Custom) at 0x7abdbf627600 with path __app__.app.retriever._index._graph_store.get_rel_map\n",
"\tmethod (Custom) at 0x7abdbf626f00 with path __app__.app.retriever._index._graph_store.get_schema\n",
"\tmethod (Custom) at 0x7abdbf627600 with path __app__.app.retriever._index._graph_store.persist\n",
"\tmethod (Custom) at 0x7abdbf627880 with path __app__.app.retriever._index._graph_store.query\n",
"\tmethod (Custom) at 0x7abdbf627600 with path __app__.app.retriever._index._graph_store.to_dict\n",
"\tmethod (Custom) at 0x7abdbf5f1e00 with path __app__.app.retriever._index._graph_store.upsert_triplet\n",
"\tmethod (Custom) at 0x7abdc056f880 with path __app__.app.retriever._index.as_chat_engine\n",
"\tmethod (Custom) at 0x7abdbf5f1e00 with path __app__.app.retriever._index.as_query_engine\n",
"\tmethod (Custom) at 0x7abdc056f880 with path __app__.app.retriever._index.as_retriever\n",
"\tmethod (Custom) at 0x7abdbf5f1e00 with path __app__.app.retriever._index.build_index_from_nodes\n",
"\tmethod (Custom) at 0x7abdc049fe80 with path __app__.app.retriever._index.delete\n",
"\tmethod (Custom) at 0x7abdbf5f1e00 with path __app__.app.retriever._index.delete_nodes\n",
"\tmethod (Custom) at 0x7abdbf6ebf40 with path __app__.app.retriever._index.delete_ref_doc\n",
"\tSimpleDocumentStore (Other) at 0x7abdc28e2830 with path __app__.app.retriever._index.docstore\n",
"\t_abc_data (Custom) at 0x7abdc29bd200 with path __app__.app.retriever._index.docstore._abc_impl\n",
"\tSimpleKVStore (Other) at 0x7abdc28e2d70 with path __app__.app.retriever._index.docstore._kvstore\n",
"\t_abc_data (Custom) at 0x7abdc32c0c00 with path __app__.app.retriever._index.docstore._kvstore._abc_impl\n",
"\tmethod (Custom) at 0x7abdc05588c0 with path __app__.app.retriever._index.docstore._kvstore.delete\n",
"\tmethod (Custom) at 0x7abdbf627880 with path __app__.app.retriever._index.docstore._kvstore.from_dict\n",
"\tmethod (Custom) at 0x7abdbf6ebf40 with path __app__.app.retriever._index.docstore._kvstore.from_persist_path\n",
"\tmethod (Custom) at 0x7abdbf61bac0 with path __app__.app.retriever._index.docstore._kvstore.get\n",
"\tmethod (Custom) at 0x7abdbf627880 with path __app__.app.retriever._index.docstore._kvstore.get_all\n",
"\tmethod (Custom) at 0x7abdbf5f1a40 with path __app__.app.retriever._index.docstore._kvstore.persist\n",
"\tmethod (Custom) at 0x7abdbf627880 with path __app__.app.retriever._index.docstore._kvstore.put\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._index.docstore._kvstore.to_dict\n",
"\tmethod (Custom) at 0x7abdc0558d00 with path __app__.app.retriever._index.docstore._remove_ref_doc_node\n",
"\tmethod (Custom) at 0x7abdc055a940 with path __app__.app.retriever._index.docstore.add_documents\n",
"\tmethod (Custom) at 0x7abdc055a880 with path __app__.app.retriever._index.docstore.delete_document\n",
"\tmethod (Custom) at 0x7abdc0559dc0 with path __app__.app.retriever._index.docstore.delete_ref_doc\n",
"\tTextNode (Other) at 0x7abdc05d9b70 with path __app__.app.retriever._index.docstore.docs.b6f659fc-a470-4163-9dde-a6e9867594d2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479c90 with path __app__.app.retriever._index.docstore.docs.b6f659fc-a470-4163-9dde-a6e9867594d2.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc05dbd30 with path __app__.app.retriever._index.docstore.docs.b6f659fc-a470-4163-9dde-a6e9867594d2.relationships.3\n",
"\tTextNode (Other) at 0x7abdc28e2c20 with path __app__.app.retriever._index.docstore.docs.e8bf0d6e-8dc5-41f6-8137-a1f608fd40bc\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04785b0 with path __app__.app.retriever._index.docstore.docs.e8bf0d6e-8dc5-41f6-8137-a1f608fd40bc.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478550 with path __app__.app.retriever._index.docstore.docs.e8bf0d6e-8dc5-41f6-8137-a1f608fd40bc.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04799c0 with path __app__.app.retriever._index.docstore.docs.e8bf0d6e-8dc5-41f6-8137-a1f608fd40bc.relationships.3\n",
"\tTextNode (Other) at 0x7abdc05dbd30 with path __app__.app.retriever._index.docstore.docs.9e74e2b7-1d82-4957-a9af-a3286ef18500\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479c00 with path __app__.app.retriever._index.docstore.docs.9e74e2b7-1d82-4957-a9af-a3286ef18500.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04791b0 with path __app__.app.retriever._index.docstore.docs.9e74e2b7-1d82-4957-a9af-a3286ef18500.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478040 with path __app__.app.retriever._index.docstore.docs.9e74e2b7-1d82-4957-a9af-a3286ef18500.relationships.3\n",
"\tTextNode (Other) at 0x7abdc05da500 with path __app__.app.retriever._index.docstore.docs.41060338-1ecf-4fdd-b933-5838ab8035a7\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479150 with path __app__.app.retriever._index.docstore.docs.41060338-1ecf-4fdd-b933-5838ab8035a7.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479c90 with path __app__.app.retriever._index.docstore.docs.41060338-1ecf-4fdd-b933-5838ab8035a7.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479d20 with path __app__.app.retriever._index.docstore.docs.41060338-1ecf-4fdd-b933-5838ab8035a7.relationships.3\n",
"\tTextNode (Other) at 0x7abdc05db610 with path __app__.app.retriever._index.docstore.docs.297533a1-8b75-45de-9280-500ff32c94a0\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04797e0 with path __app__.app.retriever._index.docstore.docs.297533a1-8b75-45de-9280-500ff32c94a0.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479900 with path __app__.app.retriever._index.docstore.docs.297533a1-8b75-45de-9280-500ff32c94a0.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478430 with path __app__.app.retriever._index.docstore.docs.297533a1-8b75-45de-9280-500ff32c94a0.relationships.3\n",
"\tTextNode (Other) at 0x7abdc04791b0 with path __app__.app.retriever._index.docstore.docs.ff73bb53-7414-4580-83e2-9a1ae8048389\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478f10 with path __app__.app.retriever._index.docstore.docs.ff73bb53-7414-4580-83e2-9a1ae8048389.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478eb0 with path __app__.app.retriever._index.docstore.docs.ff73bb53-7414-4580-83e2-9a1ae8048389.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478580 with path __app__.app.retriever._index.docstore.docs.ff73bb53-7414-4580-83e2-9a1ae8048389.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478e80 with path __app__.app.retriever._index.docstore.docs.6a73b641-83a1-4592-b5f8-e0085dc416c0\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478bb0 with path __app__.app.retriever._index.docstore.docs.6a73b641-83a1-4592-b5f8-e0085dc416c0.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478760 with path __app__.app.retriever._index.docstore.docs.6a73b641-83a1-4592-b5f8-e0085dc416c0.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478d30 with path __app__.app.retriever._index.docstore.docs.6a73b641-83a1-4592-b5f8-e0085dc416c0.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478250 with path __app__.app.retriever._index.docstore.docs.ad0d3826-fa03-4486-b631-310d09e49ca4\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479a50 with path __app__.app.retriever._index.docstore.docs.ad0d3826-fa03-4486-b631-310d09e49ca4.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04796c0 with path __app__.app.retriever._index.docstore.docs.ad0d3826-fa03-4486-b631-310d09e49ca4.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479810 with path __app__.app.retriever._index.docstore.docs.ad0d3826-fa03-4486-b631-310d09e49ca4.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478c70 with path __app__.app.retriever._index.docstore.docs.6b890bf1-dde1-4a9d-aa5b-c3366fdcbcf5\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478040 with path __app__.app.retriever._index.docstore.docs.6b890bf1-dde1-4a9d-aa5b-c3366fdcbcf5.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478fa0 with path __app__.app.retriever._index.docstore.docs.6b890bf1-dde1-4a9d-aa5b-c3366fdcbcf5.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04792a0 with path __app__.app.retriever._index.docstore.docs.6b890bf1-dde1-4a9d-aa5b-c3366fdcbcf5.relationships.3\n",
"\tTextNode (Other) at 0x7abdc047a050 with path __app__.app.retriever._index.docstore.docs.a9eaa8a6-9367-44e3-a389-6fe500602762\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479480 with path __app__.app.retriever._index.docstore.docs.a9eaa8a6-9367-44e3-a389-6fe500602762.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04790f0 with path __app__.app.retriever._index.docstore.docs.a9eaa8a6-9367-44e3-a389-6fe500602762.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479ea0 with path __app__.app.retriever._index.docstore.docs.a9eaa8a6-9367-44e3-a389-6fe500602762.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478a90 with path __app__.app.retriever._index.docstore.docs.e8e16ae3-21a1-4c7f-9239-b56f3e2d89c4\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479d20 with path __app__.app.retriever._index.docstore.docs.e8e16ae3-21a1-4c7f-9239-b56f3e2d89c4.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc047a260 with path __app__.app.retriever._index.docstore.docs.e8e16ae3-21a1-4c7f-9239-b56f3e2d89c4.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478d30 with path __app__.app.retriever._index.docstore.docs.e8e16ae3-21a1-4c7f-9239-b56f3e2d89c4.relationships.3\n",
"\tTextNode (Other) at 0x7abdc04791e0 with path __app__.app.retriever._index.docstore.docs.6e8334ca-9b39-4245-9650-7ab37a266839\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479450 with path __app__.app.retriever._index.docstore.docs.6e8334ca-9b39-4245-9650-7ab37a266839.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479420 with path __app__.app.retriever._index.docstore.docs.6e8334ca-9b39-4245-9650-7ab37a266839.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479030 with path __app__.app.retriever._index.docstore.docs.6e8334ca-9b39-4245-9650-7ab37a266839.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479990 with path __app__.app.retriever._index.docstore.docs.c766be93-5aa8-4026-a5f5-9ca24d0b3868\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04785b0 with path __app__.app.retriever._index.docstore.docs.c766be93-5aa8-4026-a5f5-9ca24d0b3868.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479c00 with path __app__.app.retriever._index.docstore.docs.c766be93-5aa8-4026-a5f5-9ca24d0b3868.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478760 with path __app__.app.retriever._index.docstore.docs.c766be93-5aa8-4026-a5f5-9ca24d0b3868.relationships.3\n",
"\tTextNode (Other) at 0x7abdc04794e0 with path __app__.app.retriever._index.docstore.docs.997aaf89-8173-4031-af9f-aef79eb3be44\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478430 with path __app__.app.retriever._index.docstore.docs.997aaf89-8173-4031-af9f-aef79eb3be44.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479510 with path __app__.app.retriever._index.docstore.docs.997aaf89-8173-4031-af9f-aef79eb3be44.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478220 with path __app__.app.retriever._index.docstore.docs.997aaf89-8173-4031-af9f-aef79eb3be44.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479270 with path __app__.app.retriever._index.docstore.docs.455b88ed-5688-4359-910e-c0309beed51c\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479ba0 with path __app__.app.retriever._index.docstore.docs.455b88ed-5688-4359-910e-c0309beed51c.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479960 with path __app__.app.retriever._index.docstore.docs.455b88ed-5688-4359-910e-c0309beed51c.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479a20 with path __app__.app.retriever._index.docstore.docs.455b88ed-5688-4359-910e-c0309beed51c.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478bb0 with path __app__.app.retriever._index.docstore.docs.47daf0fa-7002-4c8f-ab86-c83012c0de97\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04794e0 with path __app__.app.retriever._index.docstore.docs.47daf0fa-7002-4c8f-ab86-c83012c0de97.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04795d0 with path __app__.app.retriever._index.docstore.docs.47daf0fa-7002-4c8f-ab86-c83012c0de97.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479bd0 with path __app__.app.retriever._index.docstore.docs.47daf0fa-7002-4c8f-ab86-c83012c0de97.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479840 with path __app__.app.retriever._index.docstore.docs.817a5d81-a3d6-45be-a8ad-4c11b20bd5c7\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479150 with path __app__.app.retriever._index.docstore.docs.817a5d81-a3d6-45be-a8ad-4c11b20bd5c7.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc047a080 with path __app__.app.retriever._index.docstore.docs.817a5d81-a3d6-45be-a8ad-4c11b20bd5c7.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478f10 with path __app__.app.retriever._index.docstore.docs.817a5d81-a3d6-45be-a8ad-4c11b20bd5c7.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479960 with path __app__.app.retriever._index.docstore.docs.995adfa5-7f83-438c-b3d5-7f031d418d0c\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479480 with path __app__.app.retriever._index.docstore.docs.995adfa5-7f83-438c-b3d5-7f031d418d0c.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478670 with path __app__.app.retriever._index.docstore.docs.995adfa5-7f83-438c-b3d5-7f031d418d0c.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479cc0 with path __app__.app.retriever._index.docstore.docs.995adfa5-7f83-438c-b3d5-7f031d418d0c.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478250 with path __app__.app.retriever._index.docstore.docs.c646b04b-2417-46fc-862a-4eb4b2077769\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479360 with path __app__.app.retriever._index.docstore.docs.c646b04b-2417-46fc-862a-4eb4b2077769.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479750 with path __app__.app.retriever._index.docstore.docs.c646b04b-2417-46fc-862a-4eb4b2077769.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478f10 with path __app__.app.retriever._index.docstore.docs.c646b04b-2417-46fc-862a-4eb4b2077769.relationships.3\n",
"\tTextNode (Other) at 0x7abdc04782b0 with path __app__.app.retriever._index.docstore.docs.5b09230a-734e-4c90-9035-867439ffb7db\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479120 with path __app__.app.retriever._index.docstore.docs.5b09230a-734e-4c90-9035-867439ffb7db.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479ed0 with path __app__.app.retriever._index.docstore.docs.5b09230a-734e-4c90-9035-867439ffb7db.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478640 with path __app__.app.retriever._index.docstore.docs.5b09230a-734e-4c90-9035-867439ffb7db.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479030 with path __app__.app.retriever._index.docstore.docs.bf076cbb-eaf6-49f5-a8ac-8b956bc78b95\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04785b0 with path __app__.app.retriever._index.docstore.docs.bf076cbb-eaf6-49f5-a8ac-8b956bc78b95.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478dc0 with path __app__.app.retriever._index.docstore.docs.bf076cbb-eaf6-49f5-a8ac-8b956bc78b95.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04791e0 with path __app__.app.retriever._index.docstore.docs.bf076cbb-eaf6-49f5-a8ac-8b956bc78b95.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478df0 with path __app__.app.retriever._index.docstore.docs.dbe26130-162d-4c46-9b30-71cc085342c5\n",
"\tRelatedNodeInfo (Other) at 0x7abdc047a080 with path __app__.app.retriever._index.docstore.docs.dbe26130-162d-4c46-9b30-71cc085342c5.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478670 with path __app__.app.retriever._index.docstore.docs.dbe26130-162d-4c46-9b30-71cc085342c5.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479ba0 with path __app__.app.retriever._index.docstore.docs.dbe26130-162d-4c46-9b30-71cc085342c5.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479cc0 with path __app__.app.retriever._index.docstore.docs.8ed4d72d-96a5-447d-a93b-b8438d92c702\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478640 with path __app__.app.retriever._index.docstore.docs.8ed4d72d-96a5-447d-a93b-b8438d92c702.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479840 with path __app__.app.retriever._index.docstore.docs.8ed4d72d-96a5-447d-a93b-b8438d92c702.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479ba0 with path __app__.app.retriever._index.docstore.docs.8ed4d72d-96a5-447d-a93b-b8438d92c702.relationships.3\n",
"\tTextNode (Other) at 0x7abdc047a500 with path __app__.app.retriever._index.docstore.docs.c880d8d2-5fb5-4f02-a2b6-c07ddb87783f\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478610 with path __app__.app.retriever._index.docstore.docs.c880d8d2-5fb5-4f02-a2b6-c07ddb87783f.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479d20 with path __app__.app.retriever._index.docstore.docs.c880d8d2-5fb5-4f02-a2b6-c07ddb87783f.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478880 with path __app__.app.retriever._index.docstore.docs.c880d8d2-5fb5-4f02-a2b6-c07ddb87783f.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479390 with path __app__.app.retriever._index.docstore.docs.c706b533-109e-4048-9147-5abfad8f6c39\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04782b0 with path __app__.app.retriever._index.docstore.docs.c706b533-109e-4048-9147-5abfad8f6c39.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479600 with path __app__.app.retriever._index.docstore.docs.c706b533-109e-4048-9147-5abfad8f6c39.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479540 with path __app__.app.retriever._index.docstore.docs.c706b533-109e-4048-9147-5abfad8f6c39.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478d00 with path __app__.app.retriever._index.docstore.docs.aa1d02e8-6a79-4f3f-b640-79c41fa03042\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479b70 with path __app__.app.retriever._index.docstore.docs.aa1d02e8-6a79-4f3f-b640-79c41fa03042.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479600 with path __app__.app.retriever._index.docstore.docs.aa1d02e8-6a79-4f3f-b640-79c41fa03042.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479b70 with path __app__.app.retriever._index.docstore.docs.aa1d02e8-6a79-4f3f-b640-79c41fa03042.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478550 with path __app__.app.retriever._index.docstore.docs.7d8b193e-2cca-4de2-8596-d8ff30676a14\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479d50 with path __app__.app.retriever._index.docstore.docs.7d8b193e-2cca-4de2-8596-d8ff30676a14.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478250 with path __app__.app.retriever._index.docstore.docs.7d8b193e-2cca-4de2-8596-d8ff30676a14.relationships.2\n",
"\tmethod (Custom) at 0x7abdbf5e0c40 with path __app__.app.retriever._index.docstore.document_exists\n",
"\tmethod (Custom) at 0x7abdc25a13c0 with path __app__.app.retriever._index.docstore.from_dict\n",
"\tmethod (Custom) at 0x7abdbf5e0c40 with path __app__.app.retriever._index.docstore.from_persist_dir\n",
"\tmethod (Custom) at 0x7abdc0435e80 with path __app__.app.retriever._index.docstore.from_persist_path\n",
"\tmethod (Custom) at 0x7abdbf5e1500 with path __app__.app.retriever._index.docstore.get_all_document_hashes\n",
"\tmethod (Custom) at 0x7abdc03e5ac0 with path __app__.app.retriever._index.docstore.get_all_ref_doc_info\n",
"\tmethod (Custom) at 0x7abdbf5e0c40 with path __app__.app.retriever._index.docstore.get_document\n",
"\tmethod (Custom) at 0x7abdbf5e3dc0 with path __app__.app.retriever._index.docstore.get_document_hash\n",
"\tmethod (Custom) at 0x7abdc25a13c0 with path __app__.app.retriever._index.docstore.get_node\n",
"\tmethod (Custom) at 0x7abdbf5e1500 with path __app__.app.retriever._index.docstore.get_node_dict\n",
"\tmethod (Custom) at 0x7abdc25a13c0 with path __app__.app.retriever._index.docstore.get_nodes\n",
"\tmethod (Custom) at 0x7abdbf5e0c40 with path __app__.app.retriever._index.docstore.get_ref_doc_info\n",
"\tmethod (Custom) at 0x7abdbf6eb100 with path __app__.app.retriever._index.docstore.persist\n",
"\tmethod (Custom) at 0x7abdc25a13c0 with path __app__.app.retriever._index.docstore.ref_doc_exists\n",
"\tmethod (Custom) at 0x7abdbf5e3dc0 with path __app__.app.retriever._index.docstore.set_document_hash\n",
"\tmethod (Custom) at 0x7abdc25a2840 with path __app__.app.retriever._index.docstore.to_dict\n",
"\tmethod (Custom) at 0x7abdbf5e3dc0 with path __app__.app.retriever._index.from_documents\n",
"\tmethod (Custom) at 0x7abdc25a13c0 with path __app__.app.retriever._index.from_vector_store\n",
"\tIndexDict (Other) at 0x7abdc1c34d30 with path __app__.app.retriever._index.index_struct\n",
"\tABCMeta (Custom) at 0x5b02e6bb4060 with path __app__.app.retriever._index.index_struct_cls\n",
"\t_abc_data (Custom) at 0x7abdc35a2180 with path __app__.app.retriever._index.index_struct_cls._abc_impl\n",
"\tfunction (Custom) at 0x7abdc35a8310 with path __app__.app.retriever._index.index_struct_cls.add_node\n",
"\tfunction (Custom) at 0x7abdc35a83a0 with path __app__.app.retriever._index.index_struct_cls.delete\n",
"\tmethod (Custom) at 0x7abdc04cfd40 with path __app__.app.retriever._index.index_struct_cls.from_dict\n",
"\tmethod (Custom) at 0x7abdc2642580 with path __app__.app.retriever._index.index_struct_cls.from_json\n",
"\tfunction (Custom) at 0x7abdc357f0a0 with path __app__.app.retriever._index.index_struct_cls.get_summary\n",
"\tmethod (Custom) at 0x7abdc049dc00 with path __app__.app.retriever._index.index_struct_cls.get_type\n",
"\tmethod (Custom) at 0x7abdbf5e3dc0 with path __app__.app.retriever._index.index_struct_cls.schema\n",
"\tfunction (Custom) at 0x7abdc591dcf0 with path __app__.app.retriever._index.index_struct_cls.to_dict\n",
"\tfunction (Custom) at 0x7abdc591db40 with path __app__.app.retriever._index.index_struct_cls.to_json\n",
"\tmethod (Custom) at 0x7abdbf6512c0 with path __app__.app.retriever._index.insert\n",
"\tmethod (Custom) at 0x7abdbf6ead00 with path __app__.app.retriever._index.insert_nodes\n",
"\tRefDocInfo (Other) at 0x7abdc05da500 with path __app__.app.retriever._index.ref_doc_info.2e965a27-99f4-4c70-adc7-41ebeefb63ab\n",
"\tmethod (Custom) at 0x7abdc26166c0 with path __app__.app.retriever._index.refresh\n",
"\tmethod (Custom) at 0x7abdc26b1d80 with path __app__.app.retriever._index.refresh_ref_docs\n",
"\tServiceContext (Other) at 0x7abdc793f820 with path __app__.app.retriever._index.service_context\n",
"\tLLMPredictor (Other) at 0x7abdc2b7fa40 with path __app__.app.retriever._index.service_context.llm_predictor\n",
"\tPromptHelper (Other) at 0x7abdc2a1cf40 with path __app__.app.retriever._index.service_context.prompt_helper\n",
"\tOpenAIEmbedding (Other) at 0x7abdc27927a0 with path __app__.app.retriever._index.service_context.embed_model\n",
"\tSentenceSplitter (Other) at 0x7abdce689080 with path __app__.app.retriever._index.service_context.transformations[0]\n",
"\tfunction (Custom) at 0x7abdc347a440 with path __app__.app.retriever._index.service_context.transformations[0].id_func\n",
"\tLlamaLogger (Other) at 0x7abdcef929b0 with path __app__.app.retriever._index.service_context.llama_logger\n",
"\tmethod (Custom) at 0x7abdbf651580 with path __app__.app.retriever._index.service_context.llama_logger.add_log\n",
"\tmethod (Custom) at 0x7abdbf6516c0 with path __app__.app.retriever._index.service_context.llama_logger.get_logs\n",
"\tmethod (Custom) at 0x7abdbf653880 with path __app__.app.retriever._index.service_context.llama_logger.get_metadata\n",
"\tmethod (Custom) at 0x7abdbf627180 with path __app__.app.retriever._index.service_context.llama_logger.reset\n",
"\tmethod (Custom) at 0x7abdbf625b40 with path __app__.app.retriever._index.service_context.llama_logger.set_metadata\n",
"\tmethod (Custom) at 0x7abdbf627180 with path __app__.app.retriever._index.service_context.llama_logger.unset_metadata\n",
"\tCallbackManager (Other) at 0x7abdc28e31c0 with path __app__.app.retriever._index.service_context.callback_manager\n",
"\t_abc_data (Custom) at 0x7abdc6460b40 with path __app__.app.retriever._index.service_context.callback_manager._abc_impl\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._index.service_context.callback_manager._reset_trace_events\n",
"\tmethod (Custom) at 0x7abdbf625b40 with path __app__.app.retriever._index.service_context.callback_manager.add_handler\n",
"\tmethod (Custom) at 0x7abdc2483ec0 with path __app__.app.retriever._index.service_context.callback_manager.as_trace\n",
"\tmethod (Custom) at 0x7abdbf6275c0 with path __app__.app.retriever._index.service_context.callback_manager.end_trace\n",
"\tmethod (Custom) at 0x7abdbf627180 with path __app__.app.retriever._index.service_context.callback_manager.event\n",
"\tmethod (Custom) at 0x7abdbf650440 with path __app__.app.retriever._index.service_context.callback_manager.on_event_end\n",
"\tmethod (Custom) at 0x7abdbf5e19c0 with path __app__.app.retriever._index.service_context.callback_manager.on_event_start\n",
"\tmethod (Custom) at 0x7abdbf627600 with path __app__.app.retriever._index.service_context.callback_manager.remove_handler\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._index.service_context.callback_manager.set_handlers\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._index.service_context.callback_manager.start_trace\n",
"\tmethod (Custom) at 0x7abdc07b1500 with path __app__.app.retriever._index.set_index_id\n",
"\tStorageContext (Other) at 0x7abdc28e20e0 with path __app__.app.retriever._index.storage_context\n",
"\tSimpleDocumentStore (Other) at 0x7abdc28e2830 with path __app__.app.retriever._index.storage_context.docstore\n",
"\t_abc_data (Custom) at 0x7abdc29bd200 with path __app__.app.retriever._index.storage_context.docstore._abc_impl\n",
"\tSimpleKVStore (Other) at 0x7abdc28e2d70 with path __app__.app.retriever._index.storage_context.docstore._kvstore\n",
"\t_abc_data (Custom) at 0x7abdc32c0c00 with path __app__.app.retriever._index.storage_context.docstore._kvstore._abc_impl\n",
"\tmethod (Custom) at 0x7abdbf651840 with path __app__.app.retriever._index.storage_context.docstore._kvstore.delete\n",
"\tmethod (Custom) at 0x7abdbf653e80 with path __app__.app.retriever._index.storage_context.docstore._kvstore.from_dict\n",
"\tmethod (Custom) at 0x7abdbf626f40 with path __app__.app.retriever._index.storage_context.docstore._kvstore.from_persist_path\n",
"\tmethod (Custom) at 0x7abdbf627880 with path __app__.app.retriever._index.storage_context.docstore._kvstore.get\n",
"\tmethod (Custom) at 0x7abdbf626f00 with path __app__.app.retriever._index.storage_context.docstore._kvstore.get_all\n",
"\tmethod (Custom) at 0x7abdbf6275c0 with path __app__.app.retriever._index.storage_context.docstore._kvstore.persist\n",
"\tmethod (Custom) at 0x7abdbf627fc0 with path __app__.app.retriever._index.storage_context.docstore._kvstore.put\n",
"\tmethod (Custom) at 0x7abdbf653a80 with path __app__.app.retriever._index.storage_context.docstore._kvstore.to_dict\n",
"\tmethod (Custom) at 0x7abdbf653e80 with path __app__.app.retriever._index.storage_context.docstore._remove_ref_doc_node\n",
"\tmethod (Custom) at 0x7abdbf652d00 with path __app__.app.retriever._index.storage_context.docstore.add_documents\n",
"\tmethod (Custom) at 0x7abdbf650bc0 with path __app__.app.retriever._index.storage_context.docstore.delete_document\n",
"\tmethod (Custom) at 0x7abdbf627fc0 with path __app__.app.retriever._index.storage_context.docstore.delete_ref_doc\n",
"\tTextNode (Other) at 0x7abdc05dbd30 with path __app__.app.retriever._index.storage_context.docstore.docs.b6f659fc-a470-4163-9dde-a6e9867594d2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc040e8f0 with path __app__.app.retriever._index.storage_context.docstore.docs.b6f659fc-a470-4163-9dde-a6e9867594d2.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479840 with path __app__.app.retriever._index.storage_context.docstore.docs.b6f659fc-a470-4163-9dde-a6e9867594d2.relationships.3\n",
"\tTextNode (Other) at 0x7abdc05d8ca0 with path __app__.app.retriever._index.storage_context.docstore.docs.e8bf0d6e-8dc5-41f6-8137-a1f608fd40bc\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479a20 with path __app__.app.retriever._index.storage_context.docstore.docs.e8bf0d6e-8dc5-41f6-8137-a1f608fd40bc.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478970 with path __app__.app.retriever._index.storage_context.docstore.docs.e8bf0d6e-8dc5-41f6-8137-a1f608fd40bc.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479c30 with path __app__.app.retriever._index.storage_context.docstore.docs.e8bf0d6e-8dc5-41f6-8137-a1f608fd40bc.relationships.3\n",
"\tTextNode (Other) at 0x7abdc05d92d0 with path __app__.app.retriever._index.storage_context.docstore.docs.9e74e2b7-1d82-4957-a9af-a3286ef18500\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479d20 with path __app__.app.retriever._index.storage_context.docstore.docs.9e74e2b7-1d82-4957-a9af-a3286ef18500.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04782e0 with path __app__.app.retriever._index.storage_context.docstore.docs.9e74e2b7-1d82-4957-a9af-a3286ef18500.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04794e0 with path __app__.app.retriever._index.storage_context.docstore.docs.9e74e2b7-1d82-4957-a9af-a3286ef18500.relationships.3\n",
"\tTextNode (Other) at 0x7abdc05d92d0 with path __app__.app.retriever._index.storage_context.docstore.docs.41060338-1ecf-4fdd-b933-5838ab8035a7\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479c00 with path __app__.app.retriever._index.storage_context.docstore.docs.41060338-1ecf-4fdd-b933-5838ab8035a7.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478d00 with path __app__.app.retriever._index.storage_context.docstore.docs.41060338-1ecf-4fdd-b933-5838ab8035a7.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04788e0 with path __app__.app.retriever._index.storage_context.docstore.docs.41060338-1ecf-4fdd-b933-5838ab8035a7.relationships.3\n",
"\tTextNode (Other) at 0x7abdc05d8ca0 with path __app__.app.retriever._index.storage_context.docstore.docs.297533a1-8b75-45de-9280-500ff32c94a0\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479b70 with path __app__.app.retriever._index.storage_context.docstore.docs.297533a1-8b75-45de-9280-500ff32c94a0.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478c70 with path __app__.app.retriever._index.storage_context.docstore.docs.297533a1-8b75-45de-9280-500ff32c94a0.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478bb0 with path __app__.app.retriever._index.storage_context.docstore.docs.297533a1-8b75-45de-9280-500ff32c94a0.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479510 with path __app__.app.retriever._index.storage_context.docstore.docs.ff73bb53-7414-4580-83e2-9a1ae8048389\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479270 with path __app__.app.retriever._index.storage_context.docstore.docs.ff73bb53-7414-4580-83e2-9a1ae8048389.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478880 with path __app__.app.retriever._index.storage_context.docstore.docs.ff73bb53-7414-4580-83e2-9a1ae8048389.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478dc0 with path __app__.app.retriever._index.storage_context.docstore.docs.ff73bb53-7414-4580-83e2-9a1ae8048389.relationships.3\n",
"\tTextNode (Other) at 0x7abdc04796f0 with path __app__.app.retriever._index.storage_context.docstore.docs.6a73b641-83a1-4592-b5f8-e0085dc416c0\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479c30 with path __app__.app.retriever._index.storage_context.docstore.docs.6a73b641-83a1-4592-b5f8-e0085dc416c0.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478df0 with path __app__.app.retriever._index.storage_context.docstore.docs.6a73b641-83a1-4592-b5f8-e0085dc416c0.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479b40 with path __app__.app.retriever._index.storage_context.docstore.docs.6a73b641-83a1-4592-b5f8-e0085dc416c0.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479180 with path __app__.app.retriever._index.storage_context.docstore.docs.ad0d3826-fa03-4486-b631-310d09e49ca4\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479a50 with path __app__.app.retriever._index.storage_context.docstore.docs.ad0d3826-fa03-4486-b631-310d09e49ca4.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479840 with path __app__.app.retriever._index.storage_context.docstore.docs.ad0d3826-fa03-4486-b631-310d09e49ca4.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478b80 with path __app__.app.retriever._index.storage_context.docstore.docs.ad0d3826-fa03-4486-b631-310d09e49ca4.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479810 with path __app__.app.retriever._index.storage_context.docstore.docs.6b890bf1-dde1-4a9d-aa5b-c3366fdcbcf5\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478580 with path __app__.app.retriever._index.storage_context.docstore.docs.6b890bf1-dde1-4a9d-aa5b-c3366fdcbcf5.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479390 with path __app__.app.retriever._index.storage_context.docstore.docs.6b890bf1-dde1-4a9d-aa5b-c3366fdcbcf5.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04792a0 with path __app__.app.retriever._index.storage_context.docstore.docs.6b890bf1-dde1-4a9d-aa5b-c3366fdcbcf5.relationships.3\n",
"\tTextNode (Other) at 0x7abdc04797b0 with path __app__.app.retriever._index.storage_context.docstore.docs.a9eaa8a6-9367-44e3-a389-6fe500602762\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479c00 with path __app__.app.retriever._index.storage_context.docstore.docs.a9eaa8a6-9367-44e3-a389-6fe500602762.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479900 with path __app__.app.retriever._index.storage_context.docstore.docs.a9eaa8a6-9367-44e3-a389-6fe500602762.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478a90 with path __app__.app.retriever._index.storage_context.docstore.docs.a9eaa8a6-9367-44e3-a389-6fe500602762.relationships.3\n",
"\tTextNode (Other) at 0x7abdc04795d0 with path __app__.app.retriever._index.storage_context.docstore.docs.e8e16ae3-21a1-4c7f-9239-b56f3e2d89c4\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479510 with path __app__.app.retriever._index.storage_context.docstore.docs.e8e16ae3-21a1-4c7f-9239-b56f3e2d89c4.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478f10 with path __app__.app.retriever._index.storage_context.docstore.docs.e8e16ae3-21a1-4c7f-9239-b56f3e2d89c4.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc047a080 with path __app__.app.retriever._index.storage_context.docstore.docs.e8e16ae3-21a1-4c7f-9239-b56f3e2d89c4.relationships.3\n",
"\tTextNode (Other) at 0x7abdc04788b0 with path __app__.app.retriever._index.storage_context.docstore.docs.6e8334ca-9b39-4245-9650-7ab37a266839\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479150 with path __app__.app.retriever._index.storage_context.docstore.docs.6e8334ca-9b39-4245-9650-7ab37a266839.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479180 with path __app__.app.retriever._index.storage_context.docstore.docs.6e8334ca-9b39-4245-9650-7ab37a266839.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479b70 with path __app__.app.retriever._index.storage_context.docstore.docs.6e8334ca-9b39-4245-9650-7ab37a266839.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479390 with path __app__.app.retriever._index.storage_context.docstore.docs.c766be93-5aa8-4026-a5f5-9ca24d0b3868\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04796c0 with path __app__.app.retriever._index.storage_context.docstore.docs.c766be93-5aa8-4026-a5f5-9ca24d0b3868.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479720 with path __app__.app.retriever._index.storage_context.docstore.docs.c766be93-5aa8-4026-a5f5-9ca24d0b3868.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479360 with path __app__.app.retriever._index.storage_context.docstore.docs.c766be93-5aa8-4026-a5f5-9ca24d0b3868.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478a90 with path __app__.app.retriever._index.storage_context.docstore.docs.997aaf89-8173-4031-af9f-aef79eb3be44\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04782e0 with path __app__.app.retriever._index.storage_context.docstore.docs.997aaf89-8173-4031-af9f-aef79eb3be44.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479c30 with path __app__.app.retriever._index.storage_context.docstore.docs.997aaf89-8173-4031-af9f-aef79eb3be44.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04796f0 with path __app__.app.retriever._index.storage_context.docstore.docs.997aaf89-8173-4031-af9f-aef79eb3be44.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479300 with path __app__.app.retriever._index.storage_context.docstore.docs.455b88ed-5688-4359-910e-c0309beed51c\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04795d0 with path __app__.app.retriever._index.storage_context.docstore.docs.455b88ed-5688-4359-910e-c0309beed51c.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478b80 with path __app__.app.retriever._index.storage_context.docstore.docs.455b88ed-5688-4359-910e-c0309beed51c.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04799c0 with path __app__.app.retriever._index.storage_context.docstore.docs.455b88ed-5688-4359-910e-c0309beed51c.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478670 with path __app__.app.retriever._index.storage_context.docstore.docs.47daf0fa-7002-4c8f-ab86-c83012c0de97\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479630 with path __app__.app.retriever._index.storage_context.docstore.docs.47daf0fa-7002-4c8f-ab86-c83012c0de97.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479390 with path __app__.app.retriever._index.storage_context.docstore.docs.47daf0fa-7002-4c8f-ab86-c83012c0de97.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04797b0 with path __app__.app.retriever._index.storage_context.docstore.docs.47daf0fa-7002-4c8f-ab86-c83012c0de97.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479c30 with path __app__.app.retriever._index.storage_context.docstore.docs.817a5d81-a3d6-45be-a8ad-4c11b20bd5c7\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478fa0 with path __app__.app.retriever._index.storage_context.docstore.docs.817a5d81-a3d6-45be-a8ad-4c11b20bd5c7.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04782b0 with path __app__.app.retriever._index.storage_context.docstore.docs.817a5d81-a3d6-45be-a8ad-4c11b20bd5c7.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479a50 with path __app__.app.retriever._index.storage_context.docstore.docs.817a5d81-a3d6-45be-a8ad-4c11b20bd5c7.relationships.3\n",
"\tTextNode (Other) at 0x7abdc04795d0 with path __app__.app.retriever._index.storage_context.docstore.docs.995adfa5-7f83-438c-b3d5-7f031d418d0c\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479180 with path __app__.app.retriever._index.storage_context.docstore.docs.995adfa5-7f83-438c-b3d5-7f031d418d0c.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479bd0 with path __app__.app.retriever._index.storage_context.docstore.docs.995adfa5-7f83-438c-b3d5-7f031d418d0c.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04784f0 with path __app__.app.retriever._index.storage_context.docstore.docs.995adfa5-7f83-438c-b3d5-7f031d418d0c.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478130 with path __app__.app.retriever._index.storage_context.docstore.docs.c646b04b-2417-46fc-862a-4eb4b2077769\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478580 with path __app__.app.retriever._index.storage_context.docstore.docs.c646b04b-2417-46fc-862a-4eb4b2077769.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc047a050 with path __app__.app.retriever._index.storage_context.docstore.docs.c646b04b-2417-46fc-862a-4eb4b2077769.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc047a500 with path __app__.app.retriever._index.storage_context.docstore.docs.c646b04b-2417-46fc-862a-4eb4b2077769.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479a80 with path __app__.app.retriever._index.storage_context.docstore.docs.5b09230a-734e-4c90-9035-867439ffb7db\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04788b0 with path __app__.app.retriever._index.storage_context.docstore.docs.5b09230a-734e-4c90-9035-867439ffb7db.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04795d0 with path __app__.app.retriever._index.storage_context.docstore.docs.5b09230a-734e-4c90-9035-867439ffb7db.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04785b0 with path __app__.app.retriever._index.storage_context.docstore.docs.5b09230a-734e-4c90-9035-867439ffb7db.relationships.3\n",
"\tTextNode (Other) at 0x7abdc047a050 with path __app__.app.retriever._index.storage_context.docstore.docs.bf076cbb-eaf6-49f5-a8ac-8b956bc78b95\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478fa0 with path __app__.app.retriever._index.storage_context.docstore.docs.bf076cbb-eaf6-49f5-a8ac-8b956bc78b95.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479300 with path __app__.app.retriever._index.storage_context.docstore.docs.bf076cbb-eaf6-49f5-a8ac-8b956bc78b95.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478880 with path __app__.app.retriever._index.storage_context.docstore.docs.bf076cbb-eaf6-49f5-a8ac-8b956bc78b95.relationships.3\n",
"\tTextNode (Other) at 0x7abdc04785b0 with path __app__.app.retriever._index.storage_context.docstore.docs.dbe26130-162d-4c46-9b30-71cc085342c5\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04784f0 with path __app__.app.retriever._index.storage_context.docstore.docs.dbe26130-162d-4c46-9b30-71cc085342c5.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479180 with path __app__.app.retriever._index.storage_context.docstore.docs.dbe26130-162d-4c46-9b30-71cc085342c5.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479750 with path __app__.app.retriever._index.storage_context.docstore.docs.dbe26130-162d-4c46-9b30-71cc085342c5.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0479a50 with path __app__.app.retriever._index.storage_context.docstore.docs.8ed4d72d-96a5-447d-a93b-b8438d92c702\n",
"\tRelatedNodeInfo (Other) at 0x7abdc047a050 with path __app__.app.retriever._index.storage_context.docstore.docs.8ed4d72d-96a5-447d-a93b-b8438d92c702.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479150 with path __app__.app.retriever._index.storage_context.docstore.docs.8ed4d72d-96a5-447d-a93b-b8438d92c702.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc04795d0 with path __app__.app.retriever._index.storage_context.docstore.docs.8ed4d72d-96a5-447d-a93b-b8438d92c702.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478bb0 with path __app__.app.retriever._index.storage_context.docstore.docs.c880d8d2-5fb5-4f02-a2b6-c07ddb87783f\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478670 with path __app__.app.retriever._index.storage_context.docstore.docs.c880d8d2-5fb5-4f02-a2b6-c07ddb87783f.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479a50 with path __app__.app.retriever._index.storage_context.docstore.docs.c880d8d2-5fb5-4f02-a2b6-c07ddb87783f.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc047a530 with path __app__.app.retriever._index.storage_context.docstore.docs.c880d8d2-5fb5-4f02-a2b6-c07ddb87783f.relationships.3\n",
"\tTextNode (Other) at 0x7abdc04795d0 with path __app__.app.retriever._index.storage_context.docstore.docs.c706b533-109e-4048-9147-5abfad8f6c39\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479630 with path __app__.app.retriever._index.storage_context.docstore.docs.c706b533-109e-4048-9147-5abfad8f6c39.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc047a050 with path __app__.app.retriever._index.storage_context.docstore.docs.c706b533-109e-4048-9147-5abfad8f6c39.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479750 with path __app__.app.retriever._index.storage_context.docstore.docs.c706b533-109e-4048-9147-5abfad8f6c39.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478670 with path __app__.app.retriever._index.storage_context.docstore.docs.aa1d02e8-6a79-4f3f-b640-79c41fa03042\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479030 with path __app__.app.retriever._index.storage_context.docstore.docs.aa1d02e8-6a79-4f3f-b640-79c41fa03042.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc047a050 with path __app__.app.retriever._index.storage_context.docstore.docs.aa1d02e8-6a79-4f3f-b640-79c41fa03042.relationships.2\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479030 with path __app__.app.retriever._index.storage_context.docstore.docs.aa1d02e8-6a79-4f3f-b640-79c41fa03042.relationships.3\n",
"\tTextNode (Other) at 0x7abdc0478dc0 with path __app__.app.retriever._index.storage_context.docstore.docs.7d8b193e-2cca-4de2-8596-d8ff30676a14\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0478880 with path __app__.app.retriever._index.storage_context.docstore.docs.7d8b193e-2cca-4de2-8596-d8ff30676a14.relationships.1\n",
"\tRelatedNodeInfo (Other) at 0x7abdc0479180 with path __app__.app.retriever._index.storage_context.docstore.docs.7d8b193e-2cca-4de2-8596-d8ff30676a14.relationships.2\n",
"\tmethod (Custom) at 0x7abdc26b1d80 with path __app__.app.retriever._index.storage_context.docstore.document_exists\n",
"\tmethod (Custom) at 0x7abdbf642c80 with path __app__.app.retriever._index.storage_context.docstore.from_dict\n",
"\tmethod (Custom) at 0x7abdbf642940 with path __app__.app.retriever._index.storage_context.docstore.from_persist_dir\n",
"\tmethod (Custom) at 0x7abdbf642c80 with path __app__.app.retriever._index.storage_context.docstore.from_persist_path\n",
"\tmethod (Custom) at 0x7abdbf643540 with path __app__.app.retriever._index.storage_context.docstore.get_all_document_hashes\n",
"\tmethod (Custom) at 0x7abdbf642c80 with path __app__.app.retriever._index.storage_context.docstore.get_all_ref_doc_info\n",
"\tmethod (Custom) at 0x7abdbf643840 with path __app__.app.retriever._index.storage_context.docstore.get_document\n",
"\tmethod (Custom) at 0x7abdbf643ec0 with path __app__.app.retriever._index.storage_context.docstore.get_document_hash\n",
"\tmethod (Custom) at 0x7abdbf640cc0 with path __app__.app.retriever._index.storage_context.docstore.get_node\n",
"\tmethod (Custom) at 0x7abdbf641380 with path __app__.app.retriever._index.storage_context.docstore.get_node_dict\n",
"\tmethod (Custom) at 0x7abdbf6435c0 with path __app__.app.retriever._index.storage_context.docstore.get_nodes\n",
"\tmethod (Custom) at 0x7abdbf640080 with path __app__.app.retriever._index.storage_context.docstore.get_ref_doc_info\n",
"\tmethod (Custom) at 0x7abdbf641440 with path __app__.app.retriever._index.storage_context.docstore.persist\n",
"\tmethod (Custom) at 0x7abdbf642900 with path __app__.app.retriever._index.storage_context.docstore.ref_doc_exists\n",
"\tmethod (Custom) at 0x7abdbf640f40 with path __app__.app.retriever._index.storage_context.docstore.set_document_hash\n",
"\tmethod (Custom) at 0x7abdbf640380 with path __app__.app.retriever._index.storage_context.docstore.to_dict\n",
"\tSimpleIndexStore (Other) at 0x7abdc28e35e0 with path __app__.app.retriever._index.storage_context.index_store\n",
"\t_abc_data (Custom) at 0x7abdc29bf040 with path __app__.app.retriever._index.storage_context.index_store._abc_impl\n",
"\tSimpleKVStore (Other) at 0x7abdc28e3640 with path __app__.app.retriever._index.storage_context.index_store._kvstore\n",
"\t_abc_data (Custom) at 0x7abdc32c0c00 with path __app__.app.retriever._index.storage_context.index_store._kvstore._abc_impl\n",
"\tmethod (Custom) at 0x7abdbf641540 with path __app__.app.retriever._index.storage_context.index_store._kvstore.delete\n",
"\tmethod (Custom) at 0x7abdbf642400 with path __app__.app.retriever._index.storage_context.index_store._kvstore.from_dict\n",
"\tmethod (Custom) at 0x7abdbf642200 with path __app__.app.retriever._index.storage_context.index_store._kvstore.from_persist_path\n",
"\tmethod (Custom) at 0x7abdbf642d80 with path __app__.app.retriever._index.storage_context.index_store._kvstore.get\n",
"\tmethod (Custom) at 0x7abdbf640f40 with path __app__.app.retriever._index.storage_context.index_store._kvstore.get_all\n",
"\tmethod (Custom) at 0x7abdbf641400 with path __app__.app.retriever._index.storage_context.index_store._kvstore.persist\n",
"\tmethod (Custom) at 0x7abdbf642180 with path __app__.app.retriever._index.storage_context.index_store._kvstore.put\n",
"\tmethod (Custom) at 0x7abdbf6420c0 with path __app__.app.retriever._index.storage_context.index_store._kvstore.to_dict\n",
"\tmethod (Custom) at 0x7abdbf642900 with path __app__.app.retriever._index.storage_context.index_store.add_index_struct\n",
"\tmethod (Custom) at 0x7abdbf643880 with path __app__.app.retriever._index.storage_context.index_store.delete_index_struct\n",
"\tmethod (Custom) at 0x7abdbf642d40 with path __app__.app.retriever._index.storage_context.index_store.from_dict\n",
"\tmethod (Custom) at 0x7abdbf6421c0 with path __app__.app.retriever._index.storage_context.index_store.from_persist_dir\n",
"\tmethod (Custom) at 0x7abdbf642300 with path __app__.app.retriever._index.storage_context.index_store.from_persist_path\n",
"\tmethod (Custom) at 0x7abdbf641800 with path __app__.app.retriever._index.storage_context.index_store.get_index_struct\n",
"\tmethod (Custom) at 0x7abdbf643fc0 with path __app__.app.retriever._index.storage_context.index_store.index_structs\n",
"\tmethod (Custom) at 0x7abdf42ff600 with path __app__.app.retriever._index.storage_context.index_store.persist\n",
"\tmethod (Custom) at 0x7abdbf642d80 with path __app__.app.retriever._index.storage_context.index_store.to_dict\n",
"\tSimpleVectorStore (Other) at 0x7abdc28e32b0 with path __app__.app.retriever._index.storage_context.vector_stores.default\n",
"\t_abc_data (Custom) at 0x7abdc2be1400 with path __app__.app.retriever._index.storage_context.vector_stores.default._abc_impl\n",
"\tSimpleVectorStoreData (Other) at 0x7abdc28e3340 with path __app__.app.retriever._index.storage_context.vector_stores.default._data\n",
"\tLocalFileSystem (Custom) at 0x7abdc28e2230 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs\n",
"\tfunction (Custom) at 0x7abdc2cd7400 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs._get_kwargs_from_urls\n",
"\tmethod (Custom) at 0x7abdc0558380 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs._get_pyarrow_filesystem\n",
"\tmethod (Custom) at 0x7abdc0559d40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs._isfilestore\n",
"\tmethod (Custom) at 0x7abdbf627e40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs._ls_from_cache\n",
"\tmethod (Custom) at 0x7abdc0559f40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs._parent\n",
"\tmethod (Custom) at 0x7abdc0559400 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs._strip_protocol\n",
"\tmethod (Custom) at 0x7abdbf627600 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.cat\n",
"\tmethod (Custom) at 0x7abdc055bf00 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.cat_file\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.cat_ranges\n",
"\tmethod (Custom) at 0x7abdbf627600 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.checksum\n",
"\tmethod (Custom) at 0x7abdc055bb80 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.chmod\n",
"\tmethod (Custom) at 0x7abdc0558040 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.clear_instance_cache\n",
"\tmethod (Custom) at 0x7abdbf627600 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.copy\n",
"\tmethod (Custom) at 0x7abdc0558380 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.cp\n",
"\tmethod (Custom) at 0x7abdbf627600 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.cp_file\n",
"\tmethod (Custom) at 0x7abdbf6272c0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.created\n",
"\tmethod (Custom) at 0x7abdc0559f40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.current\n",
"\tmethod (Custom) at 0x7abdc0558540 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.delete\n",
"\tDirCache (Custom) at 0x7abdc28e23e0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.dircache\n",
"\tobject (Custom) at 0x7abe1a9b4330 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.dircache._MutableMapping__marker\n",
"\t_abc_data (Custom) at 0x7abdc2ce3f00 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.dircache._abc_impl\n",
"\tmethod (Custom) at 0x7abdc055b8c0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.dircache.clear\n",
"\tmethod (Custom) at 0x7abdc0559500 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.dircache.get\n",
"\tmethod (Custom) at 0x7abdc0559f40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.dircache.items\n",
"\tmethod (Custom) at 0x7abdc055bb80 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.dircache.keys\n",
"\tmethod (Custom) at 0x7abdc055adc0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.dircache.pop\n",
"\tmethod (Custom) at 0x7abdc055bb80 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.dircache.popitem\n",
"\tmethod (Custom) at 0x7abdc055b340 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.dircache.setdefault\n",
"\tmethod (Custom) at 0x7abdc055bf00 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.dircache.update\n",
"\tmethod (Custom) at 0x7abdc055ac40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.dircache.values\n",
"\tmethod (Custom) at 0x7abdc0558040 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.disk_usage\n",
"\tmethod (Custom) at 0x7abdc055b780 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.download\n",
"\tmethod (Custom) at 0x7abdc0559500 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.du\n",
"\tmethod (Custom) at 0x7abdc055adc0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.end_transaction\n",
"\tmethod (Custom) at 0x7abdbf6ebf40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.exists\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.expand_path\n",
"\tmethod (Custom) at 0x7abdc0558040 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.find\n",
"\tfunction (Custom) at 0x7abdc2b11090 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.from_json\n",
"\tmethod (Custom) at 0x7abdc055a740 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.get\n",
"\tmethod (Custom) at 0x7abdc0559580 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.get_file\n",
"\tmethod (Custom) at 0x7abdc055a440 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.get_mapper\n",
"\tmethod (Custom) at 0x7abdbf6e8a80 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.glob\n",
"\tmethod (Custom) at 0x7abdc0559a40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.head\n",
"\tmethod (Custom) at 0x7abdc05591c0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.info\n",
"\tmethod (Custom) at 0x7abdc0559500 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.invalidate_cache\n",
"\tmethod (Custom) at 0x7abdc055b340 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.isdir\n",
"\tmethod (Custom) at 0x7abdbf6e8a80 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.isfile\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.islink\n",
"\tmethod (Custom) at 0x7abdc0559f40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.lexists\n",
"\tmethod (Custom) at 0x7abdc0558540 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.link\n",
"\tmethod (Custom) at 0x7abdc055a740 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.listdir\n",
"\tmethod (Custom) at 0x7abdc055b5c0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.ls\n",
"\tmethod (Custom) at 0x7abdc055bc40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.makedir\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.makedirs\n",
"\tmethod (Custom) at 0x7abdc055ba00 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.mkdir\n",
"\tmethod (Custom) at 0x7abdc05591c0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.mkdirs\n",
"\tmethod (Custom) at 0x7abdc0559500 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.modified\n",
"\tmethod (Custom) at 0x7abdbf6e9000 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.move\n",
"\tmethod (Custom) at 0x7abdc0558400 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.mv\n",
"\tmethod (Custom) at 0x7abdbf6ebf40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.mv_file\n",
"\tmethod (Custom) at 0x7abdc0559f40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.open\n",
"\tmethod (Custom) at 0x7abdc0558540 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.pipe\n",
"\tmethod (Custom) at 0x7abdc055adc0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.pipe_file\n",
"\tmethod (Custom) at 0x7abdc055b5c0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.put\n",
"\tmethod (Custom) at 0x7abdc05599c0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.put_file\n",
"\tmethod (Custom) at 0x7abdbf6272c0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.read_block\n",
"\tmethod (Custom) at 0x7abdbf6e9000 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.read_bytes\n",
"\tmethod (Custom) at 0x7abdc05591c0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.read_text\n",
"\tmethod (Custom) at 0x7abdc055bb80 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.rename\n",
"\tmethod (Custom) at 0x7abdc055bc40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.rm\n",
"\tmethod (Custom) at 0x7abdc055b780 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.rm_file\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.rmdir\n",
"\tmethod (Custom) at 0x7abdc0559f40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.sign\n",
"\tmethod (Custom) at 0x7abdc0558540 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.size\n",
"\tmethod (Custom) at 0x7abdc055adc0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.sizes\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.start_transaction\n",
"\tmethod (Custom) at 0x7abdc055bf00 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.stat\n",
"\tmethod (Custom) at 0x7abdc055a0c0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.symlink\n",
"\tmethod (Custom) at 0x7abdc055b340 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.tail\n",
"\tmethod (Custom) at 0x7abdc05591c0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.to_json\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.touch\n",
"\tTransaction (Custom) at 0x7abdf42d28f0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.transaction\n",
"\tmethod (Custom) at 0x7abdc05591c0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.transaction.complete\n",
"\tmethod (Custom) at 0x7abdc055ac40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.transaction.start\n",
"\tmethod (Custom) at 0x7abdc055adc0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.ukey\n",
"\tmethod (Custom) at 0x7abdc05599c0 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.unstrip_protocol\n",
"\tmethod (Custom) at 0x7abdbf6e8a80 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.upload\n",
"\tmethod (Custom) at 0x7abdbf6ebf40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.walk\n",
"\tmethod (Custom) at 0x7abdc0559d40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.write_bytes\n",
"\tmethod (Custom) at 0x7abdbf6ebf40 with path __app__.app.retriever._index.storage_context.vector_stores.default._fs.write_text\n",
"\tmethod (Custom) at 0x7abdc055bc40 with path __app__.app.retriever._index.storage_context.vector_stores.default.add\n",
"\tmethod (Custom) at 0x7abdc05599c0 with path __app__.app.retriever._index.storage_context.vector_stores.default.adelete\n",
"\tmethod (Custom) at 0x7abdc055b340 with path __app__.app.retriever._index.storage_context.vector_stores.default.aquery\n",
"\tmethod (Custom) at 0x7abdbf6e8c40 with path __app__.app.retriever._index.storage_context.vector_stores.default.async_add\n",
"\tmethod (Custom) at 0x7abdc0558480 with path __app__.app.retriever._index.storage_context.vector_stores.default.delete\n",
"\tmethod (Custom) at 0x7abdbf627600 with path __app__.app.retriever._index.storage_context.vector_stores.default.from_dict\n",
"\tmethod (Custom) at 0x7abdbf6272c0 with path __app__.app.retriever._index.storage_context.vector_stores.default.from_namespaced_persist_dir\n",
"\tmethod (Custom) at 0x7abdbf627e40 with path __app__.app.retriever._index.storage_context.vector_stores.default.from_persist_dir\n",
"\tmethod (Custom) at 0x7abdbf6272c0 with path __app__.app.retriever._index.storage_context.vector_stores.default.from_persist_path\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._index.storage_context.vector_stores.default.get\n",
"\tmethod (Custom) at 0x7abdc055b300 with path __app__.app.retriever._index.storage_context.vector_stores.default.persist\n",
"\tmethod (Custom) at 0x7abdbf627e40 with path __app__.app.retriever._index.storage_context.vector_stores.default.query\n",
"\tmethod (Custom) at 0x7abdc055a740 with path __app__.app.retriever._index.storage_context.vector_stores.default.to_dict\n",
"\tSimpleVectorStore (Other) at 0x7abdc28e34c0 with path __app__.app.retriever._index.storage_context.vector_stores.image\n",
"\t_abc_data (Custom) at 0x7abdc2be1400 with path __app__.app.retriever._index.storage_context.vector_stores.image._abc_impl\n",
"\tSimpleVectorStoreData (Other) at 0x7abdc28e2f50 with path __app__.app.retriever._index.storage_context.vector_stores.image._data\n",
"\tLocalFileSystem (Custom) at 0x7abdc28e2230 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs\n",
"\tfunction (Custom) at 0x7abdc2cd7400 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs._get_kwargs_from_urls\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs._get_pyarrow_filesystem\n",
"\tmethod (Custom) at 0x7abdbf6275c0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs._isfilestore\n",
"\tmethod (Custom) at 0x7abdbf627e40 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs._ls_from_cache\n",
"\tmethod (Custom) at 0x7abdc0559580 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs._parent\n",
"\tmethod (Custom) at 0x7abdc055a940 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs._strip_protocol\n",
"\tmethod (Custom) at 0x7abdbf627e40 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.cat\n",
"\tmethod (Custom) at 0x7abdbf6e8c40 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.cat_file\n",
"\tmethod (Custom) at 0x7abdbf5e0c40 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.cat_ranges\n",
"\tmethod (Custom) at 0x7abdbf6ebf40 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.checksum\n",
"\tmethod (Custom) at 0x7abdbf5e16c0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.chmod\n",
"\tmethod (Custom) at 0x7abdbf5f0340 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.clear_instance_cache\n",
"\tmethod (Custom) at 0x7abdbf6ebf40 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.copy\n",
"\tmethod (Custom) at 0x7abdbf5f0d80 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.cp\n",
"\tmethod (Custom) at 0x7abdc03dbdc0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.cp_file\n",
"\tmethod (Custom) at 0x7abdbf6e9000 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.created\n",
"\tmethod (Custom) at 0x7abdbf5f0d80 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.current\n",
"\tmethod (Custom) at 0x7abdbf6e8c40 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.delete\n",
"\tDirCache (Custom) at 0x7abdc28e23e0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.dircache\n",
"\tobject (Custom) at 0x7abe1a9b4330 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.dircache._MutableMapping__marker\n",
"\t_abc_data (Custom) at 0x7abdc2ce3f00 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.dircache._abc_impl\n",
"\tmethod (Custom) at 0x7abdc03db140 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.dircache.clear\n",
"\tmethod (Custom) at 0x7abdc03da240 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.dircache.get\n",
"\tmethod (Custom) at 0x7abdc03dadc0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.dircache.items\n",
"\tmethod (Custom) at 0x7abdc03d93c0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.dircache.keys\n",
"\tmethod (Custom) at 0x7abdc03d8b40 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.dircache.pop\n",
"\tmethod (Custom) at 0x7abdc03db8c0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.dircache.popitem\n",
"\tmethod (Custom) at 0x7abdc03dadc0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.dircache.setdefault\n",
"\tmethod (Custom) at 0x7abdc03dbdc0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.dircache.update\n",
"\tmethod (Custom) at 0x7abdc03d9b00 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.dircache.values\n",
"\tmethod (Custom) at 0x7abdc03d8b80 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.disk_usage\n",
"\tmethod (Custom) at 0x7abdc03d8280 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.download\n",
"\tmethod (Custom) at 0x7abdc03d8b80 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.du\n",
"\tmethod (Custom) at 0x7abdc03db880 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.end_transaction\n",
"\tmethod (Custom) at 0x7abdc03db080 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.exists\n",
"\tmethod (Custom) at 0x7abdc03dadc0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.expand_path\n",
"\tmethod (Custom) at 0x7abdc03d93c0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.find\n",
"\tfunction (Custom) at 0x7abdc2b11090 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.from_json\n",
"\tmethod (Custom) at 0x7abdc03d9ec0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.get\n",
"\tmethod (Custom) at 0x7abdc03db880 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.get_file\n",
"\tmethod (Custom) at 0x7abdc03d8840 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.get_mapper\n",
"\tmethod (Custom) at 0x7abdc03dbf80 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.glob\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.head\n",
"\tmethod (Custom) at 0x7abdc03dbdc0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.info\n",
"\tmethod (Custom) at 0x7abdc03d8940 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.invalidate_cache\n",
"\tmethod (Custom) at 0x7abdc03da240 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.isdir\n",
"\tmethod (Custom) at 0x7abdc03d8940 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.isfile\n",
"\tmethod (Custom) at 0x7abdc03d8100 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.islink\n",
"\tmethod (Custom) at 0x7abdc03db080 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.lexists\n",
"\tmethod (Custom) at 0x7abdc03db880 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.link\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.listdir\n",
"\tmethod (Custom) at 0x7abdc03d8e00 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.ls\n",
"\tmethod (Custom) at 0x7abdc03db340 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.makedir\n",
"\tmethod (Custom) at 0x7abdc03da100 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.makedirs\n",
"\tmethod (Custom) at 0x7abdc03d9ec0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.mkdir\n",
"\tmethod (Custom) at 0x7abdc03d8100 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.mkdirs\n",
"\tmethod (Custom) at 0x7abdc03db080 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.modified\n",
"\tmethod (Custom) at 0x7abdc03dbdc0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.move\n",
"\tmethod (Custom) at 0x7abdc03db880 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.mv\n",
"\tmethod (Custom) at 0x7abdc03dbdc0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.mv_file\n",
"\tmethod (Custom) at 0x7abdc03d8840 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.open\n",
"\tmethod (Custom) at 0x7abdc03d8940 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.pipe\n",
"\tmethod (Custom) at 0x7abdc03d9ec0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.pipe_file\n",
"\tmethod (Custom) at 0x7abdc03d8940 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.put\n",
"\tmethod (Custom) at 0x7abdc03db080 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.put_file\n",
"\tmethod (Custom) at 0x7abdc03d9b00 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.read_block\n",
"\tmethod (Custom) at 0x7abdc03dbf80 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.read_bytes\n",
"\tmethod (Custom) at 0x7abdc03dbdc0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.read_text\n",
"\tmethod (Custom) at 0x7abdc03d8b40 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.rename\n",
"\tmethod (Custom) at 0x7abdc03d8840 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.rm\n",
"\tmethod (Custom) at 0x7abdc03d93c0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.rm_file\n",
"\tmethod (Custom) at 0x7abdc03db140 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.rmdir\n",
"\tmethod (Custom) at 0x7abdc03d8b80 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.sign\n",
"\tmethod (Custom) at 0x7abdc03dadc0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.size\n",
"\tmethod (Custom) at 0x7abdc03dbdc0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.sizes\n",
"\tmethod (Custom) at 0x7abdc03d9ec0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.start_transaction\n",
"\tmethod (Custom) at 0x7abdc03dbdc0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.stat\n",
"\tmethod (Custom) at 0x7abdc03da100 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.symlink\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.tail\n",
"\tmethod (Custom) at 0x7abdc03d8f00 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.to_json\n",
"\tmethod (Custom) at 0x7abdc03dbf80 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.touch\n",
"\tTransaction (Custom) at 0x7abdf42d28f0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.transaction\n",
"\tmethod (Custom) at 0x7abdc03dbdc0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.transaction.complete\n",
"\tmethod (Custom) at 0x7abdc03da240 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.transaction.start\n",
"\tmethod (Custom) at 0x7abdc03d9b00 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.ukey\n",
"\tmethod (Custom) at 0x7abdc03d8e00 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.unstrip_protocol\n",
"\tmethod (Custom) at 0x7abdc03d8f00 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.upload\n",
"\tmethod (Custom) at 0x7abdc03d8100 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.walk\n",
"\tmethod (Custom) at 0x7abdc03db140 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.write_bytes\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app.retriever._index.storage_context.vector_stores.image._fs.write_text\n",
"\tmethod (Custom) at 0x7abdc03d9b00 with path __app__.app.retriever._index.storage_context.vector_stores.image.add\n",
"\tmethod (Custom) at 0x7abdc03db8c0 with path __app__.app.retriever._index.storage_context.vector_stores.image.adelete\n",
"\tmethod (Custom) at 0x7abdc03db340 with path __app__.app.retriever._index.storage_context.vector_stores.image.aquery\n",
"\tmethod (Custom) at 0x7abdbf5f0340 with path __app__.app.retriever._index.storage_context.vector_stores.image.async_add\n",
"\tmethod (Custom) at 0x7abdbf5f3f00 with path __app__.app.retriever._index.storage_context.vector_stores.image.delete\n",
"\tmethod (Custom) at 0x7abdc254fc00 with path __app__.app.retriever._index.storage_context.vector_stores.image.from_dict\n",
"\tmethod (Custom) at 0x7abdc03d8040 with path __app__.app.retriever._index.storage_context.vector_stores.image.from_namespaced_persist_dir\n",
"\tmethod (Custom) at 0x7abdc03db8c0 with path __app__.app.retriever._index.storage_context.vector_stores.image.from_persist_dir\n",
"\tmethod (Custom) at 0x7abdc03dbdc0 with path __app__.app.retriever._index.storage_context.vector_stores.image.from_persist_path\n",
"\tmethod (Custom) at 0x7abdc03d8e00 with path __app__.app.retriever._index.storage_context.vector_stores.image.get\n",
"\tmethod (Custom) at 0x7abdc03dbdc0 with path __app__.app.retriever._index.storage_context.vector_stores.image.persist\n",
"\tmethod (Custom) at 0x7abdc03d8280 with path __app__.app.retriever._index.storage_context.vector_stores.image.query\n",
"\tmethod (Custom) at 0x7abdc03db140 with path __app__.app.retriever._index.storage_context.vector_stores.image.to_dict\n",
"\tSimpleGraphStore (Other) at 0x7abdc28e2f80 with path __app__.app.retriever._index.storage_context.graph_store\n",
"\t_abc_data (Custom) at 0x7abdc2998380 with path __app__.app.retriever._index.storage_context.graph_store._abc_impl\n",
"\tSimpleGraphStoreData (Other) at 0x7abdc28e3550 with path __app__.app.retriever._index.storage_context.graph_store._data\n",
"\tLocalFileSystem (Custom) at 0x7abdc28e2230 with path __app__.app.retriever._index.storage_context.graph_store._fs\n",
"\tfunction (Custom) at 0x7abdc2cd7400 with path __app__.app.retriever._index.storage_context.graph_store._fs._get_kwargs_from_urls\n",
"\tmethod (Custom) at 0x7abdc03daf40 with path __app__.app.retriever._index.storage_context.graph_store._fs._get_pyarrow_filesystem\n",
"\tmethod (Custom) at 0x7abdbf5f1980 with path __app__.app.retriever._index.storage_context.graph_store._fs._isfilestore\n",
"\tmethod (Custom) at 0x7abdbf625b40 with path __app__.app.retriever._index.storage_context.graph_store._fs._ls_from_cache\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._index.storage_context.graph_store._fs._parent\n",
"\tmethod (Custom) at 0x7abdc03dbf80 with path __app__.app.retriever._index.storage_context.graph_store._fs._strip_protocol\n",
"\tmethod (Custom) at 0x7abdc049da40 with path __app__.app.retriever._index.storage_context.graph_store._fs.cat\n",
"\tmethod (Custom) at 0x7abdbf5f0340 with path __app__.app.retriever._index.storage_context.graph_store._fs.cat_file\n",
"\tmethod (Custom) at 0x7abdc049fe80 with path __app__.app.retriever._index.storage_context.graph_store._fs.cat_ranges\n",
"\tmethod (Custom) at 0x7abdbf5f3f00 with path __app__.app.retriever._index.storage_context.graph_store._fs.checksum\n",
"\tmethod (Custom) at 0x7abdc049da40 with path __app__.app.retriever._index.storage_context.graph_store._fs.chmod\n",
"\tmethod (Custom) at 0x7abdbf5f1480 with path __app__.app.retriever._index.storage_context.graph_store._fs.clear_instance_cache\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._index.storage_context.graph_store._fs.copy\n",
"\tmethod (Custom) at 0x7abdbf5f1980 with path __app__.app.retriever._index.storage_context.graph_store._fs.cp\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._index.storage_context.graph_store._fs.cp_file\n",
"\tmethod (Custom) at 0x7abdbf625b40 with path __app__.app.retriever._index.storage_context.graph_store._fs.created\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._index.storage_context.graph_store._fs.current\n",
"\tmethod (Custom) at 0x7abdbf6e8c40 with path __app__.app.retriever._index.storage_context.graph_store._fs.delete\n",
"\tDirCache (Custom) at 0x7abdc28e23e0 with path __app__.app.retriever._index.storage_context.graph_store._fs.dircache\n",
"\tobject (Custom) at 0x7abe1a9b4330 with path __app__.app.retriever._index.storage_context.graph_store._fs.dircache._MutableMapping__marker\n",
"\t_abc_data (Custom) at 0x7abdc2ce3f00 with path __app__.app.retriever._index.storage_context.graph_store._fs.dircache._abc_impl\n",
"\tmethod (Custom) at 0x7abdc03db8c0 with path __app__.app.retriever._index.storage_context.graph_store._fs.dircache.clear\n",
"\tmethod (Custom) at 0x7abdc03d9440 with path __app__.app.retriever._index.storage_context.graph_store._fs.dircache.get\n",
"\tmethod (Custom) at 0x7abdc03d8f00 with path __app__.app.retriever._index.storage_context.graph_store._fs.dircache.items\n",
"\tmethod (Custom) at 0x7abdc03d9440 with path __app__.app.retriever._index.storage_context.graph_store._fs.dircache.keys\n",
"\tmethod (Custom) at 0x7abdc03d9b00 with path __app__.app.retriever._index.storage_context.graph_store._fs.dircache.pop\n",
"\tmethod (Custom) at 0x7abdc03d9440 with path __app__.app.retriever._index.storage_context.graph_store._fs.dircache.popitem\n",
"\tmethod (Custom) at 0x7abdc03dbdc0 with path __app__.app.retriever._index.storage_context.graph_store._fs.dircache.setdefault\n",
"\tmethod (Custom) at 0x7abdc03d9440 with path __app__.app.retriever._index.storage_context.graph_store._fs.dircache.update\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._index.storage_context.graph_store._fs.dircache.values\n",
"\tmethod (Custom) at 0x7abdc03db440 with path __app__.app.retriever._index.storage_context.graph_store._fs.disk_usage\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app.retriever._index.storage_context.graph_store._fs.download\n",
"\tmethod (Custom) at 0x7abdc03db140 with path __app__.app.retriever._index.storage_context.graph_store._fs.du\n",
"\tmethod (Custom) at 0x7abdc03d8b40 with path __app__.app.retriever._index.storage_context.graph_store._fs.end_transaction\n",
"\tmethod (Custom) at 0x7abdc03db140 with path __app__.app.retriever._index.storage_context.graph_store._fs.exists\n",
"\tmethod (Custom) at 0x7abdc03d80c0 with path __app__.app.retriever._index.storage_context.graph_store._fs.expand_path\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app.retriever._index.storage_context.graph_store._fs.find\n",
"\tfunction (Custom) at 0x7abdc2b11090 with path __app__.app.retriever._index.storage_context.graph_store._fs.from_json\n",
"\tmethod (Custom) at 0x7abdc03da140 with path __app__.app.retriever._index.storage_context.graph_store._fs.get\n",
"\tmethod (Custom) at 0x7abdc03db440 with path __app__.app.retriever._index.storage_context.graph_store._fs.get_file\n",
"\tmethod (Custom) at 0x7abdc03daf40 with path __app__.app.retriever._index.storage_context.graph_store._fs.get_mapper\n",
"\tmethod (Custom) at 0x7abdc03d9440 with path __app__.app.retriever._index.storage_context.graph_store._fs.glob\n",
"\tmethod (Custom) at 0x7abdc03da240 with path __app__.app.retriever._index.storage_context.graph_store._fs.head\n",
"\tmethod (Custom) at 0x7abdc03d8f00 with path __app__.app.retriever._index.storage_context.graph_store._fs.info\n",
"\tmethod (Custom) at 0x7abdc03d9080 with path __app__.app.retriever._index.storage_context.graph_store._fs.invalidate_cache\n",
"\tmethod (Custom) at 0x7abdc03d9ec0 with path __app__.app.retriever._index.storage_context.graph_store._fs.isdir\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app.retriever._index.storage_context.graph_store._fs.isfile\n",
"\tmethod (Custom) at 0x7abdc03db440 with path __app__.app.retriever._index.storage_context.graph_store._fs.islink\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app.retriever._index.storage_context.graph_store._fs.lexists\n",
"\tmethod (Custom) at 0x7abdc03db8c0 with path __app__.app.retriever._index.storage_context.graph_store._fs.link\n",
"\tmethod (Custom) at 0x7abdc03d8f00 with path __app__.app.retriever._index.storage_context.graph_store._fs.listdir\n",
"\tmethod (Custom) at 0x7abdc03db880 with path __app__.app.retriever._index.storage_context.graph_store._fs.ls\n",
"\tmethod (Custom) at 0x7abdc03d9ec0 with path __app__.app.retriever._index.storage_context.graph_store._fs.makedir\n",
"\tmethod (Custom) at 0x7abdc03d9080 with path __app__.app.retriever._index.storage_context.graph_store._fs.makedirs\n",
"\tmethod (Custom) at 0x7abdc03d80c0 with path __app__.app.retriever._index.storage_context.graph_store._fs.mkdir\n",
"\tmethod (Custom) at 0x7abdbf625b40 with path __app__.app.retriever._index.storage_context.graph_store._fs.mkdirs\n",
"\tmethod (Custom) at 0x7abdc03d9440 with path __app__.app.retriever._index.storage_context.graph_store._fs.modified\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app.retriever._index.storage_context.graph_store._fs.move\n",
"\tmethod (Custom) at 0x7abdc03d80c0 with path __app__.app.retriever._index.storage_context.graph_store._fs.mv\n",
"\tmethod (Custom) at 0x7abdc03daf40 with path __app__.app.retriever._index.storage_context.graph_store._fs.mv_file\n",
"\tmethod (Custom) at 0x7abdbf625b40 with path __app__.app.retriever._index.storage_context.graph_store._fs.open\n",
"\tmethod (Custom) at 0x7abdc03da240 with path __app__.app.retriever._index.storage_context.graph_store._fs.pipe\n",
"\tmethod (Custom) at 0x7abdc03d8f00 with path __app__.app.retriever._index.storage_context.graph_store._fs.pipe_file\n",
"\tmethod (Custom) at 0x7abdc03db8c0 with path __app__.app.retriever._index.storage_context.graph_store._fs.put\n",
"\tmethod (Custom) at 0x7abdc03d9440 with path __app__.app.retriever._index.storage_context.graph_store._fs.put_file\n",
"\tmethod (Custom) at 0x7abdc03db880 with path __app__.app.retriever._index.storage_context.graph_store._fs.read_block\n",
"\tmethod (Custom) at 0x7abdbf6e8a80 with path __app__.app.retriever._index.storage_context.graph_store._fs.read_bytes\n",
"\tmethod (Custom) at 0x7abdc03db880 with path __app__.app.retriever._index.storage_context.graph_store._fs.read_text\n",
"\tmethod (Custom) at 0x7abdc03db8c0 with path __app__.app.retriever._index.storage_context.graph_store._fs.rename\n",
"\tmethod (Custom) at 0x7abdc03dbdc0 with path __app__.app.retriever._index.storage_context.graph_store._fs.rm\n",
"\tmethod (Custom) at 0x7abdc03d9b00 with path __app__.app.retriever._index.storage_context.graph_store._fs.rm_file\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app.retriever._index.storage_context.graph_store._fs.rmdir\n",
"\tmethod (Custom) at 0x7abdc03dadc0 with path __app__.app.retriever._index.storage_context.graph_store._fs.sign\n",
"\tmethod (Custom) at 0x7abdc03dbf80 with path __app__.app.retriever._index.storage_context.graph_store._fs.size\n",
"\tmethod (Custom) at 0x7abdbf5f1480 with path __app__.app.retriever._index.storage_context.graph_store._fs.sizes\n",
"\tmethod (Custom) at 0x7abdc03d8040 with path __app__.app.retriever._index.storage_context.graph_store._fs.start_transaction\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._index.storage_context.graph_store._fs.stat\n",
"\tmethod (Custom) at 0x7abdbf6eb100 with path __app__.app.retriever._index.storage_context.graph_store._fs.symlink\n",
"\tmethod (Custom) at 0x7abdc03db8c0 with path __app__.app.retriever._index.storage_context.graph_store._fs.tail\n",
"\tmethod (Custom) at 0x7abdc03dbdc0 with path __app__.app.retriever._index.storage_context.graph_store._fs.to_json\n",
"\tmethod (Custom) at 0x7abdbf6276c0 with path __app__.app.retriever._index.storage_context.graph_store._fs.touch\n",
"\tTransaction (Custom) at 0x7abdf42d28f0 with path __app__.app.retriever._index.storage_context.graph_store._fs.transaction\n",
"\tmethod (Custom) at 0x7abdc03dbf80 with path __app__.app.retriever._index.storage_context.graph_store._fs.transaction.complete\n",
"\tmethod (Custom) at 0x7abdc03da240 with path __app__.app.retriever._index.storage_context.graph_store._fs.transaction.start\n",
"\tmethod (Custom) at 0x7abdbf627600 with path __app__.app.retriever._index.storage_context.graph_store._fs.ukey\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._index.storage_context.graph_store._fs.unstrip_protocol\n",
"\tmethod (Custom) at 0x7abdbf625b40 with path __app__.app.retriever._index.storage_context.graph_store._fs.upload\n",
"\tmethod (Custom) at 0x7abdc03da140 with path __app__.app.retriever._index.storage_context.graph_store._fs.walk\n",
"\tmethod (Custom) at 0x7abdc03db880 with path __app__.app.retriever._index.storage_context.graph_store._fs.write_bytes\n",
"\tmethod (Custom) at 0x7abdc03d8040 with path __app__.app.retriever._index.storage_context.graph_store._fs.write_text\n",
"\tmethod (Custom) at 0x7abdc26424c0 with path __app__.app.retriever._index.storage_context.graph_store.delete\n",
"\tmethod (Custom) at 0x7abdbf626f40 with path __app__.app.retriever._index.storage_context.graph_store.from_dict\n",
"\tmethod (Custom) at 0x7abdc03da240 with path __app__.app.retriever._index.storage_context.graph_store.from_persist_dir\n",
"\tmethod (Custom) at 0x7abdc03da140 with path __app__.app.retriever._index.storage_context.graph_store.from_persist_path\n",
"\tmethod (Custom) at 0x7abdc03d8f00 with path __app__.app.retriever._index.storage_context.graph_store.get\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app.retriever._index.storage_context.graph_store.get_rel_map\n",
"\tmethod (Custom) at 0x7abdc03da140 with path __app__.app.retriever._index.storage_context.graph_store.get_schema\n",
"\tmethod (Custom) at 0x7abdbf5f0340 with path __app__.app.retriever._index.storage_context.graph_store.persist\n",
"\tmethod (Custom) at 0x7abdc03dbd80 with path __app__.app.retriever._index.storage_context.graph_store.query\n",
"\tmethod (Custom) at 0x7abdc03da240 with path __app__.app.retriever._index.storage_context.graph_store.to_dict\n",
"\tmethod (Custom) at 0x7abdbf625b40 with path __app__.app.retriever._index.storage_context.graph_store.upsert_triplet\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._index.update\n",
"\tmethod (Custom) at 0x7abdbf626f40 with path __app__.app.retriever._index.update_ref_doc\n",
"\tSimpleVectorStore (Other) at 0x7abdc28e32b0 with path __app__.app.retriever._index.vector_store\n",
"\t_abc_data (Custom) at 0x7abdc2be1400 with path __app__.app.retriever._index.vector_store._abc_impl\n",
"\tSimpleVectorStoreData (Other) at 0x7abdc28e3340 with path __app__.app.retriever._index.vector_store._data\n",
"\tLocalFileSystem (Custom) at 0x7abdc28e2230 with path __app__.app.retriever._index.vector_store._fs\n",
"\tfunction (Custom) at 0x7abdc2cd7400 with path __app__.app.retriever._index.vector_store._fs._get_kwargs_from_urls\n",
"\tmethod (Custom) at 0x7abdc26b3a40 with path __app__.app.retriever._index.vector_store._fs._get_pyarrow_filesystem\n",
"\tmethod (Custom) at 0x7abdbf6e8a80 with path __app__.app.retriever._index.vector_store._fs._isfilestore\n",
"\tmethod (Custom) at 0x7abdc03d85c0 with path __app__.app.retriever._index.vector_store._fs._ls_from_cache\n",
"\tmethod (Custom) at 0x7abdc03da100 with path __app__.app.retriever._index.vector_store._fs._parent\n",
"\tmethod (Custom) at 0x7abdc03d85c0 with path __app__.app.retriever._index.vector_store._fs._strip_protocol\n",
"\tmethod (Custom) at 0x7abdc03db8c0 with path __app__.app.retriever._index.vector_store._fs.cat\n",
"\tmethod (Custom) at 0x7abdbf6e8c40 with path __app__.app.retriever._index.vector_store._fs.cat_file\n",
"\tmethod (Custom) at 0x7abdbf5f1a40 with path __app__.app.retriever._index.vector_store._fs.cat_ranges\n",
"\tmethod (Custom) at 0x7abdbf6e8c40 with path __app__.app.retriever._index.vector_store._fs.checksum\n",
"\tmethod (Custom) at 0x7abdc2451540 with path __app__.app.retriever._index.vector_store._fs.chmod\n",
"\tmethod (Custom) at 0x7abdc03d9440 with path __app__.app.retriever._index.vector_store._fs.clear_instance_cache\n",
"\tmethod (Custom) at 0x7abdc03da100 with path __app__.app.retriever._index.vector_store._fs.copy\n",
"\tmethod (Custom) at 0x7abdc03d85c0 with path __app__.app.retriever._index.vector_store._fs.cp\n",
"\tmethod (Custom) at 0x7abdc03da140 with path __app__.app.retriever._index.vector_store._fs.cp_file\n",
"\tmethod (Custom) at 0x7abdbf5f0340 with path __app__.app.retriever._index.vector_store._fs.created\n",
"\tmethod (Custom) at 0x7abdc0437900 with path __app__.app.retriever._index.vector_store._fs.current\n",
"\tmethod (Custom) at 0x7abdbf5f0340 with path __app__.app.retriever._index.vector_store._fs.delete\n",
"\tDirCache (Custom) at 0x7abdc28e23e0 with path __app__.app.retriever._index.vector_store._fs.dircache\n",
"\tobject (Custom) at 0x7abe1a9b4330 with path __app__.app.retriever._index.vector_store._fs.dircache._MutableMapping__marker\n",
"\t_abc_data (Custom) at 0x7abdc2ce3f00 with path __app__.app.retriever._index.vector_store._fs.dircache._abc_impl\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._index.vector_store._fs.dircache.clear\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._index.vector_store._fs.dircache.get\n",
"\tmethod (Custom) at 0x7abdbf5f0d80 with path __app__.app.retriever._index.vector_store._fs.dircache.items\n",
"\tmethod (Custom) at 0x7abdbf6276c0 with path __app__.app.retriever._index.vector_store._fs.dircache.keys\n",
"\tmethod (Custom) at 0x7abdc03d8440 with path __app__.app.retriever._index.vector_store._fs.dircache.pop\n",
"\tmethod (Custom) at 0x7abdc03db8c0 with path __app__.app.retriever._index.vector_store._fs.dircache.popitem\n",
"\tmethod (Custom) at 0x7abdc0435c40 with path __app__.app.retriever._index.vector_store._fs.dircache.setdefault\n",
"\tmethod (Custom) at 0x7abdbf625b40 with path __app__.app.retriever._index.vector_store._fs.dircache.update\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._index.vector_store._fs.dircache.values\n",
"\tmethod (Custom) at 0x7abdbf627600 with path __app__.app.retriever._index.vector_store._fs.disk_usage\n",
"\tmethod (Custom) at 0x7abdbf6e9d00 with path __app__.app.retriever._index.vector_store._fs.download\n",
"\tmethod (Custom) at 0x7abdc03da140 with path __app__.app.retriever._index.vector_store._fs.du\n",
"\tmethod (Custom) at 0x7abdc03d8440 with path __app__.app.retriever._index.vector_store._fs.end_transaction\n",
"\tmethod (Custom) at 0x7abdc03d9440 with path __app__.app.retriever._index.vector_store._fs.exists\n",
"\tmethod (Custom) at 0x7abdc0435e80 with path __app__.app.retriever._index.vector_store._fs.expand_path\n",
"\tmethod (Custom) at 0x7abdbf6276c0 with path __app__.app.retriever._index.vector_store._fs.find\n",
"\tfunction (Custom) at 0x7abdc2b11090 with path __app__.app.retriever._index.vector_store._fs.from_json\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._index.vector_store._fs.get\n",
"\tmethod (Custom) at 0x7abdc03db880 with path __app__.app.retriever._index.vector_store._fs.get_file\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._index.vector_store._fs.get_mapper\n",
"\tmethod (Custom) at 0x7abdc03da140 with path __app__.app.retriever._index.vector_store._fs.glob\n",
"\tmethod (Custom) at 0x7abdbf627880 with path __app__.app.retriever._index.vector_store._fs.head\n",
"\tmethod (Custom) at 0x7abdc03d9080 with path __app__.app.retriever._index.vector_store._fs.info\n",
"\tmethod (Custom) at 0x7abdbf6272c0 with path __app__.app.retriever._index.vector_store._fs.invalidate_cache\n",
"\tmethod (Custom) at 0x7abdbf6276c0 with path __app__.app.retriever._index.vector_store._fs.isdir\n",
"\tmethod (Custom) at 0x7abdc03d8440 with path __app__.app.retriever._index.vector_store._fs.isfile\n",
"\tmethod (Custom) at 0x7abdbf627880 with path __app__.app.retriever._index.vector_store._fs.islink\n",
"\tmethod (Custom) at 0x7abdbf626f40 with path __app__.app.retriever._index.vector_store._fs.lexists\n",
"\tmethod (Custom) at 0x7abdc0436fc0 with path __app__.app.retriever._index.vector_store._fs.link\n",
"\tmethod (Custom) at 0x7abdc0435e80 with path __app__.app.retriever._index.vector_store._fs.listdir\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._index.vector_store._fs.ls\n",
"\tmethod (Custom) at 0x7abdbf627600 with path __app__.app.retriever._index.vector_store._fs.makedir\n",
"\tmethod (Custom) at 0x7abdbf626f00 with path __app__.app.retriever._index.vector_store._fs.makedirs\n",
"\tmethod (Custom) at 0x7abdc03d9080 with path __app__.app.retriever._index.vector_store._fs.mkdir\n",
"\tmethod (Custom) at 0x7abdc03da140 with path __app__.app.retriever._index.vector_store._fs.mkdirs\n",
"\tmethod (Custom) at 0x7abdbf6272c0 with path __app__.app.retriever._index.vector_store._fs.modified\n",
"\tmethod (Custom) at 0x7abdc2453340 with path __app__.app.retriever._index.vector_store._fs.move\n",
"\tmethod (Custom) at 0x7abdc0740d80 with path __app__.app.retriever._index.vector_store._fs.mv\n",
"\tmethod (Custom) at 0x7abdc03d9440 with path __app__.app.retriever._index.vector_store._fs.mv_file\n",
"\tmethod (Custom) at 0x7abdc03db880 with path __app__.app.retriever._index.vector_store._fs.open\n",
"\tmethod (Custom) at 0x7abdbf626f00 with path __app__.app.retriever._index.vector_store._fs.pipe\n",
"\tmethod (Custom) at 0x7abdbf6276c0 with path __app__.app.retriever._index.vector_store._fs.pipe_file\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._index.vector_store._fs.put\n",
"\tmethod (Custom) at 0x7abdbf626f40 with path __app__.app.retriever._index.vector_store._fs.put_file\n",
"\tmethod (Custom) at 0x7abdc03d9440 with path __app__.app.retriever._index.vector_store._fs.read_block\n",
"\tmethod (Custom) at 0x7abdbf5f1e40 with path __app__.app.retriever._index.vector_store._fs.read_bytes\n",
"\tmethod (Custom) at 0x7abdc03d85c0 with path __app__.app.retriever._index.vector_store._fs.read_text\n",
"\tmethod (Custom) at 0x7abdbf5f0340 with path __app__.app.retriever._index.vector_store._fs.rename\n",
"\tmethod (Custom) at 0x7abdc03d85c0 with path __app__.app.retriever._index.vector_store._fs.rm\n",
"\tmethod (Custom) at 0x7abdbf6e8400 with path __app__.app.retriever._index.vector_store._fs.rm_file\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._index.vector_store._fs.rmdir\n",
"\tmethod (Custom) at 0x7abdbf6e8c40 with path __app__.app.retriever._index.vector_store._fs.sign\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._index.vector_store._fs.size\n",
"\tmethod (Custom) at 0x7abdc03d9080 with path __app__.app.retriever._index.vector_store._fs.sizes\n",
"\tmethod (Custom) at 0x7abdc0435c40 with path __app__.app.retriever._index.vector_store._fs.start_transaction\n",
"\tmethod (Custom) at 0x7abdc03d85c0 with path __app__.app.retriever._index.vector_store._fs.stat\n",
"\tmethod (Custom) at 0x7abdc03d9080 with path __app__.app.retriever._index.vector_store._fs.symlink\n",
"\tmethod (Custom) at 0x7abdbf627ec0 with path __app__.app.retriever._index.vector_store._fs.tail\n",
"\tmethod (Custom) at 0x7abdbf627880 with path __app__.app.retriever._index.vector_store._fs.to_json\n",
"\tmethod (Custom) at 0x7abdc0437d40 with path __app__.app.retriever._index.vector_store._fs.touch\n",
"\tTransaction (Custom) at 0x7abdf42d28f0 with path __app__.app.retriever._index.vector_store._fs.transaction\n",
"\tmethod (Custom) at 0x7abdbf627880 with path __app__.app.retriever._index.vector_store._fs.transaction.complete\n",
"\tmethod (Custom) at 0x7abdc03d85c0 with path __app__.app.retriever._index.vector_store._fs.transaction.start\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._index.vector_store._fs.ukey\n",
"\tmethod (Custom) at 0x7abdbf627600 with path __app__.app.retriever._index.vector_store._fs.unstrip_protocol\n",
"\tmethod (Custom) at 0x7abdbf6272c0 with path __app__.app.retriever._index.vector_store._fs.upload\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._index.vector_store._fs.walk\n",
"\tmethod (Custom) at 0x7abdc03db880 with path __app__.app.retriever._index.vector_store._fs.write_bytes\n",
"\tmethod (Custom) at 0x7abdc2452ec0 with path __app__.app.retriever._index.vector_store._fs.write_text\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._index.vector_store.add\n",
"\tmethod (Custom) at 0x7abdc0740d80 with path __app__.app.retriever._index.vector_store.adelete\n",
"\tmethod (Custom) at 0x7abdc03db880 with path __app__.app.retriever._index.vector_store.aquery\n",
"\tmethod (Custom) at 0x7abdc0437900 with path __app__.app.retriever._index.vector_store.async_add\n",
"\tmethod (Custom) at 0x7abdc0740d80 with path __app__.app.retriever._index.vector_store.delete\n",
"\tmethod (Custom) at 0x7abdc254e300 with path __app__.app.retriever._index.vector_store.from_dict\n",
"\tmethod (Custom) at 0x7abdbf626f40 with path __app__.app.retriever._index.vector_store.from_namespaced_persist_dir\n",
"\tmethod (Custom) at 0x7abdc03da140 with path __app__.app.retriever._index.vector_store.from_persist_dir\n",
"\tmethod (Custom) at 0x7abdc04cd880 with path __app__.app.retriever._index.vector_store.from_persist_path\n",
"\tmethod (Custom) at 0x7abdc0436fc0 with path __app__.app.retriever._index.vector_store.get\n",
"\tmethod (Custom) at 0x7abdc2452ec0 with path __app__.app.retriever._index.vector_store.persist\n",
"\tmethod (Custom) at 0x7abdc0437900 with path __app__.app.retriever._index.vector_store.query\n",
"\tmethod (Custom) at 0x7abdbf5f0340 with path __app__.app.retriever._index.vector_store.to_dict\n",
"\tServiceContext (Other) at 0x7abdc793f820 with path __app__.app.retriever._service_context\n",
"\tLLMPredictor (Other) at 0x7abdc2b7fa40 with path __app__.app.retriever._service_context.llm_predictor\n",
"\tPromptHelper (Other) at 0x7abdc2a1cf40 with path __app__.app.retriever._service_context.prompt_helper\n",
"\tOpenAIEmbedding (Other) at 0x7abdc27927a0 with path __app__.app.retriever._service_context.embed_model\n",
"\tSentenceSplitter (Other) at 0x7abdce689080 with path __app__.app.retriever._service_context.transformations[0]\n",
"\tfunction (Custom) at 0x7abdc347a440 with path __app__.app.retriever._service_context.transformations[0].id_func\n",
"\tLlamaLogger (Other) at 0x7abdcef929b0 with path __app__.app.retriever._service_context.llama_logger\n",
"\tmethod (Custom) at 0x7abdc03d9d00 with path __app__.app.retriever._service_context.llama_logger.add_log\n",
"\tmethod (Custom) at 0x7abdc03da100 with path __app__.app.retriever._service_context.llama_logger.get_logs\n",
"\tmethod (Custom) at 0x7abdc03d8b80 with path __app__.app.retriever._service_context.llama_logger.get_metadata\n",
"\tmethod (Custom) at 0x7abdc04cfd40 with path __app__.app.retriever._service_context.llama_logger.reset\n",
"\tmethod (Custom) at 0x7abdc03d8280 with path __app__.app.retriever._service_context.llama_logger.set_metadata\n",
"\tmethod (Custom) at 0x7abdc0437d40 with path __app__.app.retriever._service_context.llama_logger.unset_metadata\n",
"\tCallbackManager (Other) at 0x7abdc28e31c0 with path __app__.app.retriever._service_context.callback_manager\n",
"\t_abc_data (Custom) at 0x7abdc6460b40 with path __app__.app.retriever._service_context.callback_manager._abc_impl\n",
"\tmethod (Custom) at 0x7abdc03d8e00 with path __app__.app.retriever._service_context.callback_manager._reset_trace_events\n",
"\tmethod (Custom) at 0x7abdbf5e1500 with path __app__.app.retriever._service_context.callback_manager.add_handler\n",
"\tmethod (Custom) at 0x7abdc04cfd40 with path __app__.app.retriever._service_context.callback_manager.as_trace\n",
"\tmethod (Custom) at 0x7abdc0437d40 with path __app__.app.retriever._service_context.callback_manager.end_trace\n",
"\tmethod (Custom) at 0x7abdbf626f00 with path __app__.app.retriever._service_context.callback_manager.event\n",
"\tmethod (Custom) at 0x7abdc03db440 with path __app__.app.retriever._service_context.callback_manager.on_event_end\n",
"\tmethod (Custom) at 0x7abdc03d93c0 with path __app__.app.retriever._service_context.callback_manager.on_event_start\n",
"\tmethod (Custom) at 0x7abdc03d85c0 with path __app__.app.retriever._service_context.callback_manager.remove_handler\n",
"\tmethod (Custom) at 0x7abdc03d9b00 with path __app__.app.retriever._service_context.callback_manager.set_handlers\n",
"\tmethod (Custom) at 0x7abdc03d8280 with path __app__.app.retriever._service_context.callback_manager.start_trace\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._validate_prompts\n",
"\tSimpleVectorStore (Other) at 0x7abdc28e32b0 with path __app__.app.retriever._vector_store\n",
"\t_abc_data (Custom) at 0x7abdc2be1400 with path __app__.app.retriever._vector_store._abc_impl\n",
"\tSimpleVectorStoreData (Other) at 0x7abdc28e3340 with path __app__.app.retriever._vector_store._data\n",
"\tLocalFileSystem (Custom) at 0x7abdc28e2230 with path __app__.app.retriever._vector_store._fs\n",
"\tfunction (Custom) at 0x7abdc2cd7400 with path __app__.app.retriever._vector_store._fs._get_kwargs_from_urls\n",
"\tmethod (Custom) at 0x7abdc03da240 with path __app__.app.retriever._vector_store._fs._get_pyarrow_filesystem\n",
"\tmethod (Custom) at 0x7abdc03d8100 with path __app__.app.retriever._vector_store._fs._isfilestore\n",
"\tmethod (Custom) at 0x7abdc03d8e00 with path __app__.app.retriever._vector_store._fs._ls_from_cache\n",
"\tmethod (Custom) at 0x7abdc03d8100 with path __app__.app.retriever._vector_store._fs._parent\n",
"\tmethod (Custom) at 0x7abdbf626ec0 with path __app__.app.retriever._vector_store._fs._strip_protocol\n",
"\tmethod (Custom) at 0x7abdbf626f00 with path __app__.app.retriever._vector_store._fs.cat\n",
"\tmethod (Custom) at 0x7abdbf6275c0 with path __app__.app.retriever._vector_store._fs.cat_file\n",
"\tmethod (Custom) at 0x7abdc049da40 with path __app__.app.retriever._vector_store._fs.cat_ranges\n",
"\tmethod (Custom) at 0x7abdc03da240 with path __app__.app.retriever._vector_store._fs.checksum\n",
"\tmethod (Custom) at 0x7abdc2453340 with path __app__.app.retriever._vector_store._fs.chmod\n",
"\tmethod (Custom) at 0x7abdc26166c0 with path __app__.app.retriever._vector_store._fs.clear_instance_cache\n",
"\tmethod (Custom) at 0x7abdc03d8840 with path __app__.app.retriever._vector_store._fs.copy\n",
"\tmethod (Custom) at 0x7abdc26166c0 with path __app__.app.retriever._vector_store._fs.cp\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app.retriever._vector_store._fs.cp_file\n",
"\tmethod (Custom) at 0x7abdc254e300 with path __app__.app.retriever._vector_store._fs.created\n",
"\tmethod (Custom) at 0x7abdc0437900 with path __app__.app.retriever._vector_store._fs.current\n",
"\tmethod (Custom) at 0x7abdbf626ec0 with path __app__.app.retriever._vector_store._fs.delete\n",
"\tDirCache (Custom) at 0x7abdc28e23e0 with path __app__.app.retriever._vector_store._fs.dircache\n",
"\tobject (Custom) at 0x7abe1a9b4330 with path __app__.app.retriever._vector_store._fs.dircache._MutableMapping__marker\n",
"\t_abc_data (Custom) at 0x7abdc2ce3f00 with path __app__.app.retriever._vector_store._fs.dircache._abc_impl\n",
"\tmethod (Custom) at 0x7abdbf626f00 with path __app__.app.retriever._vector_store._fs.dircache.clear\n",
"\tmethod (Custom) at 0x7abdbf5f1980 with path __app__.app.retriever._vector_store._fs.dircache.get\n",
"\tmethod (Custom) at 0x7abdbf6275c0 with path __app__.app.retriever._vector_store._fs.dircache.items\n",
"\tmethod (Custom) at 0x7abdc03da240 with path __app__.app.retriever._vector_store._fs.dircache.keys\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._vector_store._fs.dircache.pop\n",
"\tmethod (Custom) at 0x7abdbf5e0c40 with path __app__.app.retriever._vector_store._fs.dircache.popitem\n",
"\tmethod (Custom) at 0x7abdbf5f1480 with path __app__.app.retriever._vector_store._fs.dircache.setdefault\n",
"\tmethod (Custom) at 0x7abdbf6e9d00 with path __app__.app.retriever._vector_store._fs.dircache.update\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app.retriever._vector_store._fs.dircache.values\n",
"\tmethod (Custom) at 0x7abdbf626ec0 with path __app__.app.retriever._vector_store._fs.disk_usage\n",
"\tmethod (Custom) at 0x7abdbf626f40 with path __app__.app.retriever._vector_store._fs.download\n",
"\tmethod (Custom) at 0x7abdbf6276c0 with path __app__.app.retriever._vector_store._fs.du\n",
"\tmethod (Custom) at 0x7abdc03db8c0 with path __app__.app.retriever._vector_store._fs.end_transaction\n",
"\tmethod (Custom) at 0x7abdc03e5ac0 with path __app__.app.retriever._vector_store._fs.exists\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._vector_store._fs.expand_path\n",
"\tmethod (Custom) at 0x7abdbf5e15c0 with path __app__.app.retriever._vector_store._fs.find\n",
"\tfunction (Custom) at 0x7abdc2b11090 with path __app__.app.retriever._vector_store._fs.from_json\n",
"\tmethod (Custom) at 0x7abdbf626ec0 with path __app__.app.retriever._vector_store._fs.get\n",
"\tmethod (Custom) at 0x7abdc04378c0 with path __app__.app.retriever._vector_store._fs.get_file\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._vector_store._fs.get_mapper\n",
"\tmethod (Custom) at 0x7abdc056f880 with path __app__.app.retriever._vector_store._fs.glob\n",
"\tmethod (Custom) at 0x7abdbf626ec0 with path __app__.app.retriever._vector_store._fs.head\n",
"\tmethod (Custom) at 0x7abdbf626f40 with path __app__.app.retriever._vector_store._fs.info\n",
"\tmethod (Custom) at 0x7abdbf5f1980 with path __app__.app.retriever._vector_store._fs.invalidate_cache\n",
"\tmethod (Custom) at 0x7abdc2451540 with path __app__.app.retriever._vector_store._fs.isdir\n",
"\tmethod (Custom) at 0x7abdc03e5ac0 with path __app__.app.retriever._vector_store._fs.isfile\n",
"\tmethod (Custom) at 0x7abdbf626f00 with path __app__.app.retriever._vector_store._fs.islink\n",
"\tmethod (Custom) at 0x7abdbf5e15c0 with path __app__.app.retriever._vector_store._fs.lexists\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._vector_store._fs.link\n",
"\tmethod (Custom) at 0x7abdc2451540 with path __app__.app.retriever._vector_store._fs.listdir\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app.retriever._vector_store._fs.ls\n",
"\tmethod (Custom) at 0x7abdbf5f1980 with path __app__.app.retriever._vector_store._fs.makedir\n",
"\tmethod (Custom) at 0x7abdbf5e19c0 with path __app__.app.retriever._vector_store._fs.makedirs\n",
"\tmethod (Custom) at 0x7abdc03db8c0 with path __app__.app.retriever._vector_store._fs.mkdir\n",
"\tmethod (Custom) at 0x7abdc0437900 with path __app__.app.retriever._vector_store._fs.mkdirs\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._vector_store._fs.modified\n",
"\tmethod (Custom) at 0x7abdc2451540 with path __app__.app.retriever._vector_store._fs.move\n",
"\tmethod (Custom) at 0x7abdbf6276c0 with path __app__.app.retriever._vector_store._fs.mv\n",
"\tmethod (Custom) at 0x7abdc2453340 with path __app__.app.retriever._vector_store._fs.mv_file\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._vector_store._fs.open\n",
"\tmethod (Custom) at 0x7abdc2452ec0 with path __app__.app.retriever._vector_store._fs.pipe\n",
"\tmethod (Custom) at 0x7abdbf626f40 with path __app__.app.retriever._vector_store._fs.pipe_file\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._vector_store._fs.put\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._vector_store._fs.put_file\n",
"\tmethod (Custom) at 0x7abdbf626f40 with path __app__.app.retriever._vector_store._fs.read_block\n",
"\tmethod (Custom) at 0x7abdbf613300 with path __app__.app.retriever._vector_store._fs.read_bytes\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever._vector_store._fs.read_text\n",
"\tmethod (Custom) at 0x7abdc0437900 with path __app__.app.retriever._vector_store._fs.rename\n",
"\tmethod (Custom) at 0x7abdbf626f40 with path __app__.app.retriever._vector_store._fs.rm\n",
"\tmethod (Custom) at 0x7abdc0740d80 with path __app__.app.retriever._vector_store._fs.rm_file\n",
"\tmethod (Custom) at 0x7abdbf626f00 with path __app__.app.retriever._vector_store._fs.rmdir\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._vector_store._fs.sign\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app.retriever._vector_store._fs.size\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._vector_store._fs.sizes\n",
"\tmethod (Custom) at 0x7abdc0437900 with path __app__.app.retriever._vector_store._fs.start_transaction\n",
"\tmethod (Custom) at 0x7abdc03db8c0 with path __app__.app.retriever._vector_store._fs.stat\n",
"\tmethod (Custom) at 0x7abdbf6276c0 with path __app__.app.retriever._vector_store._fs.symlink\n",
"\tmethod (Custom) at 0x7abdbf5e0c40 with path __app__.app.retriever._vector_store._fs.tail\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app.retriever._vector_store._fs.to_json\n",
"\tmethod (Custom) at 0x7abdbf6275c0 with path __app__.app.retriever._vector_store._fs.touch\n",
"\tTransaction (Custom) at 0x7abdf42d28f0 with path __app__.app.retriever._vector_store._fs.transaction\n",
"\tmethod (Custom) at 0x7abdbf6276c0 with path __app__.app.retriever._vector_store._fs.transaction.complete\n",
"\tmethod (Custom) at 0x7abdbf6e9d00 with path __app__.app.retriever._vector_store._fs.transaction.start\n",
"\tmethod (Custom) at 0x7abdc03d9440 with path __app__.app.retriever._vector_store._fs.ukey\n",
"\tmethod (Custom) at 0x7abdc25a13c0 with path __app__.app.retriever._vector_store._fs.unstrip_protocol\n",
"\tmethod (Custom) at 0x7abdbf626f40 with path __app__.app.retriever._vector_store._fs.upload\n",
"\tmethod (Custom) at 0x7abdc05784c0 with path __app__.app.retriever._vector_store._fs.walk\n",
"\tmethod (Custom) at 0x7abdbf626f40 with path __app__.app.retriever._vector_store._fs.write_bytes\n",
"\tmethod (Custom) at 0x7abdbf5e0c40 with path __app__.app.retriever._vector_store._fs.write_text\n",
"\tmethod (Custom) at 0x7abdbf5f1980 with path __app__.app.retriever._vector_store.add\n",
"\tmethod (Custom) at 0x7abdc03d9440 with path __app__.app.retriever._vector_store.adelete\n",
"\tmethod (Custom) at 0x7abdc2451540 with path __app__.app.retriever._vector_store.aquery\n",
"\tmethod (Custom) at 0x7abdc03d9440 with path __app__.app.retriever._vector_store.async_add\n",
"\tmethod (Custom) at 0x7abdbf627d00 with path __app__.app.retriever._vector_store.delete\n",
"\tmethod (Custom) at 0x7abdc03dbcc0 with path __app__.app.retriever._vector_store.from_dict\n",
"\tmethod (Custom) at 0x7abdc254dc00 with path __app__.app.retriever._vector_store.from_namespaced_persist_dir\n",
"\tmethod (Custom) at 0x7abdbf6e9400 with path __app__.app.retriever._vector_store.from_persist_dir\n",
"\tmethod (Custom) at 0x7abdc254dc00 with path __app__.app.retriever._vector_store.from_persist_path\n",
"\tmethod (Custom) at 0x7abdc03da240 with path __app__.app.retriever._vector_store.get\n",
"\tmethod (Custom) at 0x7abdbf6275c0 with path __app__.app.retriever._vector_store.persist\n",
"\tmethod (Custom) at 0x7abdc03db8c0 with path __app__.app.retriever._vector_store.query\n",
"\tmethod (Custom) at 0x7abdc056f880 with path __app__.app.retriever._vector_store.to_dict\n",
"\tmethod (Custom) at 0x7abdc245f640 with path __app__.app.retriever.aretrieve\n",
"\tCallbackManager (Other) at 0x7abdc28e31c0 with path __app__.app.retriever.callback_manager\n",
"\t_abc_data (Custom) at 0x7abdc6460b40 with path __app__.app.retriever.callback_manager._abc_impl\n",
"\tmethod (Custom) at 0x7abdbf626f40 with path __app__.app.retriever.callback_manager._reset_trace_events\n",
"\tmethod (Custom) at 0x7abdc25a13c0 with path __app__.app.retriever.callback_manager.add_handler\n",
"\tmethod (Custom) at 0x7abdc1aab780 with path __app__.app.retriever.callback_manager.as_trace\n",
"\tmethod (Custom) at 0x7abdc25a13c0 with path __app__.app.retriever.callback_manager.end_trace\n",
"\tmethod (Custom) at 0x7abdc245f640 with path __app__.app.retriever.callback_manager.event\n",
"\tmethod (Custom) at 0x7abdc03d9440 with path __app__.app.retriever.callback_manager.on_event_end\n",
"\tmethod (Custom) at 0x7abdc05784c0 with path __app__.app.retriever.callback_manager.on_event_start\n",
"\tmethod (Custom) at 0x7abdbf626d80 with path __app__.app.retriever.callback_manager.remove_handler\n",
"\tmethod (Custom) at 0x7abdc24f01c0 with path __app__.app.retriever.callback_manager.set_handlers\n",
"\tmethod (Custom) at 0x7abdc03d8100 with path __app__.app.retriever.callback_manager.start_trace\n",
"\tmethod (Custom) at 0x7abdc24f01c0 with path __app__.app.retriever.get_prompts\n",
"\tmethod (Custom) at 0x7abdbf6276c0 with path __app__.app.retriever.get_service_context\n",
"\tmethod (Custom) at 0x7abdc056f880 with path __app__.app.retriever.retrieve\n",
"\tmethod (Custom) at 0x7abdc2453340 with path __app__.app.retriever.update_prompts\n",
"\tmethod (Custom) at 0x7abdc25a13c0 with path __app__.app.synthesize\n",
"\tmethod (Custom) at 0x7abdc04cfb00 with path __app__.app.update_prompts\n",
"\tmethod (Custom) at 0x7abdc25a13c0 with path __app__.app.with_retriever\n",
"\n",
"Methods:\n",
"Object at 0x7abdc28e3b20:\n",
"\t<function BaseQueryEngine.query at 0x7abdc2c32ef0> with path __app__.app\n",
"\t<function BaseQueryEngine.aquery at 0x7abdc2c32f80> with path __app__.app\n",
"\t<function RetrieverQueryEngine.retrieve at 0x7abdc23d0430> with path __app__.app\n",
"\t<function RetrieverQueryEngine.synthesize at 0x7abdc23d05e0> with path __app__.app\n",
"\t<function BaseQueryEngine.retrieve at 0x7abdc2c33010> with path __app__.app\n",
"\t<function BaseQueryEngine.synthesize at 0x7abdc2c330a0> with path __app__.app\n",
"Object at 0x7abdc28e1f90:\n",
"\t<function CompactAndRefine.get_response at 0x7abdc2c94f70> with path __app__.app._response_synthesizer\n",
"\t<function BaseSynthesizer.synthesize at 0x7abdc2c943a0> with path __app__.app._response_synthesizer\n",
"\t<function Refine.get_response at 0x7abdc2934dc0> with path __app__.app._response_synthesizer\n",
"\t<function BaseSynthesizer.get_response at 0x7abdc2c940d0> with path __app__.app._response_synthesizer\n",
"Object at 0x7abdc28e2f20:\n",
"\t<function BaseRetriever.retrieve at 0x7abdc2c32290> with path __app__.app.retriever\n",
"Object at 0x7abdc28e2f80:\n",
"\t<function SimpleGraphStore.query at 0x7abdc298e050> with path __app__.app.retriever._index._graph_store\n",
"\t<function GraphStore.query at 0x7abdc295b0a0> with path __app__.app.retriever._index._graph_store\n",
"Object at 0x7abdc28e32b0:\n",
"\t<function SimpleVectorStore.query at 0x7abdc29ea0e0> with path __app__.app.retriever._index.vector_store\n",
"\t<function VectorStore.aquery at 0x7abdc2b1bd90> with path __app__.app.retriever._index.vector_store\n",
"\t<function VectorStore.query at 0x7abdc2b1bd00> with path __app__.app.retriever._index.vector_store\n"
]
}
],
"source": [
"# Show which components of the llama index app have been instrumented (will be\n",
"# tracked as components in the dashboard).\n",
"\n",
"l.print_instrumented()"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "EKIB28ZkTZQ6",
"outputId": "ace3dbad-3c52-48ca-b942-718674d9068f"
},
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"WARNING:trulens_eval.app:Function <method-wrapper '__call__' of method object at 0x7abdbf5f3cc0> has not been instrumented. This may be ok if it will call a function that has been instrumented exactly once. Otherwise unexpected results may follow. You can use `AddInstruments.method` of `trulens_eval.instruments` before you use the `TruLlama` wrapper to make sure `__call__` does get instrumented. `TruLlama` method `print_instrumented` may be used to see methods that have been instrumented. \n"
]
},
{
"output_type": "stream",
"name": "stdout",
"text": [
"\n",
"`query_with_record` will be deprecated soon; To record results of your app's execution, use one of these options to invoke your app:\n",
" (1) Use the `with_record` method:\n",
" ```python\n",
" app # your app\n",
" tru_app_recorder: TruLlama = TruLlama(app, ...)\n",
" result, record = tru_app_recorder.with_record(app.query, ...args/kwargs-to-app.query...)\n",
" ```\n",
" (2) Use TruLlama as a context manager: \n",
" ```python\n",
" app # your app\n",
" tru_app_recorder: TruLlama = TruLlama(app, ...)\n",
" with tru_app_recorder as records:\n",
" result = app.query(...args/kwargs-to-app.query...)\n",
" record = records.get()\n",
" ```\n",
"\n"
]
}
],
"source": [
"res, record = l.query_with_record(\"Who is Shayak?\")"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 376
},
"id": "ziTEg0emTZQ6",
"outputId": "8751151b-7f2a-49c4-944c-7d2a2c8d07dc"
},
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"<ipython-input-20-6b41a37a40ca>:1: PydanticDeprecatedSince20: The `dict` method is deprecated; use `model_dump` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.5/migration/\n",
" record.dict()\n"
]
},
{
"output_type": "error",
"ename": "TypeError",
"evalue": "ignored",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
"\u001b[0;32m<ipython-input-20-6b41a37a40ca>\u001b[0m in \u001b[0;36m<cell line: 1>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mrecord\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdict\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m",
"\u001b[0;32m/usr/local/lib/python3.10/dist-packages/typing_extensions.py\u001b[0m in \u001b[0;36mwrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 2497\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mwrapper\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2498\u001b[0m \u001b[0mwarnings\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mwarn\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmsg\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcategory\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mcategory\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mstacklevel\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mstacklevel\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2499\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0marg\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2500\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2501\u001b[0m \u001b[0marg\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__deprecated__\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mwrapper\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__deprecated__\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mmsg\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/local/lib/python3.10/dist-packages/pydantic/main.py\u001b[0m in \u001b[0;36mdict\u001b[0;34m(self, include, exclude, by_alias, exclude_unset, exclude_defaults, exclude_none)\u001b[0m\n\u001b[1;32m 978\u001b[0m ) -> typing.Dict[str, Any]: # noqa UP006\n\u001b[1;32m 979\u001b[0m \u001b[0mwarnings\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mwarn\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'The `dict` method is deprecated; use `model_dump` instead.'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mDeprecationWarning\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 980\u001b[0;31m return self.model_dump(\n\u001b[0m\u001b[1;32m 981\u001b[0m \u001b[0minclude\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0minclude\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 982\u001b[0m \u001b[0mexclude\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mexclude\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/local/lib/python3.10/dist-packages/trulens_eval/utils/serial.py\u001b[0m in \u001b[0;36mmodel_dump\u001b[0;34m(self, **kwargs)\u001b[0m\n\u001b[1;32m 73\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0mtrulens_eval\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mutils\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mjson\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mjsonify\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 74\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 75\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mjsonify\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 76\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 77\u001b[0m \u001b[0;34m@\u001b[0m\u001b[0mclassmethod\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;31mTypeError\u001b[0m: jsonify() got an unexpected keyword argument 'include'"
]
}
],
"source": [
"record.dict()"
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "yHsHROw_TZQ6",
"outputId": "8af5e5ea-0f82-4552-cf06-f0d582800304"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Force stopping dashboard ...\n",
"Starting dashboard ...\n",
"npx: installed 22 in 5.079s\n",
"\n",
"Go to this url and submit the ip given here. your url is: https://wise-tires-post.loca.lt\n",
"\n",
" Submit this IP Address: 34.90.176.105\n",
"\n"
]
}
],
"source": [
"# Start the dashboard here:\n",
"proc = Tru().start_dashboard(force=True, _dev=Path.cwd().parent.parent.parent)\n",
"\n",
"# If using deferred feedback evaluation, need to start this too:\n",
"# thread = Tru().start_evaluator(restart=True)"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {
"id": "1S-_GGe5TZQ6"
},
"outputs": [],
"source": [
"f = f_qs_relevance.run(record=record, app=l)"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 376
},
"id": "zLgJxWfpTZQ7",
"outputId": "e8addb76-d589-4931-95a6-171feed42127"
},
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"<ipython-input-24-c060a3c48059>:1: PydanticDeprecatedSince20: The `dict` method is deprecated; use `model_dump` instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.5/migration/\n",
" f.dict()\n"
]
},
{
"output_type": "error",
"ename": "TypeError",
"evalue": "ignored",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
"\u001b[0;32m<ipython-input-24-c060a3c48059>\u001b[0m in \u001b[0;36m<cell line: 1>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mf\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdict\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m",
"\u001b[0;32m/usr/local/lib/python3.10/dist-packages/typing_extensions.py\u001b[0m in \u001b[0;36mwrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 2497\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mwrapper\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2498\u001b[0m \u001b[0mwarnings\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mwarn\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmsg\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcategory\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mcategory\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mstacklevel\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mstacklevel\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2499\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0marg\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2500\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2501\u001b[0m \u001b[0marg\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__deprecated__\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mwrapper\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__deprecated__\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mmsg\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/local/lib/python3.10/dist-packages/pydantic/main.py\u001b[0m in \u001b[0;36mdict\u001b[0;34m(self, include, exclude, by_alias, exclude_unset, exclude_defaults, exclude_none)\u001b[0m\n\u001b[1;32m 978\u001b[0m ) -> typing.Dict[str, Any]: # noqa UP006\n\u001b[1;32m 979\u001b[0m \u001b[0mwarnings\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mwarn\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'The `dict` method is deprecated; use `model_dump` instead.'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mDeprecationWarning\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 980\u001b[0;31m return self.model_dump(\n\u001b[0m\u001b[1;32m 981\u001b[0m \u001b[0minclude\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0minclude\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 982\u001b[0m \u001b[0mexclude\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mexclude\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/local/lib/python3.10/dist-packages/trulens_eval/utils/serial.py\u001b[0m in \u001b[0;36mmodel_dump\u001b[0;34m(self, **kwargs)\u001b[0m\n\u001b[1;32m 73\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0mtrulens_eval\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mutils\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mjson\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mjsonify\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 74\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 75\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mjsonify\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 76\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 77\u001b[0m \u001b[0;34m@\u001b[0m\u001b[0mclassmethod\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;31mTypeError\u001b[0m: jsonify() got an unexpected keyword argument 'include'"
]
}
],
"source": [
"f.dict()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "VhDT5564TZQ7"
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "py38_trulens",
"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.8.16"
},
"orig_nbformat": 4,
"colab": {
"provenance": [],
"include_colab_link": true
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment