mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-07-18 05:13:35 +00:00
16 lines
395 B
C++
16 lines
395 B
C++
#pragma once
|
|
|
|
#include <array>
|
|
#include <string>
|
|
|
|
struct llama_ui_asset {
|
|
std::string name;
|
|
const unsigned char * data;
|
|
std::size_t size;
|
|
std::string etag;
|
|
std::string type;
|
|
};
|
|
|
|
const llama_ui_asset * llama_ui_find_asset(const std::string & name);
|
|
bool llama_ui_use_gzip();
|
|
const std::array<llama_ui_asset, 0> & llama_ui_get_assets();
|