secretary 0.3.44

Transform natural language into structured data using large language models (LLMs) with powerful derive macros
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod llm_providers;
pub mod traits;
pub mod error;

// Re-export the main traits and derive macro for easy access
pub use traits::{AsyncGenerateData, FromJSON, GenerateData, IsLLM, Task, ToJSON};

// Re-export the derive macro
pub use secretary_derive::Task as TaskDerive;

// Re-export the errors
pub use error::SecretaryError;