From 608c4a4327b83657db8a2b228eb0076d64934cd6 Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Thu, 12 Sep 2024 20:35:14 -0700 Subject: [PATCH] docs: json load test (#26413) --- docs/src/pages/404.js | 14 - docs/src/theme/NotFound.js | 2478 ++++++++++++++++++++++++- docs/src/theme/removed_pages_v01.json | 2474 ------------------------ 3 files changed, 2476 insertions(+), 2490 deletions(-) delete mode 100644 docs/src/pages/404.js delete mode 100644 docs/src/theme/removed_pages_v01.json diff --git a/docs/src/pages/404.js b/docs/src/pages/404.js deleted file mode 100644 index 15088d0df2e..00000000000 --- a/docs/src/pages/404.js +++ /dev/null @@ -1,14 +0,0 @@ -import React from 'react'; -import Layout from '@theme/Layout'; - -export default function NotFound() { - return ( - -
-

404 - Page Not Found

-

Oops! The page you're looking for doesn't exist.

- Go back to the homepage -
-
- ); -} diff --git a/docs/src/theme/NotFound.js b/docs/src/theme/NotFound.js index 885df7f2033..c33c2227fa2 100644 --- a/docs/src/theme/NotFound.js +++ b/docs/src/theme/NotFound.js @@ -2,7 +2,6 @@ import React from 'react'; import Translate, {translate} from '@docusaurus/Translate'; import {PageMetadata} from '@docusaurus/theme-common'; import Layout from '@theme/Layout'; -import suggestedLinks from './removed_pages_v01.json' import {useLocation} from 'react-router-dom'; @@ -14,7 +13,7 @@ function LegacyBadge() { export default function NotFound() { const location = useLocation(); - const pathname = `${location.pathname}/`; + const pathname = location.pathname.endsWith('/') ? location.pathname : location.pathname + '/'; // Ensure the path matches the keys in suggestedLinks const {canonical, alternative} = suggestedLinks[pathname] || {}; return ( @@ -66,3 +65,2478 @@ export default function NotFound() { ); } + +const suggestedLinks = { + "/docs/changelog/core/": { + "canonical": "https://github.com/langchain-ai/langchain/releases?q=tag:%22langchain-core%3D%3D0%22&expanded=true", + "alternative": [ + "/v0.1/docs/changelog/core/" + ] + }, + "/docs/changelog/langchain/": { + "canonical": "https://github.com/langchain-ai/langchain/releases?q=tag:%22langchain%3D%3D0%22&expanded=true", + "alternative": [ + "/v0.1/docs/changelog/langchain/" + ] + }, + "/docs/contributing/documentation/technical_logistics/": { + "canonical": "/docs/contributing/documentation/", + "alternative": [ + "/v0.1/docs/contributing/documentation/technical_logistics/" + ] + }, + "/docs/cookbook/": { + "canonical": "/docs/tutorials/", + "alternative": [ + "/v0.1/docs/cookbook/" + ] + }, + "/docs/expression_language/": { + "canonical": "/docs/how_to/#langchain-expression-language-lcel", + "alternative": [ + "/v0.1/docs/expression_language/" + ] + }, + "/docs/expression_language/cookbook/code_writing/": { + "canonical": "https://langchain-ai.github.io/langgraph/tutorials/code_assistant/langgraph_code_assistant/", + "alternative": [ + "/v0.1/docs/expression_language/cookbook/code_writing/" + ] + }, + "/docs/expression_language/cookbook/multiple_chains/": { + "canonical": "/docs/how_to/parallel/", + "alternative": [ + "/v0.1/docs/expression_language/cookbook/multiple_chains/" + ] + }, + "/docs/expression_language/cookbook/prompt_llm_parser/": { + "canonical": "/docs/tutorials/llm_chain/", + "alternative": [ + "/v0.1/docs/expression_language/cookbook/prompt_llm_parser/" + ] + }, + "/docs/expression_language/cookbook/prompt_size/": { + "canonical": "/docs/how_to/trim_messages/", + "alternative": [ + "/v0.1/docs/expression_language/cookbook/prompt_size/" + ] + }, + "/docs/expression_language/get_started/": { + "canonical": "/docs/how_to/sequence/", + "alternative": [ + "/v0.1/docs/expression_language/get_started/" + ] + }, + "/docs/expression_language/how_to/decorator/": { + "canonical": "/docs/how_to/functions/#the-convenience-chain-decorator", + "alternative": [ + "/v0.1/docs/expression_language/how_to/decorator/" + ] + }, + "/docs/expression_language/how_to/inspect/": { + "canonical": "/docs/how_to/inspect/", + "alternative": [ + "/v0.1/docs/expression_language/how_to/inspect/" + ] + }, + "/docs/expression_language/how_to/message_history/": { + "canonical": "/docs/how_to/message_history/", + "alternative": [ + "/v0.1/docs/expression_language/how_to/message_history/" + ] + }, + "/docs/expression_language/how_to/routing/": { + "canonical": "/docs/how_to/routing/", + "alternative": [ + "/v0.1/docs/expression_language/how_to/routing/" + ] + }, + "/docs/expression_language/interface/": { + "canonical": "/docs/how_to/lcel_cheatsheet/", + "alternative": [ + "/v0.1/docs/expression_language/interface/" + ] + }, + "/docs/expression_language/primitives/": { + "canonical": "/docs/how_to/#langchain-expression-language-lcel", + "alternative": [ + "/v0.1/docs/expression_language/primitives/" + ] + }, + "/docs/expression_language/primitives/assign/": { + "canonical": "/docs/how_to/assign/", + "alternative": [ + "/v0.1/docs/expression_language/primitives/assign/" + ] + }, + "/docs/expression_language/primitives/binding/": { + "canonical": "/docs/how_to/binding/", + "alternative": [ + "/v0.1/docs/expression_language/primitives/binding/" + ] + }, + "/docs/expression_language/primitives/configure/": { + "canonical": "/docs/how_to/configure/", + "alternative": [ + "/v0.1/docs/expression_language/primitives/configure/" + ] + }, + "/docs/expression_language/primitives/functions/": { + "canonical": "/docs/how_to/functions/", + "alternative": [ + "/v0.1/docs/expression_language/primitives/functions/" + ] + }, + "/docs/expression_language/primitives/parallel/": { + "canonical": "/docs/how_to/parallel/", + "alternative": [ + "/v0.1/docs/expression_language/primitives/parallel/" + ] + }, + "/docs/expression_language/primitives/passthrough/": { + "canonical": "/docs/how_to/passthrough/", + "alternative": [ + "/v0.1/docs/expression_language/primitives/passthrough/" + ] + }, + "/docs/expression_language/primitives/sequence/": { + "canonical": "/docs/how_to/sequence/", + "alternative": [ + "/v0.1/docs/expression_language/primitives/sequence/" + ] + }, + "/docs/expression_language/streaming/": { + "canonical": "/docs/how_to/streaming/", + "alternative": [ + "/v0.1/docs/expression_language/streaming/" + ] + }, + "/docs/expression_language/why/": { + "canonical": "/docs/concepts/#langchain-expression-language-lcel", + "alternative": [ + "/v0.1/docs/expression_language/why/" + ] + }, + "/docs/get_started/installation/": { + "canonical": "/docs/tutorials/", + "alternative": [ + "/v0.1/docs/get_started/installation/" + ] + }, + "/docs/get_started/introduction/": { + "canonical": "/docs/tutorials/", + "alternative": [ + "/v0.1/docs/get_started/introduction/" + ] + }, + "/docs/get_started/quickstart/": { + "canonical": "/docs/tutorials/", + "alternative": [ + "/v0.1/docs/get_started/quickstart/" + ] + }, + "/docs/guides/": { + "canonical": "/docs/how_to/", + "alternative": [ + "/v0.1/docs/guides/" + ] + }, + "/docs/guides/development/": { + "canonical": "/docs/how_to/debugging/", + "alternative": [ + "/v0.1/docs/guides/development/" + ] + }, + "/docs/guides/development/debugging/": { + "canonical": "/docs/how_to/debugging/", + "alternative": [ + "/v0.1/docs/guides/development/debugging/" + ] + }, + "/docs/guides/development/extending_langchain/": { + "canonical": "/docs/how_to/#custom", + "alternative": [ + "/v0.1/docs/guides/development/extending_langchain/" + ] + }, + "/docs/guides/development/local_llms/": { + "canonical": "/docs/how_to/local_llms/", + "alternative": [ + "/v0.1/docs/guides/development/local_llms/" + ] + }, + "/docs/guides/development/pydantic_compatibility/": { + "canonical": "/docs/how_to/pydantic_compatibility/", + "alternative": [ + "/v0.1/docs/guides/development/pydantic_compatibility/" + ] + }, + "/docs/guides/productionization/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/" + ] + }, + "/docs/guides/productionization/deployments/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/deployments/" + ] + }, + "/docs/guides/productionization/deployments/template_repos/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/deployments/template_repos/" + ] + }, + "/docs/guides/productionization/evaluation/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/" + ] + }, + "/docs/guides/productionization/evaluation/comparison/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/comparison/" + ] + }, + "/docs/guides/productionization/evaluation/comparison/custom/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/comparison/custom/" + ] + }, + "/docs/guides/productionization/evaluation/comparison/pairwise_embedding_distance/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/comparison/pairwise_embedding_distance/" + ] + }, + "/docs/guides/productionization/evaluation/comparison/pairwise_string/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/comparison/pairwise_string/" + ] + }, + "/docs/guides/productionization/evaluation/examples/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/examples/" + ] + }, + "/docs/guides/productionization/evaluation/examples/comparisons/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/examples/comparisons/" + ] + }, + "/docs/guides/productionization/evaluation/string/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/string/" + ] + }, + "/docs/guides/productionization/evaluation/string/criteria_eval_chain/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/string/criteria_eval_chain/" + ] + }, + "/docs/guides/productionization/evaluation/string/custom/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/string/custom/" + ] + }, + "/docs/guides/productionization/evaluation/string/embedding_distance/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/string/embedding_distance/" + ] + }, + "/docs/guides/productionization/evaluation/string/exact_match/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/string/exact_match/" + ] + }, + "/docs/guides/productionization/evaluation/string/json/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/string/json/" + ] + }, + "/docs/guides/productionization/evaluation/string/regex_match/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/string/regex_match/" + ] + }, + "/docs/guides/productionization/evaluation/string/scoring_eval_chain/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/string/scoring_eval_chain/" + ] + }, + "/docs/guides/productionization/evaluation/string/string_distance/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/string/string_distance/" + ] + }, + "/docs/guides/productionization/evaluation/trajectory/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/trajectory/" + ] + }, + "/docs/guides/productionization/evaluation/trajectory/custom/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/trajectory/custom/" + ] + }, + "/docs/guides/productionization/evaluation/trajectory/trajectory_eval/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/evaluation/trajectory/trajectory_eval/" + ] + }, + "/docs/guides/productionization/fallbacks/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/fallbacks/" + ] + }, + "/docs/guides/productionization/safety/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/safety/" + ] + }, + "/docs/guides/productionization/safety/amazon_comprehend_chain/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/safety/amazon_comprehend_chain/" + ] + }, + "/docs/guides/productionization/safety/constitutional_chain/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/safety/constitutional_chain/" + ] + }, + "/docs/guides/productionization/safety/hugging_face_prompt_injection/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/safety/hugging_face_prompt_injection/" + ] + }, + "/docs/guides/productionization/safety/layerup_security/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/safety/layerup_security/" + ] + }, + "/docs/guides/productionization/safety/logical_fallacy_chain/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/safety/logical_fallacy_chain/" + ] + }, + "/docs/guides/productionization/safety/moderation/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/safety/moderation/" + ] + }, + "/docs/guides/productionization/safety/presidio_data_anonymization/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/" + ] + }, + "/docs/guides/productionization/safety/presidio_data_anonymization/multi_language/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/multi_language/" + ] + }, + "/docs/guides/productionization/safety/presidio_data_anonymization/qa_privacy_protection/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/qa_privacy_protection/" + ] + }, + "/docs/guides/productionization/safety/presidio_data_anonymization/reversible/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/reversible/" + ] + }, + "/docs/integrations/chat/ollama_functions/": { + "canonical": "/docs/integrations/chat/ollama/", + "alternative": [ + "/v0.1/docs/integrations/chat/ollama_functions/" + ] + }, + "/docs/integrations/document_loaders/notiondb/": { + "canonical": "/docs/integrations/document_loaders/notion/", + "alternative": [ + "/v0.1/docs/integrations/document_loaders/notiondb/" + ] + }, + "/docs/integrations/llms/llm_caching/": { + "canonical": "/docs/how_to/llm_caching/", + "alternative": [ + "/v0.1/docs/integrations/llms/llm_caching/" + ] + }, + "/docs/integrations/providers/vectara/vectara_summary/": { + "canonical": "/docs/integrations/providers/vectara/", + "alternative": [ + "/v0.1/docs/integrations/providers/vectara/vectara_summary/" + ] + }, + "/docs/integrations/text_embedding/nemo/": { + "canonical": "/docs/integrations/text_embedding/nvidia_ai_endpoints/", + "alternative": [ + "/v0.1/docs/integrations/text_embedding/nemo/" + ] + }, + "/docs/integrations/toolkits/": { + "canonical": "/docs/integrations/tools/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/" + ] + }, + "/docs/integrations/toolkits/ainetwork/": { + "canonical": "/docs/integrations/tools/ainetwork/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/ainetwork/" + ] + }, + "/docs/integrations/toolkits/airbyte_structured_qa/": { + "canonical": "/docs/integrations/document_loaders/airbyte/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/airbyte_structured_qa/" + ] + }, + "/docs/integrations/toolkits/amadeus/": { + "canonical": "/docs/integrations/tools/amadeus/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/amadeus/" + ] + }, + "/docs/integrations/toolkits/azure_ai_services/": { + "canonical": "/docs/integrations/tools/azure_ai_services/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/azure_ai_services/" + ] + }, + "/docs/integrations/toolkits/azure_cognitive_services/": { + "canonical": "/docs/integrations/tools/azure_cognitive_services/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/azure_cognitive_services/" + ] + }, + "/docs/integrations/toolkits/cassandra_database/": { + "canonical": "/docs/integrations/tools/cassandra_database/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/cassandra_database/" + ] + }, + "/docs/integrations/toolkits/clickup/": { + "canonical": "/docs/integrations/tools/clickup/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/clickup/" + ] + }, + "/docs/integrations/toolkits/cogniswitch/": { + "canonical": "/docs/integrations/tools/cogniswitch/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/cogniswitch/" + ] + }, + "/docs/integrations/toolkits/connery/": { + "canonical": "/docs/integrations/tools/connery/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/connery/" + ] + }, + "/docs/integrations/toolkits/csv/": { + "canonical": "/docs/integrations/document_loaders/csv/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/csv/" + ] + }, + "/docs/integrations/toolkits/document_comparison_toolkit/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/integrations/toolkits/document_comparison_toolkit/" + ] + }, + "/docs/integrations/toolkits/github/": { + "canonical": "/docs/integrations/tools/github/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/github/" + ] + }, + "/docs/integrations/toolkits/gitlab/": { + "canonical": "/docs/integrations/tools/gitlab/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/gitlab/" + ] + }, + "/docs/integrations/toolkits/gmail/": { + "canonical": "/docs/integrations/tools/gmail/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/gmail/" + ] + }, + "/docs/integrations/toolkits/jira/": { + "canonical": "/docs/integrations/tools/jira/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/jira/" + ] + }, + "/docs/integrations/toolkits/json/": { + "canonical": "/docs/integrations/tools/json/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/json/" + ] + }, + "/docs/integrations/toolkits/multion/": { + "canonical": "/docs/integrations/tools/multion/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/multion/" + ] + }, + "/docs/integrations/toolkits/nasa/": { + "canonical": "/docs/integrations/tools/nasa/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/nasa/" + ] + }, + "/docs/integrations/toolkits/office365/": { + "canonical": "/docs/integrations/tools/office365/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/office365/" + ] + }, + "/docs/integrations/toolkits/openapi_nla/": { + "canonical": "/docs/integrations/tools/openapi_nla/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/openapi_nla/" + ] + }, + "/docs/integrations/toolkits/openapi/": { + "canonical": "/docs/integrations/tools/openapi/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/openapi/" + ] + }, + "/docs/integrations/toolkits/pandas/": { + "canonical": "/docs/integrations/tools/pandas/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/pandas/" + ] + }, + "/docs/integrations/toolkits/playwright/": { + "canonical": "/docs/integrations/tools/playwright/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/playwright/" + ] + }, + "/docs/integrations/toolkits/polygon/": { + "canonical": "/docs/integrations/tools/polygon/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/polygon/" + ] + }, + "/docs/integrations/toolkits/powerbi/": { + "canonical": "/docs/integrations/tools/powerbi/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/powerbi/" + ] + }, + "/docs/integrations/toolkits/python/": { + "canonical": "/docs/integrations/tools/python/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/python/" + ] + }, + "/docs/integrations/toolkits/robocorp/": { + "canonical": "/docs/integrations/tools/robocorp/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/robocorp/" + ] + }, + "/docs/integrations/toolkits/slack/": { + "canonical": "/docs/integrations/tools/slack/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/slack/" + ] + }, + "/docs/integrations/toolkits/spark_sql/": { + "canonical": "/docs/integrations/tools/spark_sql/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/spark_sql/" + ] + }, + "/docs/integrations/toolkits/spark/": { + "canonical": "/docs/integrations/tools/spark_sql/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/spark/" + ] + }, + "/docs/integrations/toolkits/sql_database/": { + "canonical": "/docs/integrations/tools/sql_database/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/sql_database/" + ] + }, + "/docs/integrations/toolkits/steam/": { + "canonical": "/docs/integrations/tools/steam/", + "alternative": [ + "/v0.1/docs/integrations/toolkits/steam/" + ] + }, + "/docs/integrations/toolkits/xorbits/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/integrations/toolkits/xorbits/" + ] + }, + "/docs/integrations/tools/apify/": { + "canonical": "/docs/integrations/providers/apify/#utility", + "alternative": [ + "/v0.1/docs/integrations/tools/apify/" + ] + }, + "/docs/integrations/tools/search_tools/": { + "canonical": "/docs/integrations/tools/#search", + "alternative": [ + "/v0.1/docs/integrations/tools/search_tools/" + ] + }, + "/docs/langsmith/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/langsmith/" + ] + }, + "/docs/langsmith/walkthrough/": { + "canonical": "https://docs.smith.langchain.com/", + "alternative": [ + "/v0.1/docs/langsmith/walkthrough/" + ] + }, + "/docs/modules/": { + "canonical": "/docs/how_to/#components", + "alternative": [ + "/v0.1/docs/modules/" + ] + }, + "/docs/modules/agents/": { + "canonical": "/docs/how_to/#agents", + "alternative": [ + "/v0.1/docs/modules/agents/" + ] + }, + "/docs/modules/agents/agent_types/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/agent_types/" + ] + }, + "/docs/modules/agents/agent_types/json_agent/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/agent_types/json_agent/" + ] + }, + "/docs/modules/agents/agent_types/openai_assistants/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/agent_types/openai_assistants/" + ] + }, + "/docs/modules/agents/agent_types/openai_functions_agent/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/agent_types/openai_functions_agent/" + ] + }, + "/docs/modules/agents/agent_types/openai_tools/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/agent_types/openai_tools/" + ] + }, + "/docs/modules/agents/agent_types/react/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/agent_types/react/" + ] + }, + "/docs/modules/agents/agent_types/self_ask_with_search/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/agent_types/self_ask_with_search/" + ] + }, + "/docs/modules/agents/agent_types/structured_chat/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/agent_types/structured_chat/" + ] + }, + "/docs/modules/agents/agent_types/tool_calling/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/agent_types/tool_calling/" + ] + }, + "/docs/modules/agents/agent_types/xml_agent/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/agent_types/xml_agent/" + ] + }, + "/docs/modules/agents/concepts/": { + "canonical": "https://langchain-ai.github.io/langgraph/concepts/", + "alternative": [ + "/v0.1/docs/modules/agents/concepts/" + ] + }, + "/docs/modules/agents/how_to/agent_iter/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/how_to/agent_iter/" + ] + }, + "/docs/modules/agents/how_to/agent_structured/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/how_to/agent_structured/" + ] + }, + "/docs/modules/agents/how_to/custom_agent/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/how_to/custom_agent/" + ] + }, + "/docs/modules/agents/how_to/handle_parsing_errors/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/how_to/handle_parsing_errors/" + ] + }, + "/docs/modules/agents/how_to/intermediate_steps/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/how_to/intermediate_steps/" + ] + }, + "/docs/modules/agents/how_to/max_iterations/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/how_to/max_iterations/" + ] + }, + "/docs/modules/agents/how_to/max_time_limit/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/how_to/max_time_limit/" + ] + }, + "/docs/modules/agents/how_to/streaming/": { + "canonical": "/docs/how_to/migrate_agent/", + "alternative": [ + "/v0.1/docs/modules/agents/how_to/streaming/" + ] + }, + "/docs/modules/agents/quick_start/": { + "canonical": "https://langchain-ai.github.io/langgraph/", + "alternative": [ + "/v0.1/docs/modules/agents/quick_start/" + ] + }, + "/docs/modules/callbacks/": { + "canonical": "/docs/how_to/#callbacks", + "alternative": [ + "/v0.1/docs/modules/callbacks/" + ] + }, + "/docs/modules/callbacks/async_callbacks/": { + "canonical": "/docs/how_to/callbacks_async/", + "alternative": [ + "/v0.1/docs/modules/callbacks/async_callbacks/" + ] + }, + "/docs/modules/callbacks/custom_callbacks/": { + "canonical": "/docs/how_to/custom_callbacks/", + "alternative": [ + "/v0.1/docs/modules/callbacks/custom_callbacks/" + ] + }, + "/docs/modules/callbacks/filecallbackhandler/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/modules/callbacks/filecallbackhandler/" + ] + }, + "/docs/modules/callbacks/multiple_callbacks/": { + "canonical": "/docs/how_to/#callbacks", + "alternative": [ + "/v0.1/docs/modules/callbacks/multiple_callbacks/" + ] + }, + "/docs/modules/callbacks/tags/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/modules/callbacks/tags/" + ] + }, + "/docs/modules/callbacks/token_counting/": { + "canonical": "/docs/how_to/chat_token_usage_tracking/", + "alternative": [ + "/v0.1/docs/modules/callbacks/token_counting/" + ] + }, + "/docs/modules/chains/": { + "canonical": "/docs/versions/migrating_chains/", + "alternative": [ + "/v0.1/docs/modules/chains/" + ] + }, + "/docs/modules/composition/": { + "canonical": "https://langchain-ai.github.io/langgraph/concepts/", + "alternative": [ + "/v0.1/docs/modules/composition/" + ] + }, + "/docs/modules/data_connection/": { + "canonical": "/docs/tutorials/rag/", + "alternative": [ + "/v0.1/docs/modules/data_connection/" + ] + }, + "/docs/modules/data_connection/document_loaders/": { + "canonical": "/docs/how_to/#document-loaders", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_loaders/" + ] + }, + "/docs/modules/data_connection/document_loaders/csv/": { + "canonical": "/docs/integrations/document_loaders/csv/", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_loaders/csv/" + ] + }, + "/docs/modules/data_connection/document_loaders/custom/": { + "canonical": "/docs/how_to/document_loader_custom/", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_loaders/custom/" + ] + }, + "/docs/modules/data_connection/document_loaders/file_directory/": { + "canonical": "/docs/how_to/document_loader_directory/", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_loaders/file_directory/" + ] + }, + "/docs/modules/data_connection/document_loaders/html/": { + "canonical": "/docs/how_to/document_loader_html/", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_loaders/html/" + ] + }, + "/docs/modules/data_connection/document_loaders/json/": { + "canonical": "/docs/how_to/document_loader_json/", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_loaders/json/" + ] + }, + "/docs/modules/data_connection/document_loaders/markdown/": { + "canonical": "/docs/how_to/document_loader_markdown/", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_loaders/markdown/" + ] + }, + "/docs/modules/data_connection/document_loaders/office_file/": { + "canonical": "/docs/how_to/document_loader_office_file/", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_loaders/office_file/" + ] + }, + "/docs/modules/data_connection/document_loaders/pdf/": { + "canonical": "/docs/how_to/document_loader_pdf/", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_loaders/pdf/" + ] + }, + "/docs/modules/data_connection/document_transformers/": { + "canonical": "/docs/how_to/#text-splitters", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_transformers/" + ] + }, + "/docs/modules/data_connection/document_transformers/character_text_splitter/": { + "canonical": "/docs/how_to/character_text_splitter/", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_transformers/character_text_splitter/" + ] + }, + "/docs/modules/data_connection/document_transformers/code_splitter/": { + "canonical": "/docs/how_to/code_splitter/", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_transformers/code_splitter/" + ] + }, + "/docs/modules/data_connection/document_transformers/HTML_header_metadata/": { + "canonical": "/docs/how_to/HTML_header_metadata_splitter/", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_transformers/HTML_header_metadata/" + ] + }, + "/docs/modules/data_connection/document_transformers/HTML_section_aware_splitter/": { + "canonical": "/docs/how_to/HTML_section_aware_splitter/", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_transformers/HTML_section_aware_splitter/" + ] + }, + "/docs/modules/data_connection/document_transformers/markdown_header_metadata/": { + "canonical": "/docs/how_to/markdown_header_metadata_splitter/", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_transformers/markdown_header_metadata/" + ] + }, + "/docs/modules/data_connection/document_transformers/recursive_json_splitter/": { + "canonical": "/docs/how_to/recursive_json_splitter/", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_transformers/recursive_json_splitter/" + ] + }, + "/docs/modules/data_connection/document_transformers/recursive_text_splitter/": { + "canonical": "/docs/how_to/recursive_text_splitter/", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_transformers/recursive_text_splitter/" + ] + }, + "/docs/modules/data_connection/document_transformers/semantic-chunker/": { + "canonical": "/docs/how_to/semantic-chunker/", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_transformers/semantic-chunker/" + ] + }, + "/docs/modules/data_connection/document_transformers/split_by_token/": { + "canonical": "/docs/how_to/split_by_token/", + "alternative": [ + "/v0.1/docs/modules/data_connection/document_transformers/split_by_token/" + ] + }, + "/docs/modules/data_connection/indexing/": { + "canonical": "/docs/how_to/indexing/", + "alternative": [ + "/v0.1/docs/modules/data_connection/indexing/" + ] + }, + "/docs/modules/data_connection/retrievers/": { + "canonical": "/docs/how_to/#retrievers", + "alternative": [ + "/v0.1/docs/modules/data_connection/retrievers/" + ] + }, + "/docs/modules/data_connection/retrievers/contextual_compression/": { + "canonical": "/docs/how_to/contextual_compression/", + "alternative": [ + "/v0.1/docs/modules/data_connection/retrievers/contextual_compression/" + ] + }, + "/docs/modules/data_connection/retrievers/custom_retriever/": { + "canonical": "/docs/how_to/custom_retriever/", + "alternative": [ + "/v0.1/docs/modules/data_connection/retrievers/custom_retriever/" + ] + }, + "/docs/modules/data_connection/retrievers/ensemble/": { + "canonical": "/docs/how_to/ensemble_retriever/", + "alternative": [ + "/v0.1/docs/modules/data_connection/retrievers/ensemble/" + ] + }, + "/docs/modules/data_connection/retrievers/long_context_reorder/": { + "canonical": "/docs/how_to/long_context_reorder/", + "alternative": [ + "/v0.1/docs/modules/data_connection/retrievers/long_context_reorder/" + ] + }, + "/docs/modules/data_connection/retrievers/multi_vector/": { + "canonical": "/docs/how_to/multi_vector/", + "alternative": [ + "/v0.1/docs/modules/data_connection/retrievers/multi_vector/" + ] + }, + "/docs/modules/data_connection/retrievers/MultiQueryRetriever/": { + "canonical": "/docs/how_to/MultiQueryRetriever/", + "alternative": [ + "/v0.1/docs/modules/data_connection/retrievers/MultiQueryRetriever/" + ] + }, + "/docs/modules/data_connection/retrievers/parent_document_retriever/": { + "canonical": "/docs/how_to/parent_document_retriever/", + "alternative": [ + "/v0.1/docs/modules/data_connection/retrievers/parent_document_retriever/" + ] + }, + "/docs/modules/data_connection/retrievers/self_query/": { + "canonical": "/docs/how_to/self_query/", + "alternative": [ + "/v0.1/docs/modules/data_connection/retrievers/self_query/" + ] + }, + "/docs/modules/data_connection/retrievers/time_weighted_vectorstore/": { + "canonical": "/docs/how_to/time_weighted_vectorstore/", + "alternative": [ + "/v0.1/docs/modules/data_connection/retrievers/time_weighted_vectorstore/" + ] + }, + "/docs/modules/data_connection/retrievers/vectorstore/": { + "canonical": "/docs/how_to/vectorstore_retriever/", + "alternative": [ + "/v0.1/docs/modules/data_connection/retrievers/vectorstore/" + ] + }, + "/docs/modules/data_connection/text_embedding/": { + "canonical": "/docs/how_to/embed_text/", + "alternative": [ + "/v0.1/docs/modules/data_connection/text_embedding/" + ] + }, + "/docs/modules/data_connection/text_embedding/caching_embeddings/": { + "canonical": "/docs/how_to/caching_embeddings/", + "alternative": [ + "/v0.1/docs/modules/data_connection/text_embedding/caching_embeddings/" + ] + }, + "/docs/modules/data_connection/vectorstores/": { + "canonical": "/docs/how_to/#vector-stores", + "alternative": [ + "/v0.1/docs/modules/data_connection/vectorstores/" + ] + }, + "/docs/modules/memory/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/" + ] + }, + "/docs/modules/memory/adding_memory_chain_multiple_inputs/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/adding_memory_chain_multiple_inputs/" + ] + }, + "/docs/modules/memory/adding_memory/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/adding_memory/" + ] + }, + "/docs/modules/memory/agent_with_memory_in_db/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/agent_with_memory_in_db/" + ] + }, + "/docs/modules/memory/agent_with_memory/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/agent_with_memory/" + ] + }, + "/docs/modules/memory/chat_messages/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/chat_messages/" + ] + }, + "/docs/modules/memory/conversational_customization/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/conversational_customization/" + ] + }, + "/docs/modules/memory/custom_memory/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/custom_memory/" + ] + }, + "/docs/modules/memory/multiple_memory/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/multiple_memory/" + ] + }, + "/docs/modules/memory/types/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/types/" + ] + }, + "/docs/modules/memory/types/buffer_window/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/types/buffer_window/" + ] + }, + "/docs/modules/memory/types/buffer/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/types/buffer/" + ] + }, + "/docs/modules/memory/types/entity_summary_memory/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/types/entity_summary_memory/" + ] + }, + "/docs/modules/memory/types/kg/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/types/kg/" + ] + }, + "/docs/modules/memory/types/summary_buffer/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/types/summary_buffer/" + ] + }, + "/docs/modules/memory/types/summary/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/types/summary/" + ] + }, + "/docs/modules/memory/types/token_buffer/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/types/token_buffer/" + ] + }, + "/docs/modules/memory/types/vectorstore_retriever_memory/": { + "canonical": "/docs/how_to/chatbots_memory/", + "alternative": [ + "/v0.1/docs/modules/memory/types/vectorstore_retriever_memory/" + ] + }, + "/docs/modules/model_io/": { + "canonical": "/docs/how_to/#chat-models", + "alternative": [ + "/v0.1/docs/modules/model_io/" + ] + }, + "/docs/modules/model_io/chat/": { + "canonical": "/docs/how_to/#chat-models", + "alternative": [ + "/v0.1/docs/modules/model_io/chat/" + ] + }, + "/docs/modules/model_io/chat/chat_model_caching/": { + "canonical": "/docs/how_to/chat_model_caching/", + "alternative": [ + "/v0.1/docs/modules/model_io/chat/chat_model_caching/" + ] + }, + "/docs/modules/model_io/chat/custom_chat_model/": { + "canonical": "/docs/how_to/custom_chat_model/", + "alternative": [ + "/v0.1/docs/modules/model_io/chat/custom_chat_model/" + ] + }, + "/docs/modules/model_io/chat/function_calling/": { + "canonical": "/docs/how_to/tool_calling/", + "alternative": [ + "/v0.1/docs/modules/model_io/chat/function_calling/" + ] + }, + "/docs/modules/model_io/chat/logprobs/": { + "canonical": "/docs/how_to/logprobs/", + "alternative": [ + "/v0.1/docs/modules/model_io/chat/logprobs/" + ] + }, + "/docs/modules/model_io/chat/message_types/": { + "canonical": "/docs/concepts/#messages", + "alternative": [ + "/v0.1/docs/modules/model_io/chat/message_types/" + ] + }, + "/docs/modules/model_io/chat/quick_start/": { + "canonical": "/docs/tutorials/llm_chain/", + "alternative": [ + "/v0.1/docs/modules/model_io/chat/quick_start/" + ] + }, + "/docs/modules/model_io/chat/response_metadata/": { + "canonical": "/docs/how_to/response_metadata/", + "alternative": [ + "/v0.1/docs/modules/model_io/chat/response_metadata/" + ] + }, + "/docs/modules/model_io/chat/streaming/": { + "canonical": "/docs/how_to/streaming/", + "alternative": [ + "/v0.1/docs/modules/model_io/chat/streaming/" + ] + }, + "/docs/modules/model_io/chat/structured_output/": { + "canonical": "/docs/how_to/structured_output/", + "alternative": [ + "/v0.1/docs/modules/model_io/chat/structured_output/" + ] + }, + "/docs/modules/model_io/chat/token_usage_tracking/": { + "canonical": "/docs/how_to/chat_token_usage_tracking/", + "alternative": [ + "/v0.1/docs/modules/model_io/chat/token_usage_tracking/" + ] + }, + "/docs/modules/model_io/concepts/": { + "canonical": "/docs/concepts/#chat-models", + "alternative": [ + "/v0.1/docs/modules/model_io/concepts/" + ] + }, + "/docs/modules/model_io/llms/": { + "canonical": "/docs/concepts/#llms", + "alternative": [ + "/v0.1/docs/modules/model_io/llms/" + ] + }, + "/docs/modules/model_io/llms/custom_llm/": { + "canonical": "/docs/how_to/custom_llm/", + "alternative": [ + "/v0.1/docs/modules/model_io/llms/custom_llm/" + ] + }, + "/docs/modules/model_io/llms/llm_caching/": { + "canonical": "/docs/how_to/llm_caching/", + "alternative": [ + "/v0.1/docs/modules/model_io/llms/llm_caching/" + ] + }, + "/docs/modules/model_io/llms/quick_start/": { + "canonical": "/docs/tutorials/llm_chain/", + "alternative": [ + "/v0.1/docs/modules/model_io/llms/quick_start/" + ] + }, + "/docs/modules/model_io/llms/streaming_llm/": { + "canonical": "/docs/how_to/streaming_llm/", + "alternative": [ + "/v0.1/docs/modules/model_io/llms/streaming_llm/" + ] + }, + "/docs/modules/model_io/llms/token_usage_tracking/": { + "canonical": "/docs/how_to/llm_token_usage_tracking/", + "alternative": [ + "/v0.1/docs/modules/model_io/llms/token_usage_tracking/" + ] + }, + "/docs/modules/model_io/output_parsers/": { + "canonical": "/docs/how_to/#output-parsers", + "alternative": [ + "/v0.1/docs/modules/model_io/output_parsers/" + ] + }, + "/docs/modules/model_io/output_parsers/custom/": { + "canonical": "/docs/how_to/output_parser_custom/", + "alternative": [ + "/v0.1/docs/modules/model_io/output_parsers/custom/" + ] + }, + "/docs/modules/model_io/output_parsers/quick_start/": { + "canonical": "/docs/how_to/output_parser_structured/", + "alternative": [ + "/v0.1/docs/modules/model_io/output_parsers/quick_start/" + ] + }, + "/docs/modules/model_io/output_parsers/types/csv/": { + "canonical": "/docs/how_to/output_parser_structured/", + "alternative": [ + "/v0.1/docs/modules/model_io/output_parsers/types/csv/" + ] + }, + "/docs/modules/model_io/output_parsers/types/datetime/": { + "canonical": "/docs/how_to/output_parser_structured/", + "alternative": [ + "/v0.1/docs/modules/model_io/output_parsers/types/datetime/" + ] + }, + "/docs/modules/model_io/output_parsers/types/enum/": { + "canonical": "/docs/how_to/output_parser_structured/", + "alternative": [ + "/v0.1/docs/modules/model_io/output_parsers/types/enum/" + ] + }, + "/docs/modules/model_io/output_parsers/types/json/": { + "canonical": "/docs/how_to/output_parser_json/", + "alternative": [ + "/v0.1/docs/modules/model_io/output_parsers/types/json/" + ] + }, + "/docs/modules/model_io/output_parsers/types/openai_functions/": { + "canonical": "/docs/how_to/structured_output/", + "alternative": [ + "/v0.1/docs/modules/model_io/output_parsers/types/openai_functions/" + ] + }, + "/docs/modules/model_io/output_parsers/types/openai_tools/": { + "canonical": "/docs/how_to/tool_calling/", + "alternative": [ + "/v0.1/docs/modules/model_io/output_parsers/types/openai_tools/" + ] + }, + "/docs/modules/model_io/output_parsers/types/output_fixing/": { + "canonical": "/docs/how_to/output_parser_fixing/", + "alternative": [ + "/v0.1/docs/modules/model_io/output_parsers/types/output_fixing/" + ] + }, + "/docs/modules/model_io/output_parsers/types/pandas_dataframe/": { + "canonical": "/docs/how_to/output_parser_structured/", + "alternative": [ + "/v0.1/docs/modules/model_io/output_parsers/types/pandas_dataframe/" + ] + }, + "/docs/modules/model_io/output_parsers/types/pydantic/": { + "canonical": "/docs/how_to/output_parser_structured/", + "alternative": [ + "/v0.1/docs/modules/model_io/output_parsers/types/pydantic/" + ] + }, + "/docs/modules/model_io/output_parsers/types/retry/": { + "canonical": "/docs/how_to/output_parser_retry/", + "alternative": [ + "/v0.1/docs/modules/model_io/output_parsers/types/retry/" + ] + }, + "/docs/modules/model_io/output_parsers/types/structured/": { + "canonical": "/docs/how_to/output_parser_structured/", + "alternative": [ + "/v0.1/docs/modules/model_io/output_parsers/types/structured/" + ] + }, + "/docs/modules/model_io/output_parsers/types/xml/": { + "canonical": "/docs/how_to/output_parser_xml/", + "alternative": [ + "/v0.1/docs/modules/model_io/output_parsers/types/xml/" + ] + }, + "/docs/modules/model_io/output_parsers/types/yaml/": { + "canonical": "/docs/how_to/output_parser_yaml/", + "alternative": [ + "/v0.1/docs/modules/model_io/output_parsers/types/yaml/" + ] + }, + "/docs/modules/model_io/prompts/": { + "canonical": "/docs/how_to/#prompt-templates", + "alternative": [ + "/v0.1/docs/modules/model_io/prompts/" + ] + }, + "/docs/modules/model_io/prompts/composition/": { + "canonical": "/docs/how_to/prompts_composition/", + "alternative": [ + "/v0.1/docs/modules/model_io/prompts/composition/" + ] + }, + "/docs/modules/model_io/prompts/example_selectors/": { + "canonical": "/docs/how_to/example_selectors/", + "alternative": [ + "/v0.1/docs/modules/model_io/prompts/example_selectors/" + ] + }, + "/docs/modules/model_io/prompts/example_selectors/length_based/": { + "canonical": "/docs/how_to/example_selectors_length_based/", + "alternative": [ + "/v0.1/docs/modules/model_io/prompts/example_selectors/length_based/" + ] + }, + "/docs/modules/model_io/prompts/example_selectors/mmr/": { + "canonical": "/docs/how_to/example_selectors_mmr/", + "alternative": [ + "/v0.1/docs/modules/model_io/prompts/example_selectors/mmr/" + ] + }, + "/docs/modules/model_io/prompts/example_selectors/ngram_overlap/": { + "canonical": "/docs/how_to/example_selectors_ngram/", + "alternative": [ + "/v0.1/docs/modules/model_io/prompts/example_selectors/ngram_overlap/" + ] + }, + "/docs/modules/model_io/prompts/example_selectors/similarity/": { + "canonical": "/docs/how_to/example_selectors_similarity/", + "alternative": [ + "/v0.1/docs/modules/model_io/prompts/example_selectors/similarity/" + ] + }, + "/docs/modules/model_io/prompts/few_shot_examples_chat/": { + "canonical": "/docs/how_to/few_shot_examples_chat/", + "alternative": [ + "/v0.1/docs/modules/model_io/prompts/few_shot_examples_chat/" + ] + }, + "/docs/modules/model_io/prompts/few_shot_examples/": { + "canonical": "/docs/how_to/few_shot_examples/", + "alternative": [ + "/v0.1/docs/modules/model_io/prompts/few_shot_examples/" + ] + }, + "/docs/modules/model_io/prompts/partial/": { + "canonical": "/docs/how_to/prompts_partial/", + "alternative": [ + "/v0.1/docs/modules/model_io/prompts/partial/" + ] + }, + "/docs/modules/model_io/prompts/quick_start/": { + "canonical": "/docs/how_to/#prompt-templates", + "alternative": [ + "/v0.1/docs/modules/model_io/prompts/quick_start/" + ] + }, + "/docs/modules/model_io/quick_start/": { + "canonical": "/docs/tutorials/llm_chain/", + "alternative": [ + "/v0.1/docs/modules/model_io/quick_start/" + ] + }, + "/docs/modules/tools/": { + "canonical": "/docs/how_to/#tools", + "alternative": [ + "/v0.1/docs/modules/tools/" + ] + }, + "/docs/modules/tools/custom_tools/": { + "canonical": "/docs/how_to/custom_tools/", + "alternative": [ + "/v0.1/docs/modules/tools/custom_tools/" + ] + }, + "/docs/modules/tools/toolkits/": { + "canonical": "/docs/how_to/#tools", + "alternative": [ + "/v0.1/docs/modules/tools/toolkits/" + ] + }, + "/docs/modules/tools/tools_as_openai_functions/": { + "canonical": "/docs/how_to/tool_calling/", + "alternative": [ + "/v0.1/docs/modules/tools/tools_as_openai_functions/" + ] + }, + "/docs/packages/": { + "canonical": "/docs/versions/release_policy/", + "alternative": [ + "/v0.1/docs/packages/" + ] + }, + "/docs/templates/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/" + ] + }, + "/docs/templates/anthropic-iterative-search/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/anthropic-iterative-search/" + ] + }, + "/docs/templates/basic-critique-revise/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/basic-critique-revise/" + ] + }, + "/docs/templates/bedrock-jcvd/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/bedrock-jcvd/" + ] + }, + "/docs/templates/cassandra-entomology-rag/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/cassandra-entomology-rag/" + ] + }, + "/docs/templates/cassandra-synonym-caching/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/cassandra-synonym-caching/" + ] + }, + "/docs/templates/chain-of-note-wiki/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/chain-of-note-wiki/" + ] + }, + "/docs/templates/chat-bot-feedback/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/chat-bot-feedback/" + ] + }, + "/docs/templates/cohere-librarian/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/cohere-librarian/" + ] + }, + "/docs/templates/csv-agent/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/csv-agent/" + ] + }, + "/docs/templates/elastic-query-generator/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/elastic-query-generator/" + ] + }, + "/docs/templates/extraction-anthropic-functions/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/extraction-anthropic-functions/" + ] + }, + "/docs/templates/extraction-openai-functions/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/extraction-openai-functions/" + ] + }, + "/docs/templates/gemini-functions-agent/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/gemini-functions-agent/" + ] + }, + "/docs/templates/guardrails-output-parser/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/guardrails-output-parser/" + ] + }, + "/docs/templates/hybrid-search-weaviate/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/hybrid-search-weaviate/" + ] + }, + "/docs/templates/hyde/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/hyde/" + ] + }, + "/docs/templates/intel-rag-xeon/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/intel-rag-xeon/" + ] + }, + "/docs/templates/llama2-functions/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/llama2-functions/" + ] + }, + "/docs/templates/mongo-parent-document-retrieval/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/mongo-parent-document-retrieval/" + ] + }, + "/docs/templates/neo4j-advanced-rag/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/neo4j-advanced-rag/" + ] + }, + "/docs/templates/neo4j-cypher-ft/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/neo4j-cypher-ft/" + ] + }, + "/docs/templates/neo4j-cypher-memory/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/neo4j-cypher-memory/" + ] + }, + "/docs/templates/neo4j-cypher/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/neo4j-cypher/" + ] + }, + "/docs/templates/neo4j-generation/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/neo4j-generation/" + ] + }, + "/docs/templates/neo4j-parent/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/neo4j-parent/" + ] + }, + "/docs/templates/neo4j-semantic-layer/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/neo4j-semantic-layer/" + ] + }, + "/docs/templates/neo4j-semantic-ollama/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/neo4j-semantic-ollama/" + ] + }, + "/docs/templates/neo4j-vector-memory/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/neo4j-vector-memory/" + ] + }, + "/docs/templates/nvidia-rag-canonical/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/nvidia-rag-canonical/" + ] + }, + "/docs/templates/openai-functions-agent-gmail/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/openai-functions-agent-gmail/" + ] + }, + "/docs/templates/openai-functions-agent/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/openai-functions-agent/" + ] + }, + "/docs/templates/openai-functions-tool-retrieval-agent/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/openai-functions-tool-retrieval-agent/" + ] + }, + "/docs/templates/pii-protected-chatbot/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/pii-protected-chatbot/" + ] + }, + "/docs/templates/pirate-speak-configurable/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/pirate-speak-configurable/" + ] + }, + "/docs/templates/pirate-speak/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/pirate-speak/" + ] + }, + "/docs/templates/plate-chain/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/plate-chain/" + ] + }, + "/docs/templates/propositional-retrieval/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/propositional-retrieval/" + ] + }, + "/docs/templates/python-lint/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/python-lint/" + ] + }, + "/docs/templates/rag-astradb/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-astradb/" + ] + }, + "/docs/templates/rag-aws-bedrock/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-aws-bedrock/" + ] + }, + "/docs/templates/rag-aws-kendra/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-aws-kendra/" + ] + }, + "/docs/templates/rag-azure-search/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-azure-search/" + ] + }, + "/docs/templates/rag-chroma-multi-modal-multi-vector/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-chroma-multi-modal-multi-vector/" + ] + }, + "/docs/templates/rag-chroma-multi-modal/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-chroma-multi-modal/" + ] + }, + "/docs/templates/rag-chroma-private/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-chroma-private/" + ] + }, + "/docs/templates/rag-chroma/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-chroma/" + ] + }, + "/docs/templates/rag-codellama-fireworks/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-codellama-fireworks/" + ] + }, + "/docs/templates/rag-conversation-zep/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-conversation-zep/" + ] + }, + "/docs/templates/rag-conversation/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-conversation/" + ] + }, + "/docs/templates/rag-elasticsearch/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-elasticsearch/" + ] + }, + "/docs/templates/rag-fusion/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-fusion/" + ] + }, + "/docs/templates/rag-gemini-multi-modal/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-gemini-multi-modal/" + ] + }, + "/docs/templates/rag-google-cloud-sensitive-data-protection/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-google-cloud-sensitive-data-protection/" + ] + }, + "/docs/templates/rag-google-cloud-vertexai-search/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-google-cloud-vertexai-search/" + ] + }, + "/docs/templates/rag-gpt-crawler/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-gpt-crawler/" + ] + }, + "/docs/templates/rag-jaguardb/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-jaguardb/" + ] + }, + "/docs/templates/rag-lancedb/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-lancedb/" + ] + }, + "/docs/templates/rag-lantern/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-lantern/" + ] + }, + "/docs/templates/rag-matching-engine/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-matching-engine/" + ] + }, + "/docs/templates/rag-momento-vector-index/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-momento-vector-index/" + ] + }, + "/docs/templates/rag-mongo/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-mongo/" + ] + }, + "/docs/templates/rag-multi-index-fusion/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-multi-index-fusion/" + ] + }, + "/docs/templates/rag-multi-index-router/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-multi-index-router/" + ] + }, + "/docs/templates/rag-multi-modal-local/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-multi-modal-local/" + ] + }, + "/docs/templates/rag-multi-modal-mv-local/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-multi-modal-mv-local/" + ] + }, + "/docs/templates/rag-ollama-multi-query/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-ollama-multi-query/" + ] + }, + "/docs/templates/rag-opensearch/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-opensearch/" + ] + }, + "/docs/templates/rag-pinecone-multi-query/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-pinecone-multi-query/" + ] + }, + "/docs/templates/rag-pinecone-rerank/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-pinecone-rerank/" + ] + }, + "/docs/templates/rag-pinecone/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-pinecone/" + ] + }, + "/docs/templates/rag-redis-multi-modal-multi-vector/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-redis-multi-modal-multi-vector/" + ] + }, + "/docs/templates/rag-redis/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-redis/" + ] + }, + "/docs/templates/rag-self-query/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-self-query/" + ] + }, + "/docs/templates/rag-semi-structured/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-semi-structured/" + ] + }, + "/docs/templates/rag-singlestoredb/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-singlestoredb/" + ] + }, + "/docs/templates/rag-supabase/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-supabase/" + ] + }, + "/docs/templates/rag-timescale-conversation/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-timescale-conversation/" + ] + }, + "/docs/templates/rag-timescale-hybrid-search-time/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-timescale-hybrid-search-time/" + ] + }, + "/docs/templates/rag-vectara-multiquery/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-vectara-multiquery/" + ] + }, + "/docs/templates/rag-vectara/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-vectara/" + ] + }, + "/docs/templates/rag-weaviate/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rag-weaviate/" + ] + }, + "/docs/templates/research-assistant/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/research-assistant/" + ] + }, + "/docs/templates/retrieval-agent-fireworks/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/retrieval-agent-fireworks/" + ] + }, + "/docs/templates/retrieval-agent/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/retrieval-agent/" + ] + }, + "/docs/templates/rewrite-retrieve-read/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/rewrite-retrieve-read/" + ] + }, + "/docs/templates/robocorp-action-server/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/robocorp-action-server/" + ] + }, + "/docs/templates/self-query-qdrant/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/self-query-qdrant/" + ] + }, + "/docs/templates/self-query-supabase/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/self-query-supabase/" + ] + }, + "/docs/templates/shopping-assistant/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/shopping-assistant/" + ] + }, + "/docs/templates/skeleton-of-thought/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/skeleton-of-thought/" + ] + }, + "/docs/templates/solo-performance-prompting-agent/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/solo-performance-prompting-agent/" + ] + }, + "/docs/templates/sql-llama2/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/sql-llama2/" + ] + }, + "/docs/templates/sql-llamacpp/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/sql-llamacpp/" + ] + }, + "/docs/templates/sql-ollama/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/sql-ollama/" + ] + }, + "/docs/templates/sql-pgvector/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/sql-pgvector/" + ] + }, + "/docs/templates/sql-research-assistant/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/sql-research-assistant/" + ] + }, + "/docs/templates/stepback-qa-prompting/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/stepback-qa-prompting/" + ] + }, + "/docs/templates/summarize-anthropic/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/summarize-anthropic/" + ] + }, + "/docs/templates/vertexai-chuck-norris/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/vertexai-chuck-norris/" + ] + }, + "/docs/templates/xml-agent/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/templates/xml-agent/" + ] + }, + "/docs/use_cases/": { + "canonical": "/docs/tutorials/", + "alternative": [ + "/v0.1/docs/use_cases/" + ] + }, + "/docs/use_cases/apis/": { + "canonical": null, + "alternative": [ + "/v0.1/docs/use_cases/apis/" + ] + }, + "/docs/use_cases/chatbots/": { + "canonical": "/docs/tutorials/chatbot/", + "alternative": [ + "/v0.1/docs/use_cases/chatbots/" + ] + }, + "/docs/use_cases/chatbots/memory_management/": { + "canonical": "/docs/tutorials/chatbot/", + "alternative": [ + "/v0.1/docs/use_cases/chatbots/memory_management/" + ] + }, + "/docs/use_cases/chatbots/quickstart/": { + "canonical": "/docs/tutorials/chatbot/", + "alternative": [ + "/v0.1/docs/use_cases/chatbots/quickstart/" + ] + }, + "/docs/use_cases/chatbots/retrieval/": { + "canonical": "/docs/tutorials/chatbot/", + "alternative": [ + "/v0.1/docs/use_cases/chatbots/retrieval/" + ] + }, + "/docs/use_cases/chatbots/tool_usage/": { + "canonical": "/docs/tutorials/chatbot/", + "alternative": [ + "/v0.1/docs/use_cases/chatbots/tool_usage/" + ] + }, + "/docs/use_cases/code_understanding/": { + "canonical": "https://langchain-ai.github.io/langgraph/tutorials/code_assistant/langgraph_code_assistant/", + "alternative": [ + "/v0.1/docs/use_cases/code_understanding/" + ] + }, + "/docs/use_cases/data_generation/": { + "canonical": "/docs/tutorials/data_generation/", + "alternative": [ + "/v0.1/docs/use_cases/data_generation/" + ] + }, + "/docs/use_cases/extraction/": { + "canonical": "/docs/tutorials/extraction/", + "alternative": [ + "/v0.1/docs/use_cases/extraction/" + ] + }, + "/docs/use_cases/extraction/guidelines/": { + "canonical": "/docs/tutorials/extraction/", + "alternative": [ + "/v0.1/docs/use_cases/extraction/guidelines/" + ] + }, + "/docs/use_cases/extraction/how_to/examples/": { + "canonical": "/docs/tutorials/extraction/", + "alternative": [ + "/v0.1/docs/use_cases/extraction/how_to/examples/" + ] + }, + "/docs/use_cases/extraction/how_to/handle_files/": { + "canonical": "/docs/tutorials/extraction/", + "alternative": [ + "/v0.1/docs/use_cases/extraction/how_to/handle_files/" + ] + }, + "/docs/use_cases/extraction/how_to/handle_long_text/": { + "canonical": "/docs/tutorials/extraction/", + "alternative": [ + "/v0.1/docs/use_cases/extraction/how_to/handle_long_text/" + ] + }, + "/docs/use_cases/extraction/how_to/parse/": { + "canonical": "/docs/tutorials/extraction/", + "alternative": [ + "/v0.1/docs/use_cases/extraction/how_to/parse/" + ] + }, + "/docs/use_cases/extraction/quickstart/": { + "canonical": "/docs/tutorials/extraction/", + "alternative": [ + "/v0.1/docs/use_cases/extraction/quickstart/" + ] + }, + "/docs/use_cases/graph/": { + "canonical": "/docs/tutorials/graph/", + "alternative": [ + "/v0.1/docs/use_cases/graph/" + ] + }, + "/docs/use_cases/graph/constructing/": { + "canonical": "/docs/tutorials/graph/", + "alternative": [ + "/v0.1/docs/use_cases/graph/constructing/" + ] + }, + "/docs/use_cases/graph/mapping/": { + "canonical": "/docs/tutorials/graph/", + "alternative": [ + "/v0.1/docs/use_cases/graph/mapping/" + ] + }, + "/docs/use_cases/graph/prompting/": { + "canonical": "/docs/tutorials/graph/", + "alternative": [ + "/v0.1/docs/use_cases/graph/prompting/" + ] + }, + "/docs/use_cases/graph/quickstart/": { + "canonical": "/docs/tutorials/graph/", + "alternative": [ + "/v0.1/docs/use_cases/graph/quickstart/" + ] + }, + "/docs/use_cases/graph/semantic/": { + "canonical": "/docs/tutorials/graph/", + "alternative": [ + "/v0.1/docs/use_cases/graph/semantic/" + ] + }, + "/docs/use_cases/query_analysis/": { + "canonical": "/docs/tutorials/query_analysis/", + "alternative": [ + "/v0.1/docs/use_cases/query_analysis/" + ] + }, + "/docs/use_cases/query_analysis/how_to/constructing-filters/": { + "canonical": "/docs/tutorials/query_analysis/", + "alternative": [ + "/v0.1/docs/use_cases/query_analysis/how_to/constructing-filters/" + ] + }, + "/docs/use_cases/query_analysis/how_to/few_shot/": { + "canonical": "/docs/tutorials/query_analysis/", + "alternative": [ + "/v0.1/docs/use_cases/query_analysis/how_to/few_shot/" + ] + }, + "/docs/use_cases/query_analysis/how_to/high_cardinality/": { + "canonical": "/docs/tutorials/query_analysis/", + "alternative": [ + "/v0.1/docs/use_cases/query_analysis/how_to/high_cardinality/" + ] + }, + "/docs/use_cases/query_analysis/how_to/multiple_queries/": { + "canonical": "/docs/tutorials/query_analysis/", + "alternative": [ + "/v0.1/docs/use_cases/query_analysis/how_to/multiple_queries/" + ] + }, + "/docs/use_cases/query_analysis/how_to/multiple_retrievers/": { + "canonical": "/docs/tutorials/query_analysis/", + "alternative": [ + "/v0.1/docs/use_cases/query_analysis/how_to/multiple_retrievers/" + ] + }, + "/docs/use_cases/query_analysis/how_to/no_queries/": { + "canonical": "/docs/tutorials/query_analysis/", + "alternative": [ + "/v0.1/docs/use_cases/query_analysis/how_to/no_queries/" + ] + }, + "/docs/use_cases/query_analysis/quickstart/": { + "canonical": "/docs/tutorials/query_analysis/", + "alternative": [ + "/v0.1/docs/use_cases/query_analysis/quickstart/" + ] + }, + "/docs/use_cases/query_analysis/techniques/decomposition/": { + "canonical": "/docs/tutorials/query_analysis/", + "alternative": [ + "/v0.1/docs/use_cases/query_analysis/techniques/decomposition/" + ] + }, + "/docs/use_cases/query_analysis/techniques/expansion/": { + "canonical": "/docs/tutorials/query_analysis/", + "alternative": [ + "/v0.1/docs/use_cases/query_analysis/techniques/expansion/" + ] + }, + "/docs/use_cases/query_analysis/techniques/hyde/": { + "canonical": "/docs/tutorials/query_analysis/", + "alternative": [ + "/v0.1/docs/use_cases/query_analysis/techniques/hyde/" + ] + }, + "/docs/use_cases/query_analysis/techniques/routing/": { + "canonical": "/docs/tutorials/query_analysis/", + "alternative": [ + "/v0.1/docs/use_cases/query_analysis/techniques/routing/" + ] + }, + "/docs/use_cases/query_analysis/techniques/step_back/": { + "canonical": "/docs/tutorials/query_analysis/", + "alternative": [ + "/v0.1/docs/use_cases/query_analysis/techniques/step_back/" + ] + }, + "/docs/use_cases/query_analysis/techniques/structuring/": { + "canonical": "/docs/tutorials/query_analysis/", + "alternative": [ + "/v0.1/docs/use_cases/query_analysis/techniques/structuring/" + ] + }, + "/docs/use_cases/question_answering/": { + "canonical": "/docs/tutorials/rag/", + "alternative": [ + "/v0.1/docs/use_cases/question_answering/" + ] + }, + "/docs/use_cases/question_answering/chat_history/": { + "canonical": "/docs/tutorials/rag/", + "alternative": [ + "/v0.1/docs/use_cases/question_answering/chat_history/" + ] + }, + "/docs/use_cases/question_answering/citations/": { + "canonical": "/docs/tutorials/rag/", + "alternative": [ + "/v0.1/docs/use_cases/question_answering/citations/" + ] + }, + "/docs/use_cases/question_answering/conversational_retrieval_agents/": { + "canonical": "/docs/tutorials/qa_chat_history/", + "alternative": [ + "/v0.1/docs/use_cases/question_answering/conversational_retrieval_agents/" + ] + }, + "/docs/use_cases/question_answering/hybrid/": { + "canonical": "/docs/tutorials/rag/", + "alternative": [ + "/v0.1/docs/use_cases/question_answering/hybrid/" + ] + }, + "/docs/use_cases/question_answering/local_retrieval_qa/": { + "canonical": "/docs/tutorials/rag/", + "alternative": [ + "/v0.1/docs/use_cases/question_answering/local_retrieval_qa/" + ] + }, + "/docs/use_cases/question_answering/per_user/": { + "canonical": "/docs/tutorials/rag/", + "alternative": [ + "/v0.1/docs/use_cases/question_answering/per_user/" + ] + }, + "/docs/use_cases/question_answering/quickstart/": { + "canonical": "/docs/tutorials/rag/", + "alternative": [ + "/v0.1/docs/use_cases/question_answering/quickstart/" + ] + }, + "/docs/use_cases/question_answering/sources/": { + "canonical": "/docs/tutorials/rag/", + "alternative": [ + "/v0.1/docs/use_cases/question_answering/sources/" + ] + }, + "/docs/use_cases/question_answering/streaming/": { + "canonical": "/docs/tutorials/rag/", + "alternative": [ + "/v0.1/docs/use_cases/question_answering/streaming/" + ] + }, + "/docs/use_cases/sql/": { + "canonical": "/docs/tutorials/sql_qa/", + "alternative": [ + "/v0.1/docs/use_cases/sql/" + ] + }, + "/docs/use_cases/sql/agents/": { + "canonical": "/docs/tutorials/sql_qa/", + "alternative": [ + "/v0.1/docs/use_cases/sql/agents/" + ] + }, + "/docs/use_cases/sql/csv/": { + "canonical": "/docs/tutorials/sql_qa/", + "alternative": [ + "/v0.1/docs/use_cases/sql/csv/" + ] + }, + "/docs/use_cases/sql/large_db/": { + "canonical": "/docs/tutorials/sql_qa/", + "alternative": [ + "/v0.1/docs/use_cases/sql/large_db/" + ] + }, + "/docs/use_cases/sql/prompting/": { + "canonical": "/docs/tutorials/sql_qa/", + "alternative": [ + "/v0.1/docs/use_cases/sql/prompting/" + ] + }, + "/docs/use_cases/sql/query_checking/": { + "canonical": "/docs/tutorials/sql_qa/", + "alternative": [ + "/v0.1/docs/use_cases/sql/query_checking/" + ] + }, + "/docs/use_cases/sql/quickstart/": { + "canonical": "/docs/tutorials/sql_qa/", + "alternative": [ + "/v0.1/docs/use_cases/sql/quickstart/" + ] + }, + "/docs/use_cases/summarization/": { + "canonical": "/docs/tutorials/summarization/", + "alternative": [ + "/v0.1/docs/use_cases/summarization/" + ] + }, + "/docs/use_cases/tagging/": { + "canonical": "/docs/tutorials/classification/", + "alternative": [ + "/v0.1/docs/use_cases/tagging/" + ] + }, + "/docs/use_cases/tool_use/": { + "canonical": "/docs/tutorials/agents/", + "alternative": [ + "/v0.1/docs/use_cases/tool_use/" + ] + }, + "/docs/use_cases/tool_use/agents/": { + "canonical": "/docs/tutorials/agents/", + "alternative": [ + "/v0.1/docs/use_cases/tool_use/agents/" + ] + }, + "/docs/use_cases/tool_use/human_in_the_loop/": { + "canonical": "/docs/tutorials/agents/", + "alternative": [ + "/v0.1/docs/use_cases/tool_use/human_in_the_loop/" + ] + }, + "/docs/use_cases/tool_use/multiple_tools/": { + "canonical": "/docs/tutorials/agents/", + "alternative": [ + "/v0.1/docs/use_cases/tool_use/multiple_tools/" + ] + }, + "/docs/use_cases/tool_use/parallel/": { + "canonical": "/docs/tutorials/agents/", + "alternative": [ + "/v0.1/docs/use_cases/tool_use/parallel/" + ] + }, + "/docs/use_cases/tool_use/prompting/": { + "canonical": "/docs/tutorials/agents/", + "alternative": [ + "/v0.1/docs/use_cases/tool_use/prompting/" + ] + }, + "/docs/use_cases/tool_use/quickstart/": { + "canonical": "/docs/tutorials/agents/", + "alternative": [ + "/v0.1/docs/use_cases/tool_use/quickstart/" + ] + }, + "/docs/use_cases/tool_use/tool_error_handling/": { + "canonical": "/docs/tutorials/agents/", + "alternative": [ + "/v0.1/docs/use_cases/tool_use/tool_error_handling/" + ] + }, + "/docs/use_cases/web_scraping/": { + "canonical": "https://langchain-ai.github.io/langgraph/tutorials/web-navigation/web_voyager/", + "alternative": [ + "/v0.1/docs/use_cases/web_scraping/" + ] + } +} \ No newline at end of file diff --git a/docs/src/theme/removed_pages_v01.json b/docs/src/theme/removed_pages_v01.json deleted file mode 100644 index 7624565c971..00000000000 --- a/docs/src/theme/removed_pages_v01.json +++ /dev/null @@ -1,2474 +0,0 @@ -{ - "/docs/changelog/core/": { - "canonical": "https://github.com/langchain-ai/langchain/releases?q=tag:%22langchain-core%3D%3D0%22&expanded=true", - "alternative": [ - "/v0.1/docs/changelog/core/" - ] - }, - "/docs/changelog/langchain/": { - "canonical": "https://github.com/langchain-ai/langchain/releases?q=tag:%22langchain%3D%3D0%22&expanded=true", - "alternative": [ - "/v0.1/docs/changelog/langchain/" - ] - }, - "/docs/contributing/documentation/technical_logistics/": { - "canonical": "/docs/contributing/documentation/", - "alternative": [ - "/v0.1/docs/contributing/documentation/technical_logistics/" - ] - }, - "/docs/cookbook/": { - "canonical": "/docs/tutorials/", - "alternative": [ - "/v0.1/docs/cookbook/" - ] - }, - "/docs/expression_language/": { - "canonical": "/docs/how_to/#langchain-expression-language-lcel", - "alternative": [ - "/v0.1/docs/expression_language/" - ] - }, - "/docs/expression_language/cookbook/code_writing/": { - "canonical": "https://langchain-ai.github.io/langgraph/tutorials/code_assistant/langgraph_code_assistant/", - "alternative": [ - "/v0.1/docs/expression_language/cookbook/code_writing/" - ] - }, - "/docs/expression_language/cookbook/multiple_chains/": { - "canonical": "/docs/how_to/parallel/", - "alternative": [ - "/v0.1/docs/expression_language/cookbook/multiple_chains/" - ] - }, - "/docs/expression_language/cookbook/prompt_llm_parser/": { - "canonical": "/docs/tutorials/llm_chain/", - "alternative": [ - "/v0.1/docs/expression_language/cookbook/prompt_llm_parser/" - ] - }, - "/docs/expression_language/cookbook/prompt_size/": { - "canonical": "/docs/how_to/trim_messages/", - "alternative": [ - "/v0.1/docs/expression_language/cookbook/prompt_size/" - ] - }, - "/docs/expression_language/get_started/": { - "canonical": "/docs/how_to/sequence/", - "alternative": [ - "/v0.1/docs/expression_language/get_started/" - ] - }, - "/docs/expression_language/how_to/decorator/": { - "canonical": "/docs/how_to/functions/#the-convenience-chain-decorator", - "alternative": [ - "/v0.1/docs/expression_language/how_to/decorator/" - ] - }, - "/docs/expression_language/how_to/inspect/": { - "canonical": "/docs/how_to/inspect/", - "alternative": [ - "/v0.1/docs/expression_language/how_to/inspect/" - ] - }, - "/docs/expression_language/how_to/message_history/": { - "canonical": "/docs/how_to/message_history/", - "alternative": [ - "/v0.1/docs/expression_language/how_to/message_history/" - ] - }, - "/docs/expression_language/how_to/routing/": { - "canonical": "/docs/how_to/routing/", - "alternative": [ - "/v0.1/docs/expression_language/how_to/routing/" - ] - }, - "/docs/expression_language/interface/": { - "canonical": "/docs/how_to/lcel_cheatsheet/", - "alternative": [ - "/v0.1/docs/expression_language/interface/" - ] - }, - "/docs/expression_language/primitives/": { - "canonical": "/docs/how_to/#langchain-expression-language-lcel", - "alternative": [ - "/v0.1/docs/expression_language/primitives/" - ] - }, - "/docs/expression_language/primitives/assign/": { - "canonical": "/docs/how_to/assign/", - "alternative": [ - "/v0.1/docs/expression_language/primitives/assign/" - ] - }, - "/docs/expression_language/primitives/binding/": { - "canonical": "/docs/how_to/binding/", - "alternative": [ - "/v0.1/docs/expression_language/primitives/binding/" - ] - }, - "/docs/expression_language/primitives/configure/": { - "canonical": "/docs/how_to/configure/", - "alternative": [ - "/v0.1/docs/expression_language/primitives/configure/" - ] - }, - "/docs/expression_language/primitives/functions/": { - "canonical": "/docs/how_to/functions/", - "alternative": [ - "/v0.1/docs/expression_language/primitives/functions/" - ] - }, - "/docs/expression_language/primitives/parallel/": { - "canonical": "/docs/how_to/parallel/", - "alternative": [ - "/v0.1/docs/expression_language/primitives/parallel/" - ] - }, - "/docs/expression_language/primitives/passthrough/": { - "canonical": "/docs/how_to/passthrough/", - "alternative": [ - "/v0.1/docs/expression_language/primitives/passthrough/" - ] - }, - "/docs/expression_language/primitives/sequence/": { - "canonical": "/docs/how_to/sequence/", - "alternative": [ - "/v0.1/docs/expression_language/primitives/sequence/" - ] - }, - "/docs/expression_language/streaming/": { - "canonical": "/docs/how_to/streaming/", - "alternative": [ - "/v0.1/docs/expression_language/streaming/" - ] - }, - "/docs/expression_language/why/": { - "canonical": "/docs/concepts/#langchain-expression-language-lcel", - "alternative": [ - "/v0.1/docs/expression_language/why/" - ] - }, - "/docs/get_started/installation/": { - "canonical": "/docs/tutorials/", - "alternative": [ - "/v0.1/docs/get_started/installation/" - ] - }, - "/docs/get_started/introduction/": { - "canonical": "/docs/tutorials/", - "alternative": [ - "/v0.1/docs/get_started/introduction/" - ] - }, - "/docs/get_started/quickstart/": { - "canonical": "/docs/tutorials/", - "alternative": [ - "/v0.1/docs/get_started/quickstart/" - ] - }, - "/docs/guides/": { - "canonical": "/docs/how_to/", - "alternative": [ - "/v0.1/docs/guides/" - ] - }, - "/docs/guides/development/": { - "canonical": "/docs/how_to/debugging/", - "alternative": [ - "/v0.1/docs/guides/development/" - ] - }, - "/docs/guides/development/debugging/": { - "canonical": "/docs/how_to/debugging/", - "alternative": [ - "/v0.1/docs/guides/development/debugging/" - ] - }, - "/docs/guides/development/extending_langchain/": { - "canonical": "/docs/how_to/#custom", - "alternative": [ - "/v0.1/docs/guides/development/extending_langchain/" - ] - }, - "/docs/guides/development/local_llms/": { - "canonical": "/docs/how_to/local_llms/", - "alternative": [ - "/v0.1/docs/guides/development/local_llms/" - ] - }, - "/docs/guides/development/pydantic_compatibility/": { - "canonical": "/docs/how_to/pydantic_compatibility/", - "alternative": [ - "/v0.1/docs/guides/development/pydantic_compatibility/" - ] - }, - "/docs/guides/productionization/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/" - ] - }, - "/docs/guides/productionization/deployments/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/deployments/" - ] - }, - "/docs/guides/productionization/deployments/template_repos/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/deployments/template_repos/" - ] - }, - "/docs/guides/productionization/evaluation/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/" - ] - }, - "/docs/guides/productionization/evaluation/comparison/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/comparison/" - ] - }, - "/docs/guides/productionization/evaluation/comparison/custom/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/comparison/custom/" - ] - }, - "/docs/guides/productionization/evaluation/comparison/pairwise_embedding_distance/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/comparison/pairwise_embedding_distance/" - ] - }, - "/docs/guides/productionization/evaluation/comparison/pairwise_string/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/comparison/pairwise_string/" - ] - }, - "/docs/guides/productionization/evaluation/examples/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/examples/" - ] - }, - "/docs/guides/productionization/evaluation/examples/comparisons/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/examples/comparisons/" - ] - }, - "/docs/guides/productionization/evaluation/string/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/string/" - ] - }, - "/docs/guides/productionization/evaluation/string/criteria_eval_chain/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/string/criteria_eval_chain/" - ] - }, - "/docs/guides/productionization/evaluation/string/custom/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/string/custom/" - ] - }, - "/docs/guides/productionization/evaluation/string/embedding_distance/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/string/embedding_distance/" - ] - }, - "/docs/guides/productionization/evaluation/string/exact_match/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/string/exact_match/" - ] - }, - "/docs/guides/productionization/evaluation/string/json/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/string/json/" - ] - }, - "/docs/guides/productionization/evaluation/string/regex_match/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/string/regex_match/" - ] - }, - "/docs/guides/productionization/evaluation/string/scoring_eval_chain/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/string/scoring_eval_chain/" - ] - }, - "/docs/guides/productionization/evaluation/string/string_distance/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/string/string_distance/" - ] - }, - "/docs/guides/productionization/evaluation/trajectory/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/trajectory/" - ] - }, - "/docs/guides/productionization/evaluation/trajectory/custom/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/trajectory/custom/" - ] - }, - "/docs/guides/productionization/evaluation/trajectory/trajectory_eval/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/evaluation/trajectory/trajectory_eval/" - ] - }, - "/docs/guides/productionization/fallbacks/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/fallbacks/" - ] - }, - "/docs/guides/productionization/safety/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/safety/" - ] - }, - "/docs/guides/productionization/safety/amazon_comprehend_chain/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/safety/amazon_comprehend_chain/" - ] - }, - "/docs/guides/productionization/safety/constitutional_chain/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/safety/constitutional_chain/" - ] - }, - "/docs/guides/productionization/safety/hugging_face_prompt_injection/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/safety/hugging_face_prompt_injection/" - ] - }, - "/docs/guides/productionization/safety/layerup_security/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/safety/layerup_security/" - ] - }, - "/docs/guides/productionization/safety/logical_fallacy_chain/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/safety/logical_fallacy_chain/" - ] - }, - "/docs/guides/productionization/safety/moderation/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/safety/moderation/" - ] - }, - "/docs/guides/productionization/safety/presidio_data_anonymization/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/" - ] - }, - "/docs/guides/productionization/safety/presidio_data_anonymization/multi_language/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/multi_language/" - ] - }, - "/docs/guides/productionization/safety/presidio_data_anonymization/qa_privacy_protection/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/qa_privacy_protection/" - ] - }, - "/docs/guides/productionization/safety/presidio_data_anonymization/reversible/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/reversible/" - ] - }, - "/docs/integrations/chat/ollama_functions/": { - "canonical": "/docs/integrations/chat/ollama/", - "alternative": [ - "/v0.1/docs/integrations/chat/ollama_functions/" - ] - }, - "/docs/integrations/document_loaders/notiondb/": { - "canonical": "/docs/integrations/document_loaders/notion/", - "alternative": [ - "/v0.1/docs/integrations/document_loaders/notiondb/" - ] - }, - "/docs/integrations/llms/llm_caching/": { - "canonical": "/docs/how_to/llm_caching/", - "alternative": [ - "/v0.1/docs/integrations/llms/llm_caching/" - ] - }, - "/docs/integrations/providers/vectara/vectara_summary/": { - "canonical": "/docs/integrations/providers/vectara/", - "alternative": [ - "/v0.1/docs/integrations/providers/vectara/vectara_summary/" - ] - }, - "/docs/integrations/text_embedding/nemo/": { - "canonical": "/docs/integrations/text_embedding/nvidia_ai_endpoints/", - "alternative": [ - "/v0.1/docs/integrations/text_embedding/nemo/" - ] - }, - "/docs/integrations/toolkits/": { - "canonical": "/docs/integrations/tools/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/" - ] - }, - "/docs/integrations/toolkits/ainetwork/": { - "canonical": "/docs/integrations/tools/ainetwork/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/ainetwork/" - ] - }, - "/docs/integrations/toolkits/airbyte_structured_qa/": { - "canonical": "/docs/integrations/document_loaders/airbyte/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/airbyte_structured_qa/" - ] - }, - "/docs/integrations/toolkits/amadeus/": { - "canonical": "/docs/integrations/tools/amadeus/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/amadeus/" - ] - }, - "/docs/integrations/toolkits/azure_ai_services/": { - "canonical": "/docs/integrations/tools/azure_ai_services/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/azure_ai_services/" - ] - }, - "/docs/integrations/toolkits/azure_cognitive_services/": { - "canonical": "/docs/integrations/tools/azure_cognitive_services/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/azure_cognitive_services/" - ] - }, - "/docs/integrations/toolkits/cassandra_database/": { - "canonical": "/docs/integrations/tools/cassandra_database/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/cassandra_database/" - ] - }, - "/docs/integrations/toolkits/clickup/": { - "canonical": "/docs/integrations/tools/clickup/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/clickup/" - ] - }, - "/docs/integrations/toolkits/cogniswitch/": { - "canonical": "/docs/integrations/tools/cogniswitch/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/cogniswitch/" - ] - }, - "/docs/integrations/toolkits/connery/": { - "canonical": "/docs/integrations/tools/connery/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/connery/" - ] - }, - "/docs/integrations/toolkits/csv/": { - "canonical": "/docs/integrations/document_loaders/csv/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/csv/" - ] - }, - "/docs/integrations/toolkits/document_comparison_toolkit/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/integrations/toolkits/document_comparison_toolkit/" - ] - }, - "/docs/integrations/toolkits/github/": { - "canonical": "/docs/integrations/tools/github/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/github/" - ] - }, - "/docs/integrations/toolkits/gitlab/": { - "canonical": "/docs/integrations/tools/gitlab/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/gitlab/" - ] - }, - "/docs/integrations/toolkits/gmail/": { - "canonical": "/docs/integrations/tools/gmail/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/gmail/" - ] - }, - "/docs/integrations/toolkits/jira/": { - "canonical": "/docs/integrations/tools/jira/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/jira/" - ] - }, - "/docs/integrations/toolkits/json/": { - "canonical": "/docs/integrations/tools/json/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/json/" - ] - }, - "/docs/integrations/toolkits/multion/": { - "canonical": "/docs/integrations/tools/multion/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/multion/" - ] - }, - "/docs/integrations/toolkits/nasa/": { - "canonical": "/docs/integrations/tools/nasa/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/nasa/" - ] - }, - "/docs/integrations/toolkits/office365/": { - "canonical": "/docs/integrations/tools/office365/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/office365/" - ] - }, - "/docs/integrations/toolkits/openapi_nla/": { - "canonical": "/docs/integrations/tools/openapi_nla/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/openapi_nla/" - ] - }, - "/docs/integrations/toolkits/openapi/": { - "canonical": "/docs/integrations/tools/openapi/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/openapi/" - ] - }, - "/docs/integrations/toolkits/pandas/": { - "canonical": "/docs/integrations/tools/pandas/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/pandas/" - ] - }, - "/docs/integrations/toolkits/playwright/": { - "canonical": "/docs/integrations/tools/playwright/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/playwright/" - ] - }, - "/docs/integrations/toolkits/polygon/": { - "canonical": "/docs/integrations/tools/polygon/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/polygon/" - ] - }, - "/docs/integrations/toolkits/powerbi/": { - "canonical": "/docs/integrations/tools/powerbi/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/powerbi/" - ] - }, - "/docs/integrations/toolkits/python/": { - "canonical": "/docs/integrations/tools/python/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/python/" - ] - }, - "/docs/integrations/toolkits/robocorp/": { - "canonical": "/docs/integrations/tools/robocorp/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/robocorp/" - ] - }, - "/docs/integrations/toolkits/slack/": { - "canonical": "/docs/integrations/tools/slack/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/slack/" - ] - }, - "/docs/integrations/toolkits/spark_sql/": { - "canonical": "/docs/integrations/tools/spark_sql/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/spark_sql/" - ] - }, - "/docs/integrations/toolkits/spark/": { - "canonical": "/docs/integrations/tools/spark_sql/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/spark/" - ] - }, - "/docs/integrations/toolkits/sql_database/": { - "canonical": "/docs/integrations/tools/sql_database/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/sql_database/" - ] - }, - "/docs/integrations/toolkits/steam/": { - "canonical": "/docs/integrations/tools/steam/", - "alternative": [ - "/v0.1/docs/integrations/toolkits/steam/" - ] - }, - "/docs/integrations/toolkits/xorbits/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/integrations/toolkits/xorbits/" - ] - }, - "/docs/integrations/tools/apify/": { - "canonical": "/docs/integrations/providers/apify/#utility", - "alternative": [ - "/v0.1/docs/integrations/tools/apify/" - ] - }, - "/docs/integrations/tools/search_tools/": { - "canonical": "/docs/integrations/tools/#search", - "alternative": [ - "/v0.1/docs/integrations/tools/search_tools/" - ] - }, - "/docs/langsmith/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/langsmith/" - ] - }, - "/docs/langsmith/walkthrough/": { - "canonical": "https://docs.smith.langchain.com/", - "alternative": [ - "/v0.1/docs/langsmith/walkthrough/" - ] - }, - "/docs/modules/": { - "canonical": "/docs/how_to/#components", - "alternative": [ - "/v0.1/docs/modules/" - ] - }, - "/docs/modules/agents/": { - "canonical": "/docs/how_to/#agents", - "alternative": [ - "/v0.1/docs/modules/agents/" - ] - }, - "/docs/modules/agents/agent_types/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/agent_types/" - ] - }, - "/docs/modules/agents/agent_types/json_agent/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/agent_types/json_agent/" - ] - }, - "/docs/modules/agents/agent_types/openai_assistants/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/agent_types/openai_assistants/" - ] - }, - "/docs/modules/agents/agent_types/openai_functions_agent/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/agent_types/openai_functions_agent/" - ] - }, - "/docs/modules/agents/agent_types/openai_tools/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/agent_types/openai_tools/" - ] - }, - "/docs/modules/agents/agent_types/react/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/agent_types/react/" - ] - }, - "/docs/modules/agents/agent_types/self_ask_with_search/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/agent_types/self_ask_with_search/" - ] - }, - "/docs/modules/agents/agent_types/structured_chat/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/agent_types/structured_chat/" - ] - }, - "/docs/modules/agents/agent_types/tool_calling/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/agent_types/tool_calling/" - ] - }, - "/docs/modules/agents/agent_types/xml_agent/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/agent_types/xml_agent/" - ] - }, - "/docs/modules/agents/concepts/": { - "canonical": "https://langchain-ai.github.io/langgraph/concepts/", - "alternative": [ - "/v0.1/docs/modules/agents/concepts/" - ] - }, - "/docs/modules/agents/how_to/agent_iter/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/how_to/agent_iter/" - ] - }, - "/docs/modules/agents/how_to/agent_structured/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/how_to/agent_structured/" - ] - }, - "/docs/modules/agents/how_to/custom_agent/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/how_to/custom_agent/" - ] - }, - "/docs/modules/agents/how_to/handle_parsing_errors/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/how_to/handle_parsing_errors/" - ] - }, - "/docs/modules/agents/how_to/intermediate_steps/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/how_to/intermediate_steps/" - ] - }, - "/docs/modules/agents/how_to/max_iterations/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/how_to/max_iterations/" - ] - }, - "/docs/modules/agents/how_to/max_time_limit/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/how_to/max_time_limit/" - ] - }, - "/docs/modules/agents/how_to/streaming/": { - "canonical": "/docs/how_to/migrate_agent/", - "alternative": [ - "/v0.1/docs/modules/agents/how_to/streaming/" - ] - }, - "/docs/modules/agents/quick_start/": { - "canonical": "https://langchain-ai.github.io/langgraph/", - "alternative": [ - "/v0.1/docs/modules/agents/quick_start/" - ] - }, - "/docs/modules/callbacks/": { - "canonical": "/docs/how_to/#callbacks", - "alternative": [ - "/v0.1/docs/modules/callbacks/" - ] - }, - "/docs/modules/callbacks/async_callbacks/": { - "canonical": "/docs/how_to/callbacks_async/", - "alternative": [ - "/v0.1/docs/modules/callbacks/async_callbacks/" - ] - }, - "/docs/modules/callbacks/custom_callbacks/": { - "canonical": "/docs/how_to/custom_callbacks/", - "alternative": [ - "/v0.1/docs/modules/callbacks/custom_callbacks/" - ] - }, - "/docs/modules/callbacks/filecallbackhandler/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/modules/callbacks/filecallbackhandler/" - ] - }, - "/docs/modules/callbacks/multiple_callbacks/": { - "canonical": "/docs/how_to/#callbacks", - "alternative": [ - "/v0.1/docs/modules/callbacks/multiple_callbacks/" - ] - }, - "/docs/modules/callbacks/tags/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/modules/callbacks/tags/" - ] - }, - "/docs/modules/callbacks/token_counting/": { - "canonical": "/docs/how_to/chat_token_usage_tracking/", - "alternative": [ - "/v0.1/docs/modules/callbacks/token_counting/" - ] - }, - "/docs/modules/chains/": { - "canonical": "/docs/versions/migrating_chains/", - "alternative": [ - "/v0.1/docs/modules/chains/" - ] - }, - "/docs/modules/composition/": { - "canonical": "https://langchain-ai.github.io/langgraph/concepts/", - "alternative": [ - "/v0.1/docs/modules/composition/" - ] - }, - "/docs/modules/data_connection/": { - "canonical": "/docs/tutorials/rag/", - "alternative": [ - "/v0.1/docs/modules/data_connection/" - ] - }, - "/docs/modules/data_connection/document_loaders/": { - "canonical": "/docs/how_to/#document-loaders", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_loaders/" - ] - }, - "/docs/modules/data_connection/document_loaders/csv/": { - "canonical": "/docs/integrations/document_loaders/csv/", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_loaders/csv/" - ] - }, - "/docs/modules/data_connection/document_loaders/custom/": { - "canonical": "/docs/how_to/document_loader_custom/", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_loaders/custom/" - ] - }, - "/docs/modules/data_connection/document_loaders/file_directory/": { - "canonical": "/docs/how_to/document_loader_directory/", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_loaders/file_directory/" - ] - }, - "/docs/modules/data_connection/document_loaders/html/": { - "canonical": "/docs/how_to/document_loader_html/", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_loaders/html/" - ] - }, - "/docs/modules/data_connection/document_loaders/json/": { - "canonical": "/docs/how_to/document_loader_json/", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_loaders/json/" - ] - }, - "/docs/modules/data_connection/document_loaders/markdown/": { - "canonical": "/docs/how_to/document_loader_markdown/", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_loaders/markdown/" - ] - }, - "/docs/modules/data_connection/document_loaders/office_file/": { - "canonical": "/docs/how_to/document_loader_office_file/", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_loaders/office_file/" - ] - }, - "/docs/modules/data_connection/document_loaders/pdf/": { - "canonical": "/docs/how_to/document_loader_pdf/", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_loaders/pdf/" - ] - }, - "/docs/modules/data_connection/document_transformers/": { - "canonical": "/docs/how_to/#text-splitters", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_transformers/" - ] - }, - "/docs/modules/data_connection/document_transformers/character_text_splitter/": { - "canonical": "/docs/how_to/character_text_splitter/", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_transformers/character_text_splitter/" - ] - }, - "/docs/modules/data_connection/document_transformers/code_splitter/": { - "canonical": "/docs/how_to/code_splitter/", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_transformers/code_splitter/" - ] - }, - "/docs/modules/data_connection/document_transformers/HTML_header_metadata/": { - "canonical": "/docs/how_to/HTML_header_metadata_splitter/", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_transformers/HTML_header_metadata/" - ] - }, - "/docs/modules/data_connection/document_transformers/HTML_section_aware_splitter/": { - "canonical": "/docs/how_to/HTML_section_aware_splitter/", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_transformers/HTML_section_aware_splitter/" - ] - }, - "/docs/modules/data_connection/document_transformers/markdown_header_metadata/": { - "canonical": "/docs/how_to/markdown_header_metadata_splitter/", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_transformers/markdown_header_metadata/" - ] - }, - "/docs/modules/data_connection/document_transformers/recursive_json_splitter/": { - "canonical": "/docs/how_to/recursive_json_splitter/", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_transformers/recursive_json_splitter/" - ] - }, - "/docs/modules/data_connection/document_transformers/recursive_text_splitter/": { - "canonical": "/docs/how_to/recursive_text_splitter/", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_transformers/recursive_text_splitter/" - ] - }, - "/docs/modules/data_connection/document_transformers/semantic-chunker/": { - "canonical": "/docs/how_to/semantic-chunker/", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_transformers/semantic-chunker/" - ] - }, - "/docs/modules/data_connection/document_transformers/split_by_token/": { - "canonical": "/docs/how_to/split_by_token/", - "alternative": [ - "/v0.1/docs/modules/data_connection/document_transformers/split_by_token/" - ] - }, - "/docs/modules/data_connection/indexing/": { - "canonical": "/docs/how_to/indexing/", - "alternative": [ - "/v0.1/docs/modules/data_connection/indexing/" - ] - }, - "/docs/modules/data_connection/retrievers/": { - "canonical": "/docs/how_to/#retrievers", - "alternative": [ - "/v0.1/docs/modules/data_connection/retrievers/" - ] - }, - "/docs/modules/data_connection/retrievers/contextual_compression/": { - "canonical": "/docs/how_to/contextual_compression/", - "alternative": [ - "/v0.1/docs/modules/data_connection/retrievers/contextual_compression/" - ] - }, - "/docs/modules/data_connection/retrievers/custom_retriever/": { - "canonical": "/docs/how_to/custom_retriever/", - "alternative": [ - "/v0.1/docs/modules/data_connection/retrievers/custom_retriever/" - ] - }, - "/docs/modules/data_connection/retrievers/ensemble/": { - "canonical": "/docs/how_to/ensemble_retriever/", - "alternative": [ - "/v0.1/docs/modules/data_connection/retrievers/ensemble/" - ] - }, - "/docs/modules/data_connection/retrievers/long_context_reorder/": { - "canonical": "/docs/how_to/long_context_reorder/", - "alternative": [ - "/v0.1/docs/modules/data_connection/retrievers/long_context_reorder/" - ] - }, - "/docs/modules/data_connection/retrievers/multi_vector/": { - "canonical": "/docs/how_to/multi_vector/", - "alternative": [ - "/v0.1/docs/modules/data_connection/retrievers/multi_vector/" - ] - }, - "/docs/modules/data_connection/retrievers/MultiQueryRetriever/": { - "canonical": "/docs/how_to/MultiQueryRetriever/", - "alternative": [ - "/v0.1/docs/modules/data_connection/retrievers/MultiQueryRetriever/" - ] - }, - "/docs/modules/data_connection/retrievers/parent_document_retriever/": { - "canonical": "/docs/how_to/parent_document_retriever/", - "alternative": [ - "/v0.1/docs/modules/data_connection/retrievers/parent_document_retriever/" - ] - }, - "/docs/modules/data_connection/retrievers/self_query/": { - "canonical": "/docs/how_to/self_query/", - "alternative": [ - "/v0.1/docs/modules/data_connection/retrievers/self_query/" - ] - }, - "/docs/modules/data_connection/retrievers/time_weighted_vectorstore/": { - "canonical": "/docs/how_to/time_weighted_vectorstore/", - "alternative": [ - "/v0.1/docs/modules/data_connection/retrievers/time_weighted_vectorstore/" - ] - }, - "/docs/modules/data_connection/retrievers/vectorstore/": { - "canonical": "/docs/how_to/vectorstore_retriever/", - "alternative": [ - "/v0.1/docs/modules/data_connection/retrievers/vectorstore/" - ] - }, - "/docs/modules/data_connection/text_embedding/": { - "canonical": "/docs/how_to/embed_text/", - "alternative": [ - "/v0.1/docs/modules/data_connection/text_embedding/" - ] - }, - "/docs/modules/data_connection/text_embedding/caching_embeddings/": { - "canonical": "/docs/how_to/caching_embeddings/", - "alternative": [ - "/v0.1/docs/modules/data_connection/text_embedding/caching_embeddings/" - ] - }, - "/docs/modules/data_connection/vectorstores/": { - "canonical": "/docs/how_to/#vector-stores", - "alternative": [ - "/v0.1/docs/modules/data_connection/vectorstores/" - ] - }, - "/docs/modules/memory/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/" - ] - }, - "/docs/modules/memory/adding_memory_chain_multiple_inputs/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/adding_memory_chain_multiple_inputs/" - ] - }, - "/docs/modules/memory/adding_memory/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/adding_memory/" - ] - }, - "/docs/modules/memory/agent_with_memory_in_db/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/agent_with_memory_in_db/" - ] - }, - "/docs/modules/memory/agent_with_memory/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/agent_with_memory/" - ] - }, - "/docs/modules/memory/chat_messages/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/chat_messages/" - ] - }, - "/docs/modules/memory/conversational_customization/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/conversational_customization/" - ] - }, - "/docs/modules/memory/custom_memory/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/custom_memory/" - ] - }, - "/docs/modules/memory/multiple_memory/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/multiple_memory/" - ] - }, - "/docs/modules/memory/types/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/types/" - ] - }, - "/docs/modules/memory/types/buffer_window/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/types/buffer_window/" - ] - }, - "/docs/modules/memory/types/buffer/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/types/buffer/" - ] - }, - "/docs/modules/memory/types/entity_summary_memory/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/types/entity_summary_memory/" - ] - }, - "/docs/modules/memory/types/kg/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/types/kg/" - ] - }, - "/docs/modules/memory/types/summary_buffer/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/types/summary_buffer/" - ] - }, - "/docs/modules/memory/types/summary/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/types/summary/" - ] - }, - "/docs/modules/memory/types/token_buffer/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/types/token_buffer/" - ] - }, - "/docs/modules/memory/types/vectorstore_retriever_memory/": { - "canonical": "/docs/how_to/chatbots_memory/", - "alternative": [ - "/v0.1/docs/modules/memory/types/vectorstore_retriever_memory/" - ] - }, - "/docs/modules/model_io/": { - "canonical": "/docs/how_to/#chat-models", - "alternative": [ - "/v0.1/docs/modules/model_io/" - ] - }, - "/docs/modules/model_io/chat/": { - "canonical": "/docs/how_to/#chat-models", - "alternative": [ - "/v0.1/docs/modules/model_io/chat/" - ] - }, - "/docs/modules/model_io/chat/chat_model_caching/": { - "canonical": "/docs/how_to/chat_model_caching/", - "alternative": [ - "/v0.1/docs/modules/model_io/chat/chat_model_caching/" - ] - }, - "/docs/modules/model_io/chat/custom_chat_model/": { - "canonical": "/docs/how_to/custom_chat_model/", - "alternative": [ - "/v0.1/docs/modules/model_io/chat/custom_chat_model/" - ] - }, - "/docs/modules/model_io/chat/function_calling/": { - "canonical": "/docs/how_to/tool_calling/", - "alternative": [ - "/v0.1/docs/modules/model_io/chat/function_calling/" - ] - }, - "/docs/modules/model_io/chat/logprobs/": { - "canonical": "/docs/how_to/logprobs/", - "alternative": [ - "/v0.1/docs/modules/model_io/chat/logprobs/" - ] - }, - "/docs/modules/model_io/chat/message_types/": { - "canonical": "/docs/concepts/#messages", - "alternative": [ - "/v0.1/docs/modules/model_io/chat/message_types/" - ] - }, - "/docs/modules/model_io/chat/quick_start/": { - "canonical": "/docs/tutorials/llm_chain/", - "alternative": [ - "/v0.1/docs/modules/model_io/chat/quick_start/" - ] - }, - "/docs/modules/model_io/chat/response_metadata/": { - "canonical": "/docs/how_to/response_metadata/", - "alternative": [ - "/v0.1/docs/modules/model_io/chat/response_metadata/" - ] - }, - "/docs/modules/model_io/chat/streaming/": { - "canonical": "/docs/how_to/streaming/", - "alternative": [ - "/v0.1/docs/modules/model_io/chat/streaming/" - ] - }, - "/docs/modules/model_io/chat/structured_output/": { - "canonical": "/docs/how_to/structured_output/", - "alternative": [ - "/v0.1/docs/modules/model_io/chat/structured_output/" - ] - }, - "/docs/modules/model_io/chat/token_usage_tracking/": { - "canonical": "/docs/how_to/chat_token_usage_tracking/", - "alternative": [ - "/v0.1/docs/modules/model_io/chat/token_usage_tracking/" - ] - }, - "/docs/modules/model_io/concepts/": { - "canonical": "/docs/concepts/#chat-models", - "alternative": [ - "/v0.1/docs/modules/model_io/concepts/" - ] - }, - "/docs/modules/model_io/llms/": { - "canonical": "/docs/concepts/#llms", - "alternative": [ - "/v0.1/docs/modules/model_io/llms/" - ] - }, - "/docs/modules/model_io/llms/custom_llm/": { - "canonical": "/docs/how_to/custom_llm/", - "alternative": [ - "/v0.1/docs/modules/model_io/llms/custom_llm/" - ] - }, - "/docs/modules/model_io/llms/llm_caching/": { - "canonical": "/docs/how_to/llm_caching/", - "alternative": [ - "/v0.1/docs/modules/model_io/llms/llm_caching/" - ] - }, - "/docs/modules/model_io/llms/quick_start/": { - "canonical": "/docs/tutorials/llm_chain/", - "alternative": [ - "/v0.1/docs/modules/model_io/llms/quick_start/" - ] - }, - "/docs/modules/model_io/llms/streaming_llm/": { - "canonical": "/docs/how_to/streaming_llm/", - "alternative": [ - "/v0.1/docs/modules/model_io/llms/streaming_llm/" - ] - }, - "/docs/modules/model_io/llms/token_usage_tracking/": { - "canonical": "/docs/how_to/llm_token_usage_tracking/", - "alternative": [ - "/v0.1/docs/modules/model_io/llms/token_usage_tracking/" - ] - }, - "/docs/modules/model_io/output_parsers/": { - "canonical": "/docs/how_to/#output-parsers", - "alternative": [ - "/v0.1/docs/modules/model_io/output_parsers/" - ] - }, - "/docs/modules/model_io/output_parsers/custom/": { - "canonical": "/docs/how_to/output_parser_custom/", - "alternative": [ - "/v0.1/docs/modules/model_io/output_parsers/custom/" - ] - }, - "/docs/modules/model_io/output_parsers/quick_start/": { - "canonical": "/docs/how_to/output_parser_structured/", - "alternative": [ - "/v0.1/docs/modules/model_io/output_parsers/quick_start/" - ] - }, - "/docs/modules/model_io/output_parsers/types/csv/": { - "canonical": "/docs/how_to/output_parser_structured/", - "alternative": [ - "/v0.1/docs/modules/model_io/output_parsers/types/csv/" - ] - }, - "/docs/modules/model_io/output_parsers/types/datetime/": { - "canonical": "/docs/how_to/output_parser_structured/", - "alternative": [ - "/v0.1/docs/modules/model_io/output_parsers/types/datetime/" - ] - }, - "/docs/modules/model_io/output_parsers/types/enum/": { - "canonical": "/docs/how_to/output_parser_structured/", - "alternative": [ - "/v0.1/docs/modules/model_io/output_parsers/types/enum/" - ] - }, - "/docs/modules/model_io/output_parsers/types/json/": { - "canonical": "/docs/how_to/output_parser_json/", - "alternative": [ - "/v0.1/docs/modules/model_io/output_parsers/types/json/" - ] - }, - "/docs/modules/model_io/output_parsers/types/openai_functions/": { - "canonical": "/docs/how_to/structured_output/", - "alternative": [ - "/v0.1/docs/modules/model_io/output_parsers/types/openai_functions/" - ] - }, - "/docs/modules/model_io/output_parsers/types/openai_tools/": { - "canonical": "/docs/how_to/tool_calling/", - "alternative": [ - "/v0.1/docs/modules/model_io/output_parsers/types/openai_tools/" - ] - }, - "/docs/modules/model_io/output_parsers/types/output_fixing/": { - "canonical": "/docs/how_to/output_parser_fixing/", - "alternative": [ - "/v0.1/docs/modules/model_io/output_parsers/types/output_fixing/" - ] - }, - "/docs/modules/model_io/output_parsers/types/pandas_dataframe/": { - "canonical": "/docs/how_to/output_parser_structured/", - "alternative": [ - "/v0.1/docs/modules/model_io/output_parsers/types/pandas_dataframe/" - ] - }, - "/docs/modules/model_io/output_parsers/types/pydantic/": { - "canonical": "/docs/how_to/output_parser_structured/", - "alternative": [ - "/v0.1/docs/modules/model_io/output_parsers/types/pydantic/" - ] - }, - "/docs/modules/model_io/output_parsers/types/retry/": { - "canonical": "/docs/how_to/output_parser_retry/", - "alternative": [ - "/v0.1/docs/modules/model_io/output_parsers/types/retry/" - ] - }, - "/docs/modules/model_io/output_parsers/types/structured/": { - "canonical": "/docs/how_to/output_parser_structured/", - "alternative": [ - "/v0.1/docs/modules/model_io/output_parsers/types/structured/" - ] - }, - "/docs/modules/model_io/output_parsers/types/xml/": { - "canonical": "/docs/how_to/output_parser_xml/", - "alternative": [ - "/v0.1/docs/modules/model_io/output_parsers/types/xml/" - ] - }, - "/docs/modules/model_io/output_parsers/types/yaml/": { - "canonical": "/docs/how_to/output_parser_yaml/", - "alternative": [ - "/v0.1/docs/modules/model_io/output_parsers/types/yaml/" - ] - }, - "/docs/modules/model_io/prompts/": { - "canonical": "/docs/how_to/#prompt-templates", - "alternative": [ - "/v0.1/docs/modules/model_io/prompts/" - ] - }, - "/docs/modules/model_io/prompts/composition/": { - "canonical": "/docs/how_to/prompts_composition/", - "alternative": [ - "/v0.1/docs/modules/model_io/prompts/composition/" - ] - }, - "/docs/modules/model_io/prompts/example_selectors/": { - "canonical": "/docs/how_to/example_selectors/", - "alternative": [ - "/v0.1/docs/modules/model_io/prompts/example_selectors/" - ] - }, - "/docs/modules/model_io/prompts/example_selectors/length_based/": { - "canonical": "/docs/how_to/example_selectors_length_based/", - "alternative": [ - "/v0.1/docs/modules/model_io/prompts/example_selectors/length_based/" - ] - }, - "/docs/modules/model_io/prompts/example_selectors/mmr/": { - "canonical": "/docs/how_to/example_selectors_mmr/", - "alternative": [ - "/v0.1/docs/modules/model_io/prompts/example_selectors/mmr/" - ] - }, - "/docs/modules/model_io/prompts/example_selectors/ngram_overlap/": { - "canonical": "/docs/how_to/example_selectors_ngram/", - "alternative": [ - "/v0.1/docs/modules/model_io/prompts/example_selectors/ngram_overlap/" - ] - }, - "/docs/modules/model_io/prompts/example_selectors/similarity/": { - "canonical": "/docs/how_to/example_selectors_similarity/", - "alternative": [ - "/v0.1/docs/modules/model_io/prompts/example_selectors/similarity/" - ] - }, - "/docs/modules/model_io/prompts/few_shot_examples_chat/": { - "canonical": "/docs/how_to/few_shot_examples_chat/", - "alternative": [ - "/v0.1/docs/modules/model_io/prompts/few_shot_examples_chat/" - ] - }, - "/docs/modules/model_io/prompts/few_shot_examples/": { - "canonical": "/docs/how_to/few_shot_examples/", - "alternative": [ - "/v0.1/docs/modules/model_io/prompts/few_shot_examples/" - ] - }, - "/docs/modules/model_io/prompts/partial/": { - "canonical": "/docs/how_to/prompts_partial/", - "alternative": [ - "/v0.1/docs/modules/model_io/prompts/partial/" - ] - }, - "/docs/modules/model_io/prompts/quick_start/": { - "canonical": "/docs/how_to/#prompt-templates", - "alternative": [ - "/v0.1/docs/modules/model_io/prompts/quick_start/" - ] - }, - "/docs/modules/model_io/quick_start/": { - "canonical": "/docs/tutorials/llm_chain/", - "alternative": [ - "/v0.1/docs/modules/model_io/quick_start/" - ] - }, - "/docs/modules/tools/": { - "canonical": "/docs/how_to/#tools", - "alternative": [ - "/v0.1/docs/modules/tools/" - ] - }, - "/docs/modules/tools/custom_tools/": { - "canonical": "/docs/how_to/custom_tools/", - "alternative": [ - "/v0.1/docs/modules/tools/custom_tools/" - ] - }, - "/docs/modules/tools/toolkits/": { - "canonical": "/docs/how_to/#tools", - "alternative": [ - "/v0.1/docs/modules/tools/toolkits/" - ] - }, - "/docs/modules/tools/tools_as_openai_functions/": { - "canonical": "/docs/how_to/tool_calling/", - "alternative": [ - "/v0.1/docs/modules/tools/tools_as_openai_functions/" - ] - }, - "/docs/packages/": { - "canonical": "/docs/versions/release_policy/", - "alternative": [ - "/v0.1/docs/packages/" - ] - }, - "/docs/templates/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/" - ] - }, - "/docs/templates/anthropic-iterative-search/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/anthropic-iterative-search/" - ] - }, - "/docs/templates/basic-critique-revise/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/basic-critique-revise/" - ] - }, - "/docs/templates/bedrock-jcvd/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/bedrock-jcvd/" - ] - }, - "/docs/templates/cassandra-entomology-rag/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/cassandra-entomology-rag/" - ] - }, - "/docs/templates/cassandra-synonym-caching/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/cassandra-synonym-caching/" - ] - }, - "/docs/templates/chain-of-note-wiki/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/chain-of-note-wiki/" - ] - }, - "/docs/templates/chat-bot-feedback/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/chat-bot-feedback/" - ] - }, - "/docs/templates/cohere-librarian/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/cohere-librarian/" - ] - }, - "/docs/templates/csv-agent/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/csv-agent/" - ] - }, - "/docs/templates/elastic-query-generator/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/elastic-query-generator/" - ] - }, - "/docs/templates/extraction-anthropic-functions/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/extraction-anthropic-functions/" - ] - }, - "/docs/templates/extraction-openai-functions/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/extraction-openai-functions/" - ] - }, - "/docs/templates/gemini-functions-agent/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/gemini-functions-agent/" - ] - }, - "/docs/templates/guardrails-output-parser/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/guardrails-output-parser/" - ] - }, - "/docs/templates/hybrid-search-weaviate/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/hybrid-search-weaviate/" - ] - }, - "/docs/templates/hyde/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/hyde/" - ] - }, - "/docs/templates/intel-rag-xeon/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/intel-rag-xeon/" - ] - }, - "/docs/templates/llama2-functions/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/llama2-functions/" - ] - }, - "/docs/templates/mongo-parent-document-retrieval/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/mongo-parent-document-retrieval/" - ] - }, - "/docs/templates/neo4j-advanced-rag/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/neo4j-advanced-rag/" - ] - }, - "/docs/templates/neo4j-cypher-ft/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/neo4j-cypher-ft/" - ] - }, - "/docs/templates/neo4j-cypher-memory/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/neo4j-cypher-memory/" - ] - }, - "/docs/templates/neo4j-cypher/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/neo4j-cypher/" - ] - }, - "/docs/templates/neo4j-generation/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/neo4j-generation/" - ] - }, - "/docs/templates/neo4j-parent/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/neo4j-parent/" - ] - }, - "/docs/templates/neo4j-semantic-layer/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/neo4j-semantic-layer/" - ] - }, - "/docs/templates/neo4j-semantic-ollama/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/neo4j-semantic-ollama/" - ] - }, - "/docs/templates/neo4j-vector-memory/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/neo4j-vector-memory/" - ] - }, - "/docs/templates/nvidia-rag-canonical/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/nvidia-rag-canonical/" - ] - }, - "/docs/templates/openai-functions-agent-gmail/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/openai-functions-agent-gmail/" - ] - }, - "/docs/templates/openai-functions-agent/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/openai-functions-agent/" - ] - }, - "/docs/templates/openai-functions-tool-retrieval-agent/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/openai-functions-tool-retrieval-agent/" - ] - }, - "/docs/templates/pii-protected-chatbot/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/pii-protected-chatbot/" - ] - }, - "/docs/templates/pirate-speak-configurable/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/pirate-speak-configurable/" - ] - }, - "/docs/templates/pirate-speak/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/pirate-speak/" - ] - }, - "/docs/templates/plate-chain/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/plate-chain/" - ] - }, - "/docs/templates/propositional-retrieval/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/propositional-retrieval/" - ] - }, - "/docs/templates/python-lint/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/python-lint/" - ] - }, - "/docs/templates/rag-astradb/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-astradb/" - ] - }, - "/docs/templates/rag-aws-bedrock/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-aws-bedrock/" - ] - }, - "/docs/templates/rag-aws-kendra/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-aws-kendra/" - ] - }, - "/docs/templates/rag-azure-search/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-azure-search/" - ] - }, - "/docs/templates/rag-chroma-multi-modal-multi-vector/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-chroma-multi-modal-multi-vector/" - ] - }, - "/docs/templates/rag-chroma-multi-modal/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-chroma-multi-modal/" - ] - }, - "/docs/templates/rag-chroma-private/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-chroma-private/" - ] - }, - "/docs/templates/rag-chroma/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-chroma/" - ] - }, - "/docs/templates/rag-codellama-fireworks/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-codellama-fireworks/" - ] - }, - "/docs/templates/rag-conversation-zep/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-conversation-zep/" - ] - }, - "/docs/templates/rag-conversation/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-conversation/" - ] - }, - "/docs/templates/rag-elasticsearch/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-elasticsearch/" - ] - }, - "/docs/templates/rag-fusion/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-fusion/" - ] - }, - "/docs/templates/rag-gemini-multi-modal/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-gemini-multi-modal/" - ] - }, - "/docs/templates/rag-google-cloud-sensitive-data-protection/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-google-cloud-sensitive-data-protection/" - ] - }, - "/docs/templates/rag-google-cloud-vertexai-search/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-google-cloud-vertexai-search/" - ] - }, - "/docs/templates/rag-gpt-crawler/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-gpt-crawler/" - ] - }, - "/docs/templates/rag-jaguardb/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-jaguardb/" - ] - }, - "/docs/templates/rag-lancedb/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-lancedb/" - ] - }, - "/docs/templates/rag-lantern/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-lantern/" - ] - }, - "/docs/templates/rag-matching-engine/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-matching-engine/" - ] - }, - "/docs/templates/rag-momento-vector-index/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-momento-vector-index/" - ] - }, - "/docs/templates/rag-mongo/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-mongo/" - ] - }, - "/docs/templates/rag-multi-index-fusion/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-multi-index-fusion/" - ] - }, - "/docs/templates/rag-multi-index-router/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-multi-index-router/" - ] - }, - "/docs/templates/rag-multi-modal-local/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-multi-modal-local/" - ] - }, - "/docs/templates/rag-multi-modal-mv-local/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-multi-modal-mv-local/" - ] - }, - "/docs/templates/rag-ollama-multi-query/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-ollama-multi-query/" - ] - }, - "/docs/templates/rag-opensearch/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-opensearch/" - ] - }, - "/docs/templates/rag-pinecone-multi-query/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-pinecone-multi-query/" - ] - }, - "/docs/templates/rag-pinecone-rerank/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-pinecone-rerank/" - ] - }, - "/docs/templates/rag-pinecone/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-pinecone/" - ] - }, - "/docs/templates/rag-redis-multi-modal-multi-vector/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-redis-multi-modal-multi-vector/" - ] - }, - "/docs/templates/rag-redis/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-redis/" - ] - }, - "/docs/templates/rag-self-query/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-self-query/" - ] - }, - "/docs/templates/rag-semi-structured/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-semi-structured/" - ] - }, - "/docs/templates/rag-singlestoredb/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-singlestoredb/" - ] - }, - "/docs/templates/rag-supabase/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-supabase/" - ] - }, - "/docs/templates/rag-timescale-conversation/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-timescale-conversation/" - ] - }, - "/docs/templates/rag-timescale-hybrid-search-time/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-timescale-hybrid-search-time/" - ] - }, - "/docs/templates/rag-vectara-multiquery/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-vectara-multiquery/" - ] - }, - "/docs/templates/rag-vectara/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-vectara/" - ] - }, - "/docs/templates/rag-weaviate/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rag-weaviate/" - ] - }, - "/docs/templates/research-assistant/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/research-assistant/" - ] - }, - "/docs/templates/retrieval-agent-fireworks/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/retrieval-agent-fireworks/" - ] - }, - "/docs/templates/retrieval-agent/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/retrieval-agent/" - ] - }, - "/docs/templates/rewrite-retrieve-read/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/rewrite-retrieve-read/" - ] - }, - "/docs/templates/robocorp-action-server/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/robocorp-action-server/" - ] - }, - "/docs/templates/self-query-qdrant/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/self-query-qdrant/" - ] - }, - "/docs/templates/self-query-supabase/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/self-query-supabase/" - ] - }, - "/docs/templates/shopping-assistant/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/shopping-assistant/" - ] - }, - "/docs/templates/skeleton-of-thought/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/skeleton-of-thought/" - ] - }, - "/docs/templates/solo-performance-prompting-agent/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/solo-performance-prompting-agent/" - ] - }, - "/docs/templates/sql-llama2/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/sql-llama2/" - ] - }, - "/docs/templates/sql-llamacpp/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/sql-llamacpp/" - ] - }, - "/docs/templates/sql-ollama/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/sql-ollama/" - ] - }, - "/docs/templates/sql-pgvector/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/sql-pgvector/" - ] - }, - "/docs/templates/sql-research-assistant/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/sql-research-assistant/" - ] - }, - "/docs/templates/stepback-qa-prompting/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/stepback-qa-prompting/" - ] - }, - "/docs/templates/summarize-anthropic/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/summarize-anthropic/" - ] - }, - "/docs/templates/vertexai-chuck-norris/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/vertexai-chuck-norris/" - ] - }, - "/docs/templates/xml-agent/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/templates/xml-agent/" - ] - }, - "/docs/use_cases/": { - "canonical": "/docs/tutorials/", - "alternative": [ - "/v0.1/docs/use_cases/" - ] - }, - "/docs/use_cases/apis/": { - "canonical": null, - "alternative": [ - "/v0.1/docs/use_cases/apis/" - ] - }, - "/docs/use_cases/chatbots/": { - "canonical": "/docs/tutorials/chatbot/", - "alternative": [ - "/v0.1/docs/use_cases/chatbots/" - ] - }, - "/docs/use_cases/chatbots/memory_management/": { - "canonical": "/docs/tutorials/chatbot/", - "alternative": [ - "/v0.1/docs/use_cases/chatbots/memory_management/" - ] - }, - "/docs/use_cases/chatbots/quickstart/": { - "canonical": "/docs/tutorials/chatbot/", - "alternative": [ - "/v0.1/docs/use_cases/chatbots/quickstart/" - ] - }, - "/docs/use_cases/chatbots/retrieval/": { - "canonical": "/docs/tutorials/chatbot/", - "alternative": [ - "/v0.1/docs/use_cases/chatbots/retrieval/" - ] - }, - "/docs/use_cases/chatbots/tool_usage/": { - "canonical": "/docs/tutorials/chatbot/", - "alternative": [ - "/v0.1/docs/use_cases/chatbots/tool_usage/" - ] - }, - "/docs/use_cases/code_understanding/": { - "canonical": "https://langchain-ai.github.io/langgraph/tutorials/code_assistant/langgraph_code_assistant/", - "alternative": [ - "/v0.1/docs/use_cases/code_understanding/" - ] - }, - "/docs/use_cases/data_generation/": { - "canonical": "/docs/tutorials/data_generation/", - "alternative": [ - "/v0.1/docs/use_cases/data_generation/" - ] - }, - "/docs/use_cases/extraction/": { - "canonical": "/docs/tutorials/extraction/", - "alternative": [ - "/v0.1/docs/use_cases/extraction/" - ] - }, - "/docs/use_cases/extraction/guidelines/": { - "canonical": "/docs/tutorials/extraction/", - "alternative": [ - "/v0.1/docs/use_cases/extraction/guidelines/" - ] - }, - "/docs/use_cases/extraction/how_to/examples/": { - "canonical": "/docs/tutorials/extraction/", - "alternative": [ - "/v0.1/docs/use_cases/extraction/how_to/examples/" - ] - }, - "/docs/use_cases/extraction/how_to/handle_files/": { - "canonical": "/docs/tutorials/extraction/", - "alternative": [ - "/v0.1/docs/use_cases/extraction/how_to/handle_files/" - ] - }, - "/docs/use_cases/extraction/how_to/handle_long_text/": { - "canonical": "/docs/tutorials/extraction/", - "alternative": [ - "/v0.1/docs/use_cases/extraction/how_to/handle_long_text/" - ] - }, - "/docs/use_cases/extraction/how_to/parse/": { - "canonical": "/docs/tutorials/extraction/", - "alternative": [ - "/v0.1/docs/use_cases/extraction/how_to/parse/" - ] - }, - "/docs/use_cases/extraction/quickstart/": { - "canonical": "/docs/tutorials/extraction/", - "alternative": [ - "/v0.1/docs/use_cases/extraction/quickstart/" - ] - }, - "/docs/use_cases/graph/": { - "canonical": "/docs/tutorials/graph/", - "alternative": [ - "/v0.1/docs/use_cases/graph/" - ] - }, - "/docs/use_cases/graph/constructing/": { - "canonical": "/docs/tutorials/graph/", - "alternative": [ - "/v0.1/docs/use_cases/graph/constructing/" - ] - }, - "/docs/use_cases/graph/mapping/": { - "canonical": "/docs/tutorials/graph/", - "alternative": [ - "/v0.1/docs/use_cases/graph/mapping/" - ] - }, - "/docs/use_cases/graph/prompting/": { - "canonical": "/docs/tutorials/graph/", - "alternative": [ - "/v0.1/docs/use_cases/graph/prompting/" - ] - }, - "/docs/use_cases/graph/quickstart/": { - "canonical": "/docs/tutorials/graph/", - "alternative": [ - "/v0.1/docs/use_cases/graph/quickstart/" - ] - }, - "/docs/use_cases/graph/semantic/": { - "canonical": "/docs/tutorials/graph/", - "alternative": [ - "/v0.1/docs/use_cases/graph/semantic/" - ] - }, - "/docs/use_cases/query_analysis/": { - "canonical": "/docs/tutorials/query_analysis/", - "alternative": [ - "/v0.1/docs/use_cases/query_analysis/" - ] - }, - "/docs/use_cases/query_analysis/how_to/constructing-filters/": { - "canonical": "/docs/tutorials/query_analysis/", - "alternative": [ - "/v0.1/docs/use_cases/query_analysis/how_to/constructing-filters/" - ] - }, - "/docs/use_cases/query_analysis/how_to/few_shot/": { - "canonical": "/docs/tutorials/query_analysis/", - "alternative": [ - "/v0.1/docs/use_cases/query_analysis/how_to/few_shot/" - ] - }, - "/docs/use_cases/query_analysis/how_to/high_cardinality/": { - "canonical": "/docs/tutorials/query_analysis/", - "alternative": [ - "/v0.1/docs/use_cases/query_analysis/how_to/high_cardinality/" - ] - }, - "/docs/use_cases/query_analysis/how_to/multiple_queries/": { - "canonical": "/docs/tutorials/query_analysis/", - "alternative": [ - "/v0.1/docs/use_cases/query_analysis/how_to/multiple_queries/" - ] - }, - "/docs/use_cases/query_analysis/how_to/multiple_retrievers/": { - "canonical": "/docs/tutorials/query_analysis/", - "alternative": [ - "/v0.1/docs/use_cases/query_analysis/how_to/multiple_retrievers/" - ] - }, - "/docs/use_cases/query_analysis/how_to/no_queries/": { - "canonical": "/docs/tutorials/query_analysis/", - "alternative": [ - "/v0.1/docs/use_cases/query_analysis/how_to/no_queries/" - ] - }, - "/docs/use_cases/query_analysis/quickstart/": { - "canonical": "/docs/tutorials/query_analysis/", - "alternative": [ - "/v0.1/docs/use_cases/query_analysis/quickstart/" - ] - }, - "/docs/use_cases/query_analysis/techniques/decomposition/": { - "canonical": "/docs/tutorials/query_analysis/", - "alternative": [ - "/v0.1/docs/use_cases/query_analysis/techniques/decomposition/" - ] - }, - "/docs/use_cases/query_analysis/techniques/expansion/": { - "canonical": "/docs/tutorials/query_analysis/", - "alternative": [ - "/v0.1/docs/use_cases/query_analysis/techniques/expansion/" - ] - }, - "/docs/use_cases/query_analysis/techniques/hyde/": { - "canonical": "/docs/tutorials/query_analysis/", - "alternative": [ - "/v0.1/docs/use_cases/query_analysis/techniques/hyde/" - ] - }, - "/docs/use_cases/query_analysis/techniques/routing/": { - "canonical": "/docs/tutorials/query_analysis/", - "alternative": [ - "/v0.1/docs/use_cases/query_analysis/techniques/routing/" - ] - }, - "/docs/use_cases/query_analysis/techniques/step_back/": { - "canonical": "/docs/tutorials/query_analysis/", - "alternative": [ - "/v0.1/docs/use_cases/query_analysis/techniques/step_back/" - ] - }, - "/docs/use_cases/query_analysis/techniques/structuring/": { - "canonical": "/docs/tutorials/query_analysis/", - "alternative": [ - "/v0.1/docs/use_cases/query_analysis/techniques/structuring/" - ] - }, - "/docs/use_cases/question_answering/": { - "canonical": "/docs/tutorials/rag/", - "alternative": [ - "/v0.1/docs/use_cases/question_answering/" - ] - }, - "/docs/use_cases/question_answering/chat_history/": { - "canonical": "/docs/tutorials/rag/", - "alternative": [ - "/v0.1/docs/use_cases/question_answering/chat_history/" - ] - }, - "/docs/use_cases/question_answering/citations/": { - "canonical": "/docs/tutorials/rag/", - "alternative": [ - "/v0.1/docs/use_cases/question_answering/citations/" - ] - }, - "/docs/use_cases/question_answering/conversational_retrieval_agents/": { - "canonical": "/docs/tutorials/qa_chat_history/", - "alternative": [ - "/v0.1/docs/use_cases/question_answering/conversational_retrieval_agents/" - ] - }, - "/docs/use_cases/question_answering/hybrid/": { - "canonical": "/docs/tutorials/rag/", - "alternative": [ - "/v0.1/docs/use_cases/question_answering/hybrid/" - ] - }, - "/docs/use_cases/question_answering/local_retrieval_qa/": { - "canonical": "/docs/tutorials/rag/", - "alternative": [ - "/v0.1/docs/use_cases/question_answering/local_retrieval_qa/" - ] - }, - "/docs/use_cases/question_answering/per_user/": { - "canonical": "/docs/tutorials/rag/", - "alternative": [ - "/v0.1/docs/use_cases/question_answering/per_user/" - ] - }, - "/docs/use_cases/question_answering/quickstart/": { - "canonical": "/docs/tutorials/rag/", - "alternative": [ - "/v0.1/docs/use_cases/question_answering/quickstart/" - ] - }, - "/docs/use_cases/question_answering/sources/": { - "canonical": "/docs/tutorials/rag/", - "alternative": [ - "/v0.1/docs/use_cases/question_answering/sources/" - ] - }, - "/docs/use_cases/question_answering/streaming/": { - "canonical": "/docs/tutorials/rag/", - "alternative": [ - "/v0.1/docs/use_cases/question_answering/streaming/" - ] - }, - "/docs/use_cases/sql/": { - "canonical": "/docs/tutorials/sql_qa/", - "alternative": [ - "/v0.1/docs/use_cases/sql/" - ] - }, - "/docs/use_cases/sql/agents/": { - "canonical": "/docs/tutorials/sql_qa/", - "alternative": [ - "/v0.1/docs/use_cases/sql/agents/" - ] - }, - "/docs/use_cases/sql/csv/": { - "canonical": "/docs/tutorials/sql_qa/", - "alternative": [ - "/v0.1/docs/use_cases/sql/csv/" - ] - }, - "/docs/use_cases/sql/large_db/": { - "canonical": "/docs/tutorials/sql_qa/", - "alternative": [ - "/v0.1/docs/use_cases/sql/large_db/" - ] - }, - "/docs/use_cases/sql/prompting/": { - "canonical": "/docs/tutorials/sql_qa/", - "alternative": [ - "/v0.1/docs/use_cases/sql/prompting/" - ] - }, - "/docs/use_cases/sql/query_checking/": { - "canonical": "/docs/tutorials/sql_qa/", - "alternative": [ - "/v0.1/docs/use_cases/sql/query_checking/" - ] - }, - "/docs/use_cases/sql/quickstart/": { - "canonical": "/docs/tutorials/sql_qa/", - "alternative": [ - "/v0.1/docs/use_cases/sql/quickstart/" - ] - }, - "/docs/use_cases/summarization/": { - "canonical": "/docs/tutorials/summarization/", - "alternative": [ - "/v0.1/docs/use_cases/summarization/" - ] - }, - "/docs/use_cases/tagging/": { - "canonical": "/docs/tutorials/classification/", - "alternative": [ - "/v0.1/docs/use_cases/tagging/" - ] - }, - "/docs/use_cases/tool_use/": { - "canonical": "/docs/tutorials/agents/", - "alternative": [ - "/v0.1/docs/use_cases/tool_use/" - ] - }, - "/docs/use_cases/tool_use/agents/": { - "canonical": "/docs/tutorials/agents/", - "alternative": [ - "/v0.1/docs/use_cases/tool_use/agents/" - ] - }, - "/docs/use_cases/tool_use/human_in_the_loop/": { - "canonical": "/docs/tutorials/agents/", - "alternative": [ - "/v0.1/docs/use_cases/tool_use/human_in_the_loop/" - ] - }, - "/docs/use_cases/tool_use/multiple_tools/": { - "canonical": "/docs/tutorials/agents/", - "alternative": [ - "/v0.1/docs/use_cases/tool_use/multiple_tools/" - ] - }, - "/docs/use_cases/tool_use/parallel/": { - "canonical": "/docs/tutorials/agents/", - "alternative": [ - "/v0.1/docs/use_cases/tool_use/parallel/" - ] - }, - "/docs/use_cases/tool_use/prompting/": { - "canonical": "/docs/tutorials/agents/", - "alternative": [ - "/v0.1/docs/use_cases/tool_use/prompting/" - ] - }, - "/docs/use_cases/tool_use/quickstart/": { - "canonical": "/docs/tutorials/agents/", - "alternative": [ - "/v0.1/docs/use_cases/tool_use/quickstart/" - ] - }, - "/docs/use_cases/tool_use/tool_error_handling/": { - "canonical": "/docs/tutorials/agents/", - "alternative": [ - "/v0.1/docs/use_cases/tool_use/tool_error_handling/" - ] - }, - "/docs/use_cases/web_scraping/": { - "canonical": "https://langchain-ai.github.io/langgraph/tutorials/web-navigation/web_voyager/", - "alternative": [ - "/v0.1/docs/use_cases/web_scraping/" - ] - } -} \ No newline at end of file