pvanand commited on
Commit
2cec562
·
verified ·
1 Parent(s): b2b748b

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -62,7 +62,7 @@ def generate_topics(user_input, num_topics, previous_queries):
62
  return subtopics
63
 
64
  def generate_report(topic, description):
65
- prompt = f"""create a detailed report on {topic} by following the instructions: {description}"""
66
  md_report = together_response(prompt, model = "meta-llama/Llama-3-70b-chat-hf", SysPrompt = SysPromptMdOffline)
67
  return md_to_html(md_report)
68
 
 
62
  return subtopics
63
 
64
  def generate_report(topic, description):
65
+ prompt = f"""create a detailed report on: {topic} by following the instructions: {description}"""
66
  md_report = together_response(prompt, model = "meta-llama/Llama-3-70b-chat-hf", SysPrompt = SysPromptMdOffline)
67
  return md_to_html(md_report)
68