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
8
9
10
11
12
// Visualization module for P7 parser and synthesizer
//
// This module provides web-based visualizations for:
// - Parser: visualize partial AST from parsing incomplete code
// - Synthesizer: step-by-step visualization of code synthesis with completions

mod graph;
mod server;
mod viz;

// Re-export the server function
pub use server::serve;