pvanand commited on
Commit
b128493
1 Parent(s): 2a8e87b

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -65,7 +65,7 @@ app.add_middleware(
65
 
66
  # Create a Pydantic model to handle the input data
67
  class TopicInput(BaseModel):
68
- user_input: str = Query(default="", description="input query to generate subtopics")
69
  num_topics: int = Query(default=5, description="Number of subtopics to generate (default: 5)")
70
  previous_query: str = Query(default="", description="Previous query for context (default: empty string)")
71
 
 
65
 
66
  # Create a Pydantic model to handle the input data
67
  class TopicInput(BaseModel):
68
+ user_input: str = Query(default="market research", description="input query to generate subtopics")
69
  num_topics: int = Query(default=5, description="Number of subtopics to generate (default: 5)")
70
  previous_query: str = Query(default="", description="Previous query for context (default: empty string)")
71