// // Created by huangyuyang on 6/20/23. // #ifndef FASTLLM_MODEL_H #define FASTLLM_MODEL_H #include "basellm.h" namespace fastllm { std::unique_ptr CreateLLMModelFromFile(const std::string &fileName); std::unique_ptr CreateEmptyLLMModel(const std::string &modelType); } #endif //FASTLLM_MODEL_H