Spaces:
Running
Running
Update main.py
Browse files
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 |
|