Update app.py
Browse files
app.py
CHANGED
@@ -36,8 +36,7 @@ ARCH_NOTE = (
|
|
36 |
"ARCHITECTURE NOTE – The bot follows a Retrieval-Augmented Generation "
|
37 |
"(RAG) design: PDF → 180-token chunks → MiniLM-L6 embeddings → FAISS "
|
38 |
"similarity search → GPT-3.5-turbo answer constrained to context."
|
39 |
-
)
|
40 |
-
ARCH_MD = f"{ARCH_NOTE}\n\n"
|
41 |
|
42 |
# make them retrievable by the RAG index (even though we’ll short-circuit)
|
43 |
text += f" LinkedIn: {LINK_MD} Blog: {BLOG_MD} {ARCH_MD}"
|
|
|
36 |
"ARCHITECTURE NOTE – The bot follows a Retrieval-Augmented Generation "
|
37 |
"(RAG) design: PDF → 180-token chunks → MiniLM-L6 embeddings → FAISS "
|
38 |
"similarity search → GPT-3.5-turbo answer constrained to context."
|
39 |
+
)"
|
|
|
40 |
|
41 |
# make them retrievable by the RAG index (even though we’ll short-circuit)
|
42 |
text += f" LinkedIn: {LINK_MD} Blog: {BLOG_MD} {ARCH_MD}"
|