vios_app 0.1.1

Small JSON vaults: Argon2id + AES-GCM, with optional AAD binding.
Documentation
1
2
3
4
5
6
7
8
use vios_core::naorix::emotional_response::generate_emotional_response;

fn main() {
    let input = "calm";
    let reply = generate_emotional_response(input);

    println!("🗣️ AI Reply: {reply}");
}