This commit is contained in:
rafa-ruiz 2026-04-09 20:07:39 -07:00
parent c955f69ad8
commit a378464d39
1 changed files with 1 additions and 1 deletions

View File

@ -345,7 +345,7 @@ async def list_models():
@app.post("/v1/chat/completions") @app.post("/v1/chat/completions")
async def chat_completions(req: ChatCompletionRequest): async def chat_completions(req: ChatCompletionRequest):
query = _query_from_messages(req.messages) query = _query_from_messages(req.messages)
#print(req.messages)
session_id = req.session_id or "default" session_id = req.session_id or "default"
req_id = f"chatcmpl-{uuid.uuid4().hex}" req_id = f"chatcmpl-{uuid.uuid4().hex}"