Update app.py
Browse files
app.py
CHANGED
@@ -20,7 +20,7 @@ hugging_tokens = [
|
|
20 |
]
|
21 |
API_TOKEN = random.choice(hugging_tokens)
|
22 |
|
23 |
-
with open("
|
24 |
error_phrases = [line.strip() for line in file]
|
25 |
|
26 |
client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1", token=API_TOKEN)
|
|
|
20 |
]
|
21 |
API_TOKEN = random.choice(hugging_tokens)
|
22 |
|
23 |
+
with open("./dialogues.txt", "r", encoding="utf-8") as file:
|
24 |
error_phrases = [line.strip() for line in file]
|
25 |
|
26 |
client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1", token=API_TOKEN)
|