neuron-loop 0.3.0

Agentic loop for Rust — multi-turn tool dispatch, streaming, and conversation management over any LLM provider
Documentation
1
2
3
4
5
6
7
8
9
#![doc = include_str!("../README.md")]

pub mod config;
pub mod loop_impl;
pub mod step;

pub use config::*;
pub use loop_impl::*;
pub use step::*;