CineAI commited on
Commit
759a013
1 Parent(s): 1c34a02

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -55,13 +55,13 @@ def switching(text):
55
  components.html(html_content, height=800, scrolling=True)
56
  elif re.search("pay the ghost", text.lower(), re.IGNORECASE):
57
  components.html(html_doge_wallet, height=600, scrolling=False)
58
- elif re.search("long live liberty", text.lower(), re.IGNORECASE):
59
- exctracted_statement = exctrator(text.lower(), phrase="long live liberty")
60
- cleaned_sentence = re.sub(r'^\W+', '', exctracted_statement)
61
- print(f"exctracted_statement: {cleaned_sentence}")
62
- prompt = f"Evaluate how far the statement from libertarian ideology 1 to 10 and why?\n\n{cleaned_sentence}"
63
- print(f"Liberty prompt: {prompt}")
64
- result = get_response(prompt)
65
  else:
66
  prompt = select_prompt(input_text=text, prompts=prompts, keywords=keywords)
67
  result = chat.chatting(prompt=prompt if prompt is not None else text)
 
55
  components.html(html_content, height=800, scrolling=True)
56
  elif re.search("pay the ghost", text.lower(), re.IGNORECASE):
57
  components.html(html_doge_wallet, height=600, scrolling=False)
58
+ # elif re.search("long live liberty", text.lower(), re.IGNORECASE):
59
+ # exctracted_statement = exctrator(text.lower(), phrase="long live liberty")
60
+ # cleaned_sentence = re.sub(r'^\W+', '', exctracted_statement)
61
+ # print(f"exctracted_statement: {cleaned_sentence}")
62
+ # prompt = f"Evaluate how far the statement from libertarian ideology 1 to 10 and why?\n\n{cleaned_sentence}"
63
+ # print(f"Liberty prompt: {prompt}")
64
+ # result = get_response(prompt)
65
  else:
66
  prompt = select_prompt(input_text=text, prompts=prompts, keywords=keywords)
67
  result = chat.chatting(prompt=prompt if prompt is not None else text)