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