2023-06-02 14:47:12 +00:00
|
|
|
#include "llmodel.h"
|
|
|
|
|
|
|
|
#include <cassert>
|
|
|
|
#include <iostream>
|
2023-06-04 12:59:24 +00:00
|
|
|
#include <unordered_set>
|
2023-06-02 14:47:12 +00:00
|
|
|
|
|
|
|
void LLModel::recalculateContext(PromptContext &promptCtx, std::function<bool(bool)> recalculate) {
|
|
|
|
size_t i = 0;
|
|
|
|
promptCtx.n_past = 0;
|
|
|
|
while (i < promptCtx.tokens.size()) {
|
|
|
|
size_t batch_end = std::min(i + promptCtx.n_batch, promptCtx.tokens.size());
|
|
|
|
std::vector<int32_t> batch(promptCtx.tokens.begin() + i, promptCtx.tokens.begin() + batch_end);
|
|
|
|
assert(promptCtx.n_past + int32_t(batch.size()) <= promptCtx.n_ctx);
|
|
|
|
if (!evalTokens(promptCtx, batch)) {
|
|
|
|
std::cerr << "LLModel ERROR: Failed to process prompt\n";
|
|
|
|
goto stop_generating;
|
|
|
|
}
|
|
|
|
promptCtx.n_past += batch.size();
|
|
|
|
if (!recalculate(true))
|
|
|
|
goto stop_generating;
|
|
|
|
i = batch_end;
|
|
|
|
}
|
|
|
|
assert(promptCtx.n_past == int32_t(promptCtx.tokens.size()));
|
|
|
|
|
|
|
|
stop_generating:
|
|
|
|
recalculate(false);
|
|
|
|
}
|
2023-06-04 12:59:24 +00:00
|
|
|
|
|
|
|
void LLModel::prompt(const std::string &prompt,
|
|
|
|
std::function<bool(int32_t)> promptCallback,
|
|
|
|
std::function<bool(int32_t, const std::string&)> responseCallback,
|
|
|
|
std::function<bool(bool)> recalculateCallback,
|
|
|
|
PromptContext &promptCtx)
|
|
|
|
{
|
|
|
|
if (!isModelLoaded()) {
|
2023-07-08 14:04:38 +00:00
|
|
|
std::cerr << implementation().modelType() << " ERROR: prompt won't work with an unloaded model!\n";
|
2023-06-04 12:59:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-07-09 15:32:51 +00:00
|
|
|
if (!supportsCompletion()) {
|
|
|
|
std::string errorMessage = "ERROR: this model does not support text completion or chat!\n";
|
|
|
|
responseCallback(-1, errorMessage);
|
|
|
|
std::cerr << implementation().modelType() << errorMessage;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-06-04 12:59:24 +00:00
|
|
|
// tokenize the prompt
|
2023-06-04 23:31:00 +00:00
|
|
|
std::vector<Token> embd_inp = tokenize(promptCtx, prompt);
|
2023-06-04 12:59:24 +00:00
|
|
|
|
|
|
|
// save the context size
|
|
|
|
promptCtx.n_ctx = contextLength();
|
|
|
|
|
|
|
|
if ((int) embd_inp.size() > promptCtx.n_ctx - 4) {
|
|
|
|
responseCallback(-1, "ERROR: The prompt size exceeds the context window size and cannot be processed.");
|
2023-07-09 15:00:20 +00:00
|
|
|
std::cerr << implementation().modelType() << " ERROR: The prompt is " << embd_inp.size() <<
|
|
|
|
" tokens and the context window is " << promptCtx.n_ctx << "!\n";
|
2023-06-04 12:59:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
promptCtx.n_predict = std::min(promptCtx.n_predict, promptCtx.n_ctx - (int) embd_inp.size());
|
|
|
|
promptCtx.n_past = std::min(promptCtx.n_past, promptCtx.n_ctx);
|
2023-06-30 23:13:25 +00:00
|
|
|
promptCtx.n_batch = std::min(promptCtx.n_batch, LLMODEL_MAX_PROMPT_BATCH);
|
2023-06-04 12:59:24 +00:00
|
|
|
|
|
|
|
// process the prompt in batches
|
|
|
|
size_t i = 0;
|
|
|
|
while (i < embd_inp.size()) {
|
|
|
|
size_t batch_end = std::min(i + promptCtx.n_batch, embd_inp.size());
|
|
|
|
std::vector<Token> batch(embd_inp.begin() + i, embd_inp.begin() + batch_end);
|
|
|
|
|
|
|
|
// Check if the context has run out...
|
|
|
|
if (promptCtx.n_past + int32_t(batch.size()) > promptCtx.n_ctx) {
|
|
|
|
const int32_t erasePoint = promptCtx.n_ctx * promptCtx.contextErase;
|
|
|
|
// Erase the first percentage of context from the tokens...
|
2023-07-08 14:04:38 +00:00
|
|
|
std::cerr << implementation().modelType() << ": reached the end of the context window so resizing\n";
|
2023-06-04 12:59:24 +00:00
|
|
|
promptCtx.tokens.erase(promptCtx.tokens.begin(), promptCtx.tokens.begin() + erasePoint);
|
|
|
|
promptCtx.n_past = promptCtx.tokens.size();
|
|
|
|
recalculateContext(promptCtx, recalculateCallback);
|
|
|
|
assert(promptCtx.n_past + int32_t(batch.size()) <= promptCtx.n_ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!evalTokens(promptCtx, batch)) {
|
2023-07-08 14:04:38 +00:00
|
|
|
std::cerr << implementation().modelType() << " ERROR: Failed to process prompt\n";
|
2023-06-04 12:59:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t tokens = batch_end - i;
|
|
|
|
for (size_t t = 0; t < tokens; ++t) {
|
|
|
|
if (int32_t(promptCtx.tokens.size()) == promptCtx.n_ctx)
|
|
|
|
promptCtx.tokens.erase(promptCtx.tokens.begin());
|
|
|
|
promptCtx.tokens.push_back(batch.at(t));
|
2023-10-03 16:42:31 +00:00
|
|
|
promptCtx.n_past += 1;
|
2023-06-04 12:59:24 +00:00
|
|
|
if (!promptCallback(batch.at(t)))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
i = batch_end;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string cachedResponse;
|
|
|
|
std::vector<Token> cachedTokens;
|
|
|
|
std::unordered_set<std::string> reversePrompts
|
|
|
|
= { "### Instruction", "### Prompt", "### Response", "### Human", "### Assistant", "### Context" };
|
|
|
|
|
|
|
|
// predict next tokens
|
|
|
|
for (int i = 0; i < promptCtx.n_predict; i++) {
|
|
|
|
|
|
|
|
// sample next token
|
|
|
|
auto id = sampleToken(promptCtx);
|
|
|
|
|
|
|
|
// Check if the context has run out...
|
|
|
|
if (promptCtx.n_past + 1 > promptCtx.n_ctx) {
|
|
|
|
const int32_t erasePoint = promptCtx.n_ctx * promptCtx.contextErase;
|
|
|
|
// Erase the first percentage of context from the tokens...
|
2023-07-08 14:04:38 +00:00
|
|
|
std::cerr << implementation().modelType() << ": reached the end of the context window so resizing\n";
|
2023-06-04 12:59:24 +00:00
|
|
|
promptCtx.tokens.erase(promptCtx.tokens.begin(), promptCtx.tokens.begin() + erasePoint);
|
|
|
|
promptCtx.n_past = promptCtx.tokens.size();
|
|
|
|
recalculateContext(promptCtx, recalculateCallback);
|
|
|
|
assert(promptCtx.n_past + 1 <= promptCtx.n_ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!evalTokens(promptCtx, { id })) {
|
2023-07-08 14:04:38 +00:00
|
|
|
std::cerr << implementation().modelType() << " ERROR: Failed to predict next token\n";
|
2023-06-04 12:59:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// display text
|
|
|
|
for (const auto token : endTokens()) {
|
|
|
|
if (id == token) return;
|
|
|
|
}
|
|
|
|
|
2023-06-13 11:14:02 +00:00
|
|
|
const std::string str = tokenToString(id);
|
2023-06-04 12:59:24 +00:00
|
|
|
|
|
|
|
// Check if the provided str is part of our reverse prompts
|
|
|
|
bool foundPartialReversePrompt = false;
|
|
|
|
const std::string completed = cachedResponse + std::string(str);
|
|
|
|
if (reversePrompts.find(completed) != reversePrompts.end())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Check if it partially matches our reverse prompts and if so, cache
|
|
|
|
for (const auto& s : reversePrompts) {
|
|
|
|
if (s.compare(0, completed.size(), completed) == 0) {
|
|
|
|
foundPartialReversePrompt = true;
|
|
|
|
cachedResponse = completed;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Regardless the token gets added to our cache
|
|
|
|
cachedTokens.push_back(id);
|
|
|
|
|
|
|
|
// Continue if we have found a partial match
|
|
|
|
if (foundPartialReversePrompt)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Empty the cache
|
|
|
|
for (auto t : cachedTokens) {
|
|
|
|
if (int32_t(promptCtx.tokens.size()) == promptCtx.n_ctx)
|
|
|
|
promptCtx.tokens.erase(promptCtx.tokens.begin());
|
|
|
|
promptCtx.tokens.push_back(t);
|
2023-10-03 16:42:31 +00:00
|
|
|
promptCtx.n_past += 1;
|
2023-06-04 12:59:24 +00:00
|
|
|
//TODO: Conversion to std::string can be avoided here...
|
|
|
|
if (!responseCallback(t, std::string(tokenToString(t))))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cachedTokens.clear();
|
|
|
|
}
|
|
|
|
}
|
2023-07-09 15:32:51 +00:00
|
|
|
|
|
|
|
std::vector<float> LLModel::embedding(const std::string &/*text*/)
|
|
|
|
{
|
|
|
|
if (!supportsCompletion()) {
|
|
|
|
std::string errorMessage = "ERROR: this model does not support generating embeddings!\n";
|
|
|
|
std::cerr << implementation().modelType() << errorMessage;
|
|
|
|
}
|
|
|
|
return std::vector<float>();
|
|
|
|
}
|