Skip to content

Commit d6a7c91

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent c314778 commit d6a7c91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

comps/cores/mega/gateway.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ def __init__(self, megaservice, host="0.0.0.0", port=8888):
419419

420420
async def handle_request(self, request: Request, files: List[UploadFile] = File(default=None)):
421421
data = await request.json()
422-
stream_opt = data.get("stream", True)
422+
stream_opt = data.get("stream", True)
423423
chat_request = ChatCompletionRequest.model_validate(data)
424424

425425
prompt = self._handle_message(chat_request.messages)

0 commit comments

Comments
 (0)