vibekit-proxy 0.0.1

The runtime firewall for AI, blocks LLM vulnerabilities in real time.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use tracing_subscriber;
use vibekit_proxy::{run_cli, Result};

#[tokio::main]
async fn main() -> Result<()> {
    tracing_subscriber::fmt()
        .with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
        .init();

    run_cli().await
}