Spaces:
Sleeping
Sleeping
Fix typo in test endpoint
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ class Prompt(BaseModel):
|
|
15 |
message: str
|
16 |
|
17 |
@app.get("/test")
|
18 |
-
async def test()
|
19 |
return {"Test"}
|
20 |
|
21 |
@app.post("/chat")
|
|
|
15 |
message: str
|
16 |
|
17 |
@app.get("/test")
|
18 |
+
async def test():
|
19 |
return {"Test"}
|
20 |
|
21 |
@app.post("/chat")
|