paddler_types 3.1.2

Open-source LLMOps platform for hosting and scaling AI in your own infrastructure
Documentation
1
2
3
4
5
use anyhow::Result;

pub trait Validates<TOutput> {
    fn validate(self) -> Result<TOutput>;
}