Update app.py
Browse files
app.py
CHANGED
@@ -100,7 +100,7 @@ def responsevote(
|
|
100 |
output = ""
|
101 |
for response in stream:
|
102 |
output += response.token.text
|
103 |
-
|
104 |
sentence_lower = output.lower()
|
105 |
# Check if the word 'nein' is in the sentence
|
106 |
if 'ja' in sentence_lower:
|
|
|
100 |
output = ""
|
101 |
for response in stream:
|
102 |
output += response.token.text
|
103 |
+
print(output)
|
104 |
sentence_lower = output.lower()
|
105 |
# Check if the word 'nein' is in the sentence
|
106 |
if 'ja' in sentence_lower:
|