Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -68,6 +68,7 @@ async def status():
|
|
68 |
@app.post("/v1/chat/completions")
|
69 |
async def chat_completion(request: Request):
|
70 |
try:
|
|
|
71 |
data = await request.json()
|
72 |
messages = data.get("messages", [])
|
73 |
if not messages:
|
|
|
68 |
@app.post("/v1/chat/completions")
|
69 |
async def chat_completion(request: Request):
|
70 |
try:
|
71 |
+
return print('xs')
|
72 |
data = await request.json()
|
73 |
messages = data.get("messages", [])
|
74 |
if not messages:
|