Skip to content

Commit

Permalink
-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Wovchena committed May 28, 2024
1 parent 0e18c9c commit 4c10755
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cpp/src/llm_pipeline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ std::filesystem::path with_openvino_tokenizers_stem(const std::filesystem::path&
if (dot == std::string::npos) {
ext = suffix;
} else {
ext = suffix.substr(0, next_dot);
ext = suffix.substr(0, next_dot - 1);
}
return path.parent_path() / ("openvino_tokenizers" + ext);
}
Expand Down
2 changes: 1 addition & 1 deletion src/python/py_generate_pipeline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ std::filesystem::path with_openvino_tokenizers_stem(const std::filesystem::path&
if (dot == std::string::npos) {
ext = suffix;
} else {
ext = suffix.substr(0, next_dot);
ext = suffix.substr(0, next_dot - 1);
}
return path.parent_path() / ("openvino_tokenizers" + ext);
}
Expand Down

0 comments on commit 4c10755

Please sign in to comment.