neuron-types 0.3.0

Core traits for AI agents in Rust — Provider, Tool, and ContextStrategy without the framework buy-in
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]

pub mod error;
pub mod stream;
pub mod traits;
pub mod types;
pub mod wasm;

pub use error::*;
pub use stream::*;
pub use traits::*;
pub use types::*;
pub use wasm::*;