mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-07-10 01:18:32 +00:00
10 lines
286 B
C++
10 lines
286 B
C++
#include "ui.h"
|
|
|
|
const llama_ui_asset * llama_ui_find_asset(const std::string &) {
|
|
return nullptr;
|
|
}
|
|
const std::array<llama_ui_asset, 0> & llama_ui_get_assets() {
|
|
static const std::array<llama_ui_asset, 0> empty{};
|
|
return empty;
|
|
}
|
|
bool llama_ui_use_gzip() { return false; }
|