pvanand commited on
Commit
4f4703e
1 Parent(s): 949bf2b

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -76,6 +76,6 @@ def api_home():
76
 
77
  @app.post("/generate_topics/")
78
  async def create_topics(input: TopicInput):
79
- topics = generate_topics(input.user_input, input.num_topics, input.num_topics.previous_query)
80
  return {"topics": topics}
81
 
 
76
 
77
  @app.post("/generate_topics/")
78
  async def create_topics(input: TopicInput):
79
+ topics = generate_topics(input.user_input, input.num_topics, input.previous_query)
80
  return {"topics": topics}
81