server : update slot->prompt after restore

This commit is contained in:
Georgi Gerganov 2024-10-09 09:12:34 +03:00
parent 61a66f25ab
commit 6556c90171
No known key found for this signature in database
GPG Key ID: BF970631944C16B7

View File

@ -1778,6 +1778,9 @@ struct server_context {
}
slot->cache_tokens.resize(token_count);
// TODO: maybe detokenize the slot->cache_tokens instead?
slot->prompt = string_format("[restored %d tokens from file]", (int) token_count);
const int64_t t_end = ggml_time_us();
const double t_restore_ms = (t_end - t_start) / 1000.0;