mirror of
https://github.com/ggml-org/whisper.cpp.git
synced 2026-07-29 14:11:25 -05:00
7 lines
190 B
C++
7 lines
190 B
C++
#include "models.h"
|
|
|
|
std::unique_ptr<llm_graph_context> llama_model_mistral4::build_arch_graph(const llm_graph_params & params) const {
|
|
return std::make_unique<graph>(*this, params);
|
|
}
|
|
|