2023-04-14 02:15:40 +00:00
|
|
|
#ifndef LLMODEL_H
|
|
|
|
#define LLMODEL_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <functional>
|
|
|
|
#include <vector>
|
2023-05-05 00:01:32 +00:00
|
|
|
#include <cstdint>
|
2023-04-14 02:15:40 +00:00
|
|
|
|
|
|
|
class LLModel {
|
|
|
|
public:
|
|
|
|
explicit LLModel() {}
|
|
|
|
virtual ~LLModel() {}
|
|
|
|
|
2023-04-15 19:57:32 +00:00
|
|
|
virtual bool loadModel(const std::string &modelPath) = 0;
|
2023-04-14 02:15:40 +00:00
|
|
|
virtual bool isModelLoaded() const = 0;
|
2023-05-04 19:31:41 +00:00
|
|
|
virtual size_t stateSize() const { return 0; }
|
|
|
|
virtual size_t saveState(uint8_t *dest) const { return 0; }
|
|
|
|
virtual size_t restoreState(const uint8_t *src) { return 0; }
|
2023-04-14 02:15:40 +00:00
|
|
|
struct PromptContext {
|
2023-04-25 12:38:29 +00:00
|
|
|
std::vector<float> logits; // logits of current context
|
|
|
|
std::vector<int32_t> tokens; // current tokens in the context window
|
|
|
|
int32_t n_past = 0; // number of tokens in past conversation
|
|
|
|
int32_t n_ctx = 0; // number of tokens possible in context window
|
|
|
|
int32_t n_predict = 200;
|
|
|
|
int32_t top_k = 40;
|
|
|
|
float top_p = 0.9f;
|
|
|
|
float temp = 0.9f;
|
|
|
|
int32_t n_batch = 9;
|
|
|
|
float repeat_penalty = 1.10f;
|
|
|
|
int32_t repeat_last_n = 64; // last n tokens to penalize
|
2023-04-25 15:20:51 +00:00
|
|
|
float contextErase = 0.75f; // percent of context to erase if we exceed the context
|
|
|
|
// window
|
2023-04-14 02:15:40 +00:00
|
|
|
};
|
2023-04-25 12:38:29 +00:00
|
|
|
virtual void prompt(const std::string &prompt,
|
2023-04-27 15:08:15 +00:00
|
|
|
std::function<bool(int32_t)> promptCallback,
|
|
|
|
std::function<bool(int32_t, const std::string&)> responseCallback,
|
|
|
|
std::function<bool(bool)> recalculateCallback,
|
2023-04-25 12:38:29 +00:00
|
|
|
PromptContext &ctx) = 0;
|
2023-04-15 19:57:32 +00:00
|
|
|
virtual void setThreadCount(int32_t n_threads) {}
|
|
|
|
virtual int32_t threadCount() { return 1; }
|
2023-04-25 15:20:51 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void recalculateContext(PromptContext &promptCtx,
|
|
|
|
std::function<bool(bool)> recalculate) = 0;
|
2023-04-14 02:15:40 +00:00
|
|
|
};
|
|
|
|
|
2023-04-18 13:46:03 +00:00
|
|
|
#endif // LLMODEL_H
|