llama-cpp-bindings-sys 0.8.0

Low level bindings to llama.cpp
Documentation
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "llama.cpp/include/llama.h"

#include <string>

namespace wrapper_helpers {

std::string token_text_or_empty(const llama_vocab * vocab, llama_token token);

}