libtenx 0.0.4

A library for building AI-assisted coding tools, with session management, patch validation, and multiple model support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
struct Test {}

impl Test {
    fn new() -> Self {
        Test
    }
}

/// The entry point for our program.
fn main() {
    println!("Hi!");
}