Thiloid commited on
Commit
7b9b307
·
verified ·
1 Parent(s): 84c5491

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -5
app.py CHANGED
@@ -59,8 +59,11 @@ def responsevote(
59
  # Split the sentence into words
60
  words = lowercase_sentence.split()
61
 
62
- words = ['partei' if word == 'afd' else word for word in words]
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
- # Check if "afd" is in the words list and remove it
101
- if "afd" in words:
102
- words.remove("afd")
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)