2023-05-31 21:04:01 +00:00
# ifndef MPT_H_I_KNOW_WHAT_I_AM_DOING_WHEN_INCLUDING_THIS_FILE
# error This file is NOT meant to be included outside of mpt.cpp. Doing so is DANGEROUS. Be sure to know what you are doing before proceeding to #define MPT_H_I_KNOW_WHAT_I_AM_DOING_WHEN_INCLUDING_THIS_FILE
# endif
2023-05-05 18:04:32 +00:00
# ifndef MPT_H
# define MPT_H
# include <string>
# include <functional>
# include <vector>
# include "llmodel.h"
2023-05-31 21:04:01 +00:00
struct MPTPrivate ;
2023-05-05 18:04:32 +00:00
class MPT : public LLModel {
public :
MPT ( ) ;
~ MPT ( ) ;
bool loadModel ( const std : : string & modelPath ) override ;
bool isModelLoaded ( ) const override ;
size_t stateSize ( ) const override ;
size_t saveState ( uint8_t * dest ) const override ;
size_t restoreState ( const uint8_t * src ) override ;
void 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 & ctx ) override ;
void setThreadCount ( int32_t n_threads ) override ;
2023-05-21 20:45:29 +00:00
int32_t threadCount ( ) const override ;
2023-05-05 18:04:32 +00:00
protected :
void recalculateContext ( PromptContext & promptCtx ,
std : : function < bool ( bool ) > recalculate ) override ;
private :
MPTPrivate * d_ptr ;
} ;
# endif // MPT_H