Skip to content

Commit

Permalink
grpc_server: return correct instance of tokenizer
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrifiro committed Apr 26, 2024
1 parent 91e4a51 commit 6baa1b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vllm/entrypoints/grpc/grpc_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def __init__(self, engine: AsyncLLMEngine, args: argparse.Namespace):

@property
def tokenizer_group(self) -> BaseTokenizerGroup:
return self.engine.engine
return self.engine.engine.tokenizer


async def _post_init(self):
Expand Down

0 comments on commit 6baa1b8

Please sign in to comment.