Update app.py
Browse files
app.py
CHANGED
@@ -59,8 +59,11 @@ def responsevote(
|
|
59 |
# Split the sentence into words
|
60 |
words = lowercase_sentence.split()
|
61 |
|
62 |
-
|
63 |
-
|
|
|
|
|
|
|
64 |
# Join the words back into a sentence
|
65 |
prompt_sentence = ' '.join(words)
|
66 |
formatted_prompt = format_promptc(system+"\n"+prompt_sentence)
|
@@ -97,9 +100,9 @@ def responsecritical(
|
|
97 |
# Split the sentence into words
|
98 |
words = lowercase_sentence.split()
|
99 |
|
100 |
-
|
101 |
-
if
|
102 |
-
|
103 |
|
104 |
# Join the words back into a sentence
|
105 |
prompt_sentence = ' '.join(words)
|
|
|
59 |
# Split the sentence into words
|
60 |
words = lowercase_sentence.split()
|
61 |
|
62 |
+
words_to_replace = ['afd', 'npd']
|
63 |
+
|
64 |
+
# Substitute "afd" and "npd" with "partei"
|
65 |
+
words = ['partei' if word in words_to_replace else word for word in words]
|
66 |
+
|
67 |
# Join the words back into a sentence
|
68 |
prompt_sentence = ' '.join(words)
|
69 |
formatted_prompt = format_promptc(system+"\n"+prompt_sentence)
|
|
|
100 |
# Split the sentence into words
|
101 |
words = lowercase_sentence.split()
|
102 |
|
103 |
+
words_to_remove = ['afd', 'npd']
|
104 |
+
words = [word for word in words if word not in words_to_remove]
|
105 |
+
|
106 |
|
107 |
# Join the words back into a sentence
|
108 |
prompt_sentence = ' '.join(words)
|