Spaces:
Sleeping
Sleeping
debug logs
Browse files
app.py
CHANGED
@@ -419,10 +419,17 @@ def text_to_text_generation(verbose, prompt):
|
|
419 |
res_prompt, res_semantic_search_prompt, res_google_search_prompt
|
420 |
)
|
421 |
|
|
|
|
|
|
|
|
|
422 |
res_prompt, res_normal = cleanup(*gen_normal)
|
423 |
res_semantic_search_prompt, res_semantic_search = cleanup(*gen_semantic_search)
|
424 |
res_google_search_prompt, res_google_search = cleanup(*gen_google_search)
|
425 |
|
|
|
|
|
|
|
426 |
if verbose:
|
427 |
return (
|
428 |
f"# 📚KubeWizard📚\n"
|
|
|
419 |
res_prompt, res_semantic_search_prompt, res_google_search_prompt
|
420 |
)
|
421 |
|
422 |
+
print("SEMANTIC BEFORE CLEANUP: ", gen_semantic_search)
|
423 |
+
print("GOOGLE BEFORE CLEANUP: ", gen_google_search)
|
424 |
+
|
425 |
+
|
426 |
res_prompt, res_normal = cleanup(*gen_normal)
|
427 |
res_semantic_search_prompt, res_semantic_search = cleanup(*gen_semantic_search)
|
428 |
res_google_search_prompt, res_google_search = cleanup(*gen_google_search)
|
429 |
|
430 |
+
print("SEMANTIC AFTER CLEANUP: ", res_semantic_search)
|
431 |
+
print("GOOGLE AFTER CLEANUP: ", res_google_search)
|
432 |
+
|
433 |
if verbose:
|
434 |
return (
|
435 |
f"# 📚KubeWizard📚\n"
|