stasis-rs 0.2.3

Durable AI orchestration framework with runtime jobs, lineage, and memory integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod assets;
pub mod dto;
pub mod handlers;
pub mod htmx;
#[cfg(feature = "dashboard-embedded")]
pub mod integration;
pub mod mappers;
pub mod service;

pub use handlers::{DashboardState, router};
#[cfg(feature = "dashboard-embedded")]
pub use integration::DashboardRouterExt;
pub use service::{
	DashboardQueryService, InMemoryDashboardQueryService, InspectEntity,
	RuntimeDashboardQueryService, WorkflowExecuteResult, WorkflowSaveRequest,
	WorkflowSaveResult,
};