mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-12-26 11:24:35 +00:00
server : add "tokens" output
ggml-ci
This commit is contained in:
parent
08ea539df2
commit
79a8176883
@ -468,7 +468,10 @@ struct completion_token_output {
|
||||
|
||||
struct server_task_result_cmpl_final : server_task_result {
|
||||
int index = 0;
|
||||
|
||||
std::string content;
|
||||
llama_tokens tokens;
|
||||
|
||||
bool stream;
|
||||
result_timings timings;
|
||||
std::string prompt;
|
||||
@ -510,6 +513,7 @@ struct server_task_result_cmpl_final : server_task_result {
|
||||
json res = json {
|
||||
{"index", index},
|
||||
{"content", stream ? "" : content}, // in stream mode, content is already in last partial chunk
|
||||
{"tokens", stream ? llama_tokens {} : tokens},
|
||||
{"id_slot", id_slot},
|
||||
{"stop", true},
|
||||
{"model", oaicompat_model},
|
||||
@ -541,6 +545,7 @@ struct server_task_result_cmpl_final : server_task_result {
|
||||
{"index", 0},
|
||||
{"message", json{
|
||||
{"content", content},
|
||||
{"tokens", tokens},
|
||||
{"role", "assistant"}
|
||||
}
|
||||
}}});
|
||||
@ -605,7 +610,9 @@ struct server_task_result_cmpl_final : server_task_result {
|
||||
|
||||
struct server_task_result_cmpl_partial : server_task_result {
|
||||
int index = 0;
|
||||
|
||||
std::string content;
|
||||
llama_tokens tokens;
|
||||
|
||||
int32_t n_decoded;
|
||||
int32_t n_prompt_tokens;
|
||||
@ -637,6 +644,7 @@ struct server_task_result_cmpl_partial : server_task_result {
|
||||
json res = json {
|
||||
{"index", index},
|
||||
{"content", content},
|
||||
{"tokens", tokens},
|
||||
{"stop", false},
|
||||
{"id_slot", id_slot},
|
||||
{"tokens_predicted", n_decoded},
|
||||
@ -679,7 +687,8 @@ struct server_task_result_cmpl_partial : server_task_result {
|
||||
{"choices", json::array({json{{"finish_reason", nullptr},
|
||||
{"index", 0},
|
||||
{"delta", json{
|
||||
{"content", content}}}
|
||||
{"content", content},
|
||||
{"tokens", tokens}}}
|
||||
}})},
|
||||
{"created", t},
|
||||
{"id", oaicompat_cmpl_id},
|
||||
@ -695,6 +704,7 @@ struct server_task_result_cmpl_partial : server_task_result {
|
||||
{"delta",
|
||||
json{
|
||||
{"content", content},
|
||||
{"tokens", tokens}
|
||||
}},
|
||||
}});
|
||||
}
|
||||
@ -950,7 +960,10 @@ struct server_slot {
|
||||
size_t last_nl_pos = 0;
|
||||
|
||||
std::string generated_text;
|
||||
llama_tokens generated_tokens;
|
||||
|
||||
llama_tokens cache_tokens;
|
||||
|
||||
std::vector<completion_token_output> generated_token_probs;
|
||||
|
||||
bool has_next_token = true;
|
||||
@ -985,6 +998,7 @@ struct server_slot {
|
||||
n_prompt_tokens = 0;
|
||||
last_nl_pos = 0;
|
||||
generated_text = "";
|
||||
generated_tokens = {};
|
||||
has_new_line = false;
|
||||
truncated = false;
|
||||
stop = STOP_TYPE_NONE;
|
||||
@ -1736,6 +1750,7 @@ struct server_context {
|
||||
|
||||
// search stop word and delete it
|
||||
slot.generated_text += token_str;
|
||||
slot.generated_tokens.push_back(result.tok);
|
||||
slot.has_next_token = true;
|
||||
|
||||
// check if there is incomplete UTF-8 character at the end
|
||||
@ -1912,6 +1927,7 @@ struct server_context {
|
||||
res->id = slot.id_task;
|
||||
res->index = slot.index;
|
||||
res->content = tkn.text_to_send;
|
||||
res->tokens = { tkn.tok };
|
||||
|
||||
res->n_decoded = slot.n_decoded;
|
||||
res->n_prompt_tokens = slot.n_prompt_tokens;
|
||||
@ -1952,6 +1968,7 @@ struct server_context {
|
||||
|
||||
res->index = slot.index;
|
||||
res->content = slot.generated_text;
|
||||
res->tokens = slot.generated_tokens;
|
||||
res->timings = slot.get_timings();
|
||||
res->prompt = common_detokenize(ctx, slot.prompt_tokens, true);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user