File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -298,17 +298,17 @@ int main(int argc, char ** argv) {
298
298
}
299
299
300
300
bool is_antiprompt = false ;
301
- bool input_echo = true ;
301
+ bool input_echo = true ;
302
302
303
303
// HACK - because session saving incurs a non-negligible delay, for now skip re-saving session
304
304
// if we loaded a session with at least 75% similarity. It's currently just used to speed up the
305
305
// initial prompt so it doesn't need to be an exact match.
306
306
bool need_to_save_session = !path_session.empty () && n_matching_session_tokens < (embd_inp.size () * 3 / 4 );
307
307
308
308
309
- int n_past = 0 ;
310
- int n_remain = params.n_predict ;
311
- int n_consumed = 0 ;
309
+ int n_past = 0 ;
310
+ int n_remain = params.n_predict ;
311
+ int n_consumed = 0 ;
312
312
int n_session_consumed = 0 ;
313
313
314
314
// the first thing we will do is to output the prompt, so set color accordingly
@@ -413,7 +413,7 @@ int main(int argc, char ** argv) {
413
413
llama_token id = 0 ;
414
414
415
415
{
416
- auto logits = llama_get_logits (ctx);
416
+ auto logits = llama_get_logits (ctx);
417
417
auto n_vocab = llama_n_vocab (ctx);
418
418
419
419
// Apply params.logit_bias map
You can’t perform that action at this time.
0 commit comments