juncture 0.2.0

Typed state machine framework for LLM agents - Rust implementation of LangGraph
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Juncture facade crate
//
// This crate re-exports the core functionality and provides
// convenient prelude, builder patterns, and LLM integration.

pub mod llm;
pub mod memory;
pub mod prebuilt;
pub mod tools;

pub mod prelude {
    pub use juncture_core::*;
}

// Re-export core types
pub use juncture_core::*;

// Rust guideline compliant 2026-05-19