Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
|