2023-05-31 21:04:01 +00:00
# ifndef GPTJ_H_I_KNOW_WHAT_I_AM_DOING_WHEN_INCLUDING_THIS_FILE
# error This file is NOT meant to be included outside of gptj.cpp. Doing so is DANGEROUS. Be sure to know what you are doing before proceeding to #define GPTJ_H_I_KNOW_WHAT_I_AM_DOING_WHEN_INCLUDING_THIS_FILE
# endif
2023-04-09 03:28:39 +00:00
# ifndef GPTJ_H
# define GPTJ_H
# include <string>
# include <functional>
2023-04-10 19:04:40 +00:00
# include <vector>
2023-04-14 02:15:40 +00:00
# include "llmodel.h"
2023-04-09 03:28:39 +00:00
2023-05-31 21:04:01 +00:00
struct GPTJPrivate ;
2023-04-14 02:15:40 +00:00
class GPTJ : public LLModel {
2023-04-09 03:28:39 +00:00
public :
GPTJ ( ) ;
~ GPTJ ( ) ;
2023-04-15 19:57:32 +00:00
bool loadModel ( const std : : string & modelPath ) override ;
2023-04-14 02:15:40 +00:00
bool isModelLoaded ( ) const override ;
2023-05-05 14:00:05 +00:00
size_t stateSize ( ) const override ;
size_t saveState ( uint8_t * dest ) const override ;
size_t restoreState ( const uint8_t * src ) override ;
2023-04-25 12:38:29 +00:00
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 ) override ;
2023-04-18 13:46:03 +00:00
void setThreadCount ( int32_t n_threads ) override ;
2023-05-21 20:45:29 +00:00
int32_t threadCount ( ) const override ;
2023-04-09 03:28:39 +00:00
2023-04-25 15:20:51 +00:00
protected :
void recalculateContext ( PromptContext & promptCtx ,
std : : function < bool ( bool ) > recalculate ) override ;
2023-04-09 03:28:39 +00:00
private :
GPTJPrivate * d_ptr ;
} ;
2023-04-18 13:46:03 +00:00
# endif // GPTJ_H