gpt4all/gptj.h

29 lines
703 B
C
Raw Normal View History

2023-04-09 03:28:39 +00:00
#ifndef GPTJ_H
#define GPTJ_H
#include <string>
#include <sstream>
#include <functional>
2023-04-10 19:04:40 +00:00
#include <vector>
2023-04-09 03:28:39 +00:00
class GPTJPrivate;
class GPTJ {
public:
GPTJ();
~GPTJ();
bool loadModel(const std::string &modelPath, std::istream &fin);
bool isModelLoaded() const;
2023-04-09 14:27:35 +00:00
struct PromptContext {
std::vector<float> logits;
int32_t n_past = 0; // number of tokens in past conversation
};
2023-04-09 03:28:39 +00:00
void prompt(const std::string &prompt, std::function<bool(const std::string&)> response,
2023-04-09 14:27:35 +00:00
PromptContext &ctx, int32_t n_predict = 200, int32_t top_k = 40, float top_p = 0.9f,
float temp = 0.9f, int32_t n_batch = 9);
2023-04-09 03:28:39 +00:00
private:
GPTJPrivate *d_ptr;
};
#endif // GPTJ_H