We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05fb9c1 commit 2d6b31fCopy full SHA for 2d6b31f
xtask/src/service/mod.rs
@@ -1,4 +1,4 @@
1
-mod cache_manager;
+mod cache_manager;
2
mod error;
3
mod openai;
4
mod response;
@@ -243,7 +243,7 @@ async fn start_infer_service(
243
}
244
245
let think = terminal.decode(think, &mut session_info.buf);
246
- let text = terminal.decode(&tokens, &mut session_info.buf);
+ let text = terminal.decode(tokens, &mut session_info.buf);
247
debug!("解码完成:{tokens:?} -> {think:?} | {text:?}");
248
(think, text)
249
} else {
0 commit comments