dk-crazydiv commited on
Commit
5d68006
·
1 Parent(s): 59c9d6c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ def generate_hashtags(input):
13
  return None
14
  response = co.generate(
15
  model='large',
16
- prompt='Given a post, this program will generate relevant hashtags.\n\nPost: Why are there no country songs about software engineering\nHashtag: #softwareengineering #code \n--\nPost: Your soulmate is in the WeWork you decided not to go to\nHashtag: #wework #work \n--\nPost: If shes talking to you once a day im sorry bro thats not flirting that standup\nHashtag: #standup #funny \n--\nPost: {}\nHashtags:'.format(input),
17
  max_tokens=20,
18
  temperature=0.5,
19
  k=0,
 
13
  return None
14
  response = co.generate(
15
  model='large',
16
+ prompt='This program will take a sentence as input and reframe it with positive and growth mindset.\n\n--\nInput: I have a lot of work to do today.\nOutput: I have a lot of work to do today. It's better for me to make a list and break it down into smaller chunks and finish them off one by one.\n--\nInput: I am barely able to lift 10 pound weights.\nOutput: I should exercise more consistently and gradually increase my weight limit. I should also try eating healthy foods.\n--\nInput:{}\nOutput:'.format(input),
17
  max_tokens=20,
18
  temperature=0.5,
19
  k=0,