SreedeviBDP commited on
Commit
2eb89a4
1 Parent(s): baf0df0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ def get_blogcontent_response(topic):
13
  format = """Title:
14
  Introduction:
15
  """
16
- respfinal = llm.complete(f"Create a blog post about {topic}. Use transition words. Use active voice. Write over 1000 words. The blog post should be in a beginners guide style. Add {format} and subtitle for each section. It should have a minimum of 6 sections.Include the following keywords: {resp.text}. Create a good slug for this post and a meta description with a maximum of 100 words. and add it to the end of the blog post, add reference website links")
17
  print(respfinal.text)
18
  title = respfinal.text.split('Title:')[1].split('Introduction:')[0]
19
  introduction = respfinal.text.split('Introduction:')[1]
 
13
  format = """Title:
14
  Introduction:
15
  """
16
+ respfinal = llm.complete(f"Create a blog post about {topic}.Add {format} and subtitle for each section. It should have a minimum of 6 sections.Include the following keywords: {resp.text}. Create a good slug for this post and a meta description with a maximum of 100 words. and add it to the end of the blog post, add reference website links")
17
  print(respfinal.text)
18
  title = respfinal.text.split('Title:')[1].split('Introduction:')[0]
19
  introduction = respfinal.text.split('Introduction:')[1]