-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgptj.h
More file actions
26 lines (21 loc) · 697 Bytes
/
Copy pathgptj.h
File metadata and controls
26 lines (21 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef GPTJ_H
#define GPTJ_H
#include <string>
#include <functional>
#include <vector>
#include "llmodel.h"
class GPTJPrivate;
class GPTJ : public LLModel
{
public:
GPTJ();
~GPTJ();
bool loadModel(const std::string &modelPath, int32_t n_threads, int32_t seed = -1) override;
bool isModelLoaded() const override;
void prompt(const std::string &prompt, std::function<bool(const std::string &)> response,
PromptContext &ctx, int32_t n_predict = 200, int32_t top_k = 50400, float top_p = 1.0f,
float temp = 0.0f, int32_t n_batch = 9, bool verbose = false) override;
private:
GPTJPrivate *d_ptr;
};
#endif // GPTJ_H