wip logprobs data

This commit is contained in:
Concedo 2024-10-30 00:59:34 +08:00
parent bd05efd648
commit 90f5cd0f67
6 changed files with 70 additions and 19 deletions

View file

@ -294,5 +294,13 @@ extern "C"
return output;
}
last_logprobs_outputs last_logprobs()
{
last_logprobs_outputs output;
std::vector<TopPicksData> toppicks = gpttype_get_top_picks_data(); //copy top picks
output.count = 0;
return output;
}
}