Spaces:
Sleeping
Sleeping
Update run_app.py
Browse files- run_app.py +1 -1
run_app.py
CHANGED
@@ -173,7 +173,7 @@ class Api:
|
|
173 |
|
174 |
return StreamingResponse(streaming(), media_type="text/event-stream")
|
175 |
|
176 |
-
@self.app.post("/v1/completions")
|
177 |
async def completions():
|
178 |
return Response(content=json.dumps({'info': 'Not working yet.'}, indent=4), media_type="application/json")
|
179 |
|
|
|
173 |
|
174 |
return StreamingResponse(streaming(), media_type="text/event-stream")
|
175 |
|
176 |
+
@self.app.post("/api/v1/completions")
|
177 |
async def completions():
|
178 |
return Response(content=json.dumps({'info': 'Not working yet.'}, indent=4), media_type="application/json")
|
179 |
|