reasonkit-core 0.1.8

The Reasoning Engine — Auditable Reasoning for Production AI | Rust-Native | Turn Prompts into Protocols
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Core trait definitions for ReasonKit cross-crate integration.
//!
//! This module defines the interface contracts between:
//! - `reasonkit-core` and `reasonkit-mem` (memory/storage operations)
//! - `reasonkit-core` and `reasonkit-web` (web browsing operations)
//!
//! These traits enable parallel development and loose coupling between crates.

mod memory;
mod web;

pub use memory::*;
pub use web::*;