ritikaaA commited on
Commit
020aaf0
·
verified ·
1 Parent(s): 2eea792

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -8,6 +8,7 @@ import glob
8
  client = InferenceClient("deepseek-ai/DeepSeek-R1-Distill-Qwen-32B")
9
 
10
  def respond(message, history):
 
11
  top_results = get_top_chunks(message, chunk_embeddings, cleaned_chunks)
12
  print(top_results)
13
 
 
8
  client = InferenceClient("deepseek-ai/DeepSeek-R1-Distill-Qwen-32B")
9
 
10
  def respond(message, history):
11
+ print("DEBUG: respond() called with:", message)
12
  top_results = get_top_chunks(message, chunk_embeddings, cleaned_chunks)
13
  print(top_results)
14