-
Notifications
You must be signed in to change notification settings - Fork 647
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
348 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
""" | ||
Copyright 2023-2024 SGLang Team | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
""" | ||
|
||
import copy | ||
import uuid | ||
from dataclasses import dataclass | ||
from typing import Optional | ||
|
||
from sglang.srt.managers.io_struct import TokenizedGenerateReqInput | ||
from sglang.srt.managers.schedule_batch import FINISH_ABORT, List, Req | ||
|
||
|
||
class Session: | ||
def __init__(self, capacity_of_str_len: int, session_id: str = None): | ||
self.session_id = session_id if session_id is not None else uuid.uuid4().hex | ||
self.capacity_of_str_len = capacity_of_str_len | ||
self.reqs: List[Req] = [] | ||
|
||
def create_req(self, req: TokenizedGenerateReqInput, tokenizer): | ||
# renew session id | ||
self.session_id = uuid.uuid4().hex | ||
if req.session_rid is not None: | ||
while len(self.reqs) > 0: | ||
if self.reqs[-1].rid == req.session_rid: | ||
break | ||
self.reqs = self.reqs[:-1] | ||
if len(self.reqs) > 0: | ||
input_ids = ( | ||
self.reqs[-1].origin_input_ids | ||
+ self.reqs[-1].output_ids[ | ||
: self.reqs[-1].sampling_params.max_new_tokens | ||
] | ||
+ req.input_ids | ||
) | ||
else: | ||
input_ids = req.input_ids | ||
new_req = Req( | ||
req.rid, | ||
None, | ||
input_ids, | ||
req.sampling_params, | ||
lora_path=req.lora_path, | ||
session_id=self.session_id, | ||
) | ||
new_req.tokenizer = tokenizer | ||
if req.session_rid is not None and len(self.reqs) == 0: | ||
new_req.finished_reason = FINISH_ABORT( | ||
f"Invalid request: requested session rid {req.session_rid} does not exist in the session history" | ||
) | ||
else: | ||
self.reqs.append(new_req) | ||
return new_req, self.session_id |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.