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
12
13
14
15
16
#include "marker_probe.h"

#include "chunked_thinking.h"

#include <vector>

namespace marker_probes {

const std::vector<probe_fn> & registered() {
    static const std::vector<probe_fn> probes = {
        chunked_thinking,
    };
    return probes;
}

}  // namespace marker_probes