-
Notifications
You must be signed in to change notification settings - Fork 742
[BugFix] Fix tokenizer_client file name #7590
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: release/2.6
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,7 +16,7 @@ | |
|
|
||
| import asyncio | ||
|
|
||
| from fastdeploy.input.tokenzier_client import ( | ||
| from fastdeploy.input.tokenizer_client import ( | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 建议 文件名本身仍含拼写错误 当前文件名为 建议同步将文件重命名为: |
||
| AsyncTokenizerClient, | ||
| ImageDecodeRequest, | ||
| ImageEncodeRequest, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,7 +18,7 @@ | |
| import pytest | ||
| import respx | ||
|
|
||
| from fastdeploy.input.tokenzier_client import ( | ||
| from fastdeploy.input.tokenizer_client import ( | ||
|
||
| AsyncTokenizerClient, | ||
| ImageEncodeRequest, | ||
| VideoEncodeRequest, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
该 demo 文件名仍为
tokenzier_client_demo.py(拼写错误),但内部已改为导入tokenizer_client。为避免后续用户/脚本按文件名搜索或引用时混淆,建议同时把 demo 文件名也更正为tokenizer_client_demo.py(并相应更新任何引用/文档链接)。