Skip to content

Commit e83bd7e

Browse files
committed
Fix lint formatting in text_llm_runner.cpp
This PR was authored with the assistance of Claude.
1 parent 9e6e103 commit e83bd7e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extension/llm/runner/text_llm_runner.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ Error TextLLMRunner::generate(
118118
std::vector<uint64_t> prompt_tokens;
119119

120120
if (!prompt.empty()) {
121-
::tokenizers::Result<std::vector<uint64_t>> encode_res =
122-
tokenizer_->encode(prompt, /*bos=*/config.num_bos, /*eos=*/config.num_eos);
121+
::tokenizers::Result<std::vector<uint64_t>> encode_res = tokenizer_->encode(
122+
prompt, /*bos=*/config.num_bos, /*eos=*/config.num_eos);
123123

124124
if (!encode_res.ok()) {
125125
ET_LOG(

0 commit comments

Comments
 (0)