llguidance 0.7.3

Super-fast Structured Outputs
Documentation
1
2
3
4
5
6
7
8
9
use std::env;

fn main() {
    println!("cargo:rerun-if-changed=llguidance.h");

    let copy_path = format!("{}/../../../llguidance.h", env::var("OUT_DIR").unwrap());

    std::fs::copy("llguidance.h", copy_path).unwrap();
}