greentic-dw-reflection 0.5.3

Reflection contracts for greentic-dw deep-agent flows.
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

#[derive(Debug, Clone, PartialEq, Eq, Error)]
pub enum ReflectionError {
    #[error("validation error: {0}")]
    Validation(String),
    #[error("provider error: {0}")]
    Provider(String),
}