juglans 0.2.16

Compiler and runtime for Juglans Workflow Language
1
2
3
4
5
6
7
8
9
10
11
12
13
// LLM providers layer
// Allow upstream clippy warnings in provider implementations
#[allow(
    clippy::new_without_default,
    clippy::to_string_in_format_args,
    clippy::clone_on_copy,
    unused_imports,
    unused_mut,
    dead_code
)]
pub mod llm;

pub use llm::factory::ProviderFactory;