corrosive_agents 0.0.1

Build verifiable, interactive AI agents powered by NVIDIA Nemotron free LLM models — MCP, skills, Ed25519 identity, REST/WebSocket/gRPC transports, and pluggable vector stores (Pinecone, Qdrant, custom).
Documentation
1
2
3
4
5
6
7
8
9
//! The agent core: manifest, capabilities, builder, and runtime.

mod builder;
mod manifest;
mod runtime;

pub use builder::AgentBuilder;
pub use manifest::{AgentManifest, Capability};
pub use runtime::{Agent, AgentInfo};