jeremierostan commited on
Commit
c692389
·
verified ·
1 Parent(s): 18801f2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -97,7 +97,7 @@ def process_query(user_query):
97
  # Get Gemini response with full PDF content and preprocessed query
98
  gemini_resp = gemini_response(preprocessed_query)
99
 
100
- final_response = generate_final_response(rag_response, gemini_resp)
101
  html_content = markdown_to_html(final_response)
102
 
103
  return rag_response, gemini_resp, html_content
 
97
  # Get Gemini response with full PDF content and preprocessed query
98
  gemini_resp = gemini_response(preprocessed_query)
99
 
100
+ final_response = generate_final_response(user_query, rag_response, gemini_resp)
101
  html_content = markdown_to_html(final_response)
102
 
103
  return rag_response, gemini_resp, html_content