Update README.md
Browse files
README.md
CHANGED
|
@@ -154,14 +154,14 @@ if __name__ == "__main__":
|
|
| 154 |
chatbot = QwenChatbot()
|
| 155 |
|
| 156 |
# First input (without /think or /no_think tags, thinking mode is enabled by default)
|
| 157 |
-
user_input_1 = "How many r's in strawberries?"
|
| 158 |
print(f"User: {user_input_1}")
|
| 159 |
response_1 = chatbot.generate_response(user_input_1)
|
| 160 |
print(f"Bot: {response_1}")
|
| 161 |
print("----------------------")
|
| 162 |
|
| 163 |
# Second input with /no_think
|
| 164 |
-
user_input_2 = "Then, how many r's in blueberries? /no_think"
|
| 165 |
print(f"User: {user_input_2}")
|
| 166 |
response_2 = chatbot.generate_response(user_input_2)
|
| 167 |
print(f"Bot: {response_2}")
|
|
|
|
| 154 |
chatbot = QwenChatbot()
|
| 155 |
|
| 156 |
# First input (without /think or /no_think tags, thinking mode is enabled by default)
|
| 157 |
+
user_input_1 = "How many 'r's are in strawberries?"
|
| 158 |
print(f"User: {user_input_1}")
|
| 159 |
response_1 = chatbot.generate_response(user_input_1)
|
| 160 |
print(f"Bot: {response_1}")
|
| 161 |
print("----------------------")
|
| 162 |
|
| 163 |
# Second input with /no_think
|
| 164 |
+
user_input_2 = "Then, how many 'r's are in blueberries? /no_think"
|
| 165 |
print(f"User: {user_input_2}")
|
| 166 |
response_2 = chatbot.generate_response(user_input_2)
|
| 167 |
print(f"Bot: {response_2}")
|