secretary 0.3.70

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
13
14
pub mod constants;
pub mod error;
pub mod llm_providers;
pub mod message;
pub mod traits;

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

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

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