Spaces:
Running
Running
[email protected]
commited on
Commit
·
2d6124c
1
Parent(s):
edc0684
refactor: Remove debug print statement from launchQuery function
Browse files- Eliminated the print statement for cleaner output during query execution.
- pages/chatbot.py +0 -1
pages/chatbot.py
CHANGED
@@ -35,7 +35,6 @@ def display_messages():
|
|
35 |
|
36 |
def launchQuery(query: str = None):
|
37 |
|
38 |
-
print(f"launchQuery : {query}")
|
39 |
# Initialize the assistant's response
|
40 |
full_response = st.write_stream(
|
41 |
st.session_state["assistant"].ask(
|
|
|
35 |
|
36 |
def launchQuery(query: str = None):
|
37 |
|
|
|
38 |
# Initialize the assistant's response
|
39 |
full_response = st.write_stream(
|
40 |
st.session_state["assistant"].ask(
|