nsschw commited on
Commit
928a4e8
·
1 Parent(s): 447f330

Fix filename for default prompt in analyze_with_persona function

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -58,7 +58,7 @@ def analyze_with_persona(statement, persona=""):
58
  try:
59
 
60
  # read default prompt
61
- with open("default_prompt.txt", "r") as f:
62
  default_prompt = f.read().strip()
63
 
64
 
 
58
  try:
59
 
60
  # read default prompt
61
+ with open("default-prompt.txt", "r") as f:
62
  default_prompt = f.read().strip()
63
 
64