actflow-agent-sdk 0.1.1

A Rust SDK for building agents for Actflow.
Documentation
1
2
3
4
5
6
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_prost_build::configure()
        .build_client(false) // only build server code
        .compile_protos(&["proto/agent.proto"], &["proto"])?;
    Ok(())
}