Skip to content

Commit

Permalink
Changing to use f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
nv-braf committed Oct 18, 2023
1 parent c99d507 commit d6e7c74
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ def _create_parameter_perf_config_values(self) -> dict:

if self._cli_config.is_llm_model():
perf_config_values["request-parameter"] = [
"max_tokens:" + str(mtc) + ":int" for mtc in self._max_token_counts
f"max_tokens:{str(mtc)}:int" for mtc in self._max_token_counts
]
perf_config_values["text-input-length"] = self._text_input_lengths

Expand Down

0 comments on commit d6e7c74

Please sign in to comment.