refactor: Remove commented out code in app.py
Browse files
app.py
CHANGED
@@ -49,7 +49,7 @@ def create_rag_chain(chat_history: List[Tuple[str, str]], model: str):
|
|
49 |
return (
|
50 |
{
|
51 |
"context": retriever
|
52 |
-
| RunnableLambda(LongContextReorder().transform_documents),
|
53 |
"question": RunnablePassthrough(),
|
54 |
}
|
55 |
| prompt
|
|
|
49 |
return (
|
50 |
{
|
51 |
"context": retriever
|
52 |
+
# | RunnableLambda(LongContextReorder().transform_documents),
|
53 |
"question": RunnablePassthrough(),
|
54 |
}
|
55 |
| prompt
|