noether-engine 0.6.0

Noether composition engine: Lagrange graph AST, type checker, planner, executor, semantic index, LLM-backed composition agent
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::checker::GraphTypeError;
use crate::executor::ExecutionError;

#[derive(Debug, thiserror::Error)]
pub enum EngineError {
    #[error("parse error: {0}")]
    Parse(#[from] serde_json::Error),
    #[error("type errors in composition graph")]
    TypeCheck(Vec<GraphTypeError>),
    #[error("execution error: {0}")]
    Execution(#[from] ExecutionError),
}