srikol commited on
Commit
a116eaa
·
verified ·
1 Parent(s): 4f65160

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
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![Architecture Diagram](architecture.png)"
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}"