Fix bad docs sidebar header (#7966)

Quick fix for:

<img width="283" alt="Screenshot 2023-07-19 at 2 49 44 PM"
src="https://github.com/hwchase17/langchain/assets/6952323/91e4868c-b75e-413d-9f8f-d34762abf164">

CC @baskaryan
This commit is contained in:
Jacob Lee 2023-07-20 19:06:57 -07:00 committed by GitHub
parent ebc5ff2948
commit 56c6ab1715
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View File

@ -0,0 +1 @@
label: 'Post retrieval'

View File

@ -1,15 +1,16 @@
{ {
"cells": [ "cells": [
{ {
"attachments": {},
"cell_type": "markdown", "cell_type": "markdown",
"id": "fc0db1bc", "id": "fc0db1bc",
"metadata": {}, "metadata": {},
"source": [ "source": [
"# Lost in the middle: The problem with long contexts\n", "# Lost in the middle: The problem with long contexts\n",
"\n", "\n",
"No matter the architecture of your model, there is a sustancial performance degradation when you include 10+ retrieved documents.\n", "No matter the architecture of your model, there is a substantial performance degradation when you include 10+ retrieved documents.\n",
"In brief: When models must access relevant information in the middle of long contexts, then tend to ignore the provided documents.\n", "In brief: When models must access relevant information in the middle of long contexts, then tend to ignore the provided documents.\n",
"See: https://arxiv.org/abs//2307.03172\n", "See: https://arxiv.org/abs/2307.03172\n",
"\n", "\n",
"To avoid this issue you can re-order documents after retrieval to avoid performance degradation." "To avoid this issue you can re-order documents after retrieval to avoid performance degradation."
] ]