Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
@@ -85,8 +85,8 @@ class TopicInput(BaseModel):
|
|
85 |
previous_queries: list[str] = Query(default=[], description="List of previous queries for context")
|
86 |
|
87 |
class ReportInput(BaseModel):
|
88 |
-
topic: str = Query(description="The main topic for the report")
|
89 |
-
description: str = Query(description="A brief description of the topic")
|
90 |
|
91 |
@app.get("/", tags=["Home"])
|
92 |
def api_home():
|
|
|
85 |
previous_queries: list[str] = Query(default=[], description="List of previous queries for context")
|
86 |
|
87 |
class ReportInput(BaseModel):
|
88 |
+
topic: str = Query(default="market research",description="The main topic for the report")
|
89 |
+
description: str = Query(default="",description="A brief description of the topic")
|
90 |
|
91 |
@app.get("/", tags=["Home"])
|
92 |
def api_home():
|