Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions crates/eryx/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ mod callback_handler;
pub mod embedded;
mod error;
mod library;
pub mod llm;
pub mod package;
mod sandbox;
mod schema;
Expand Down Expand Up @@ -88,3 +89,6 @@ pub use wasm::{ExecutionOutput, PythonExecutor};

// Re-export schema types at top level for convenience
pub use schema::{JsonSchema, Schema};

// Re-export LLM integration types at top level for convenience
pub use llm::{ParsedToolCall, ToolCallError, ToolFormat};
Loading