aufbau 0.1.0

Type-aware constrained decoding for LLMs using context-dependent grammars with typing rules
Documentation
1
2
3
4
5
6
7
use crate::logic::typing::Type;

#[test]
fn test_parse_raw() {
    println!("A -> {:?}", Type::parse("A"));
    println!("A raw -> {:?}", Type::parse_raw("A"));
}