lash-core 0.1.0-alpha.42

Sans-IO turn machine and runtime kernel for the lash agent runtime.
Documentation
use super::*;
use serde_json::json;
use std::collections::HashMap;
use std::path::PathBuf;
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::{Arc, Mutex};

use crate::llm::transport::LlmTransportError;
use crate::llm::types::{LlmProviderTraceEvent, LlmUsage};
use crate::plugin::StaticPluginFactory;
use crate::testing::TestProvider;
use tokio_util::sync::CancellationToken;

pub(crate) mod helpers;

use helpers::*;

mod assembler;
mod child_sessions;
mod effect;
mod persistence;
mod projection;
mod stream_accumulator;
mod tracing;
mod triggers;
mod turns;
mod usage;