kodegen_tools_browser 0.10.11

KODEGEN.ᴀɪ: Memory-efficient, Blazing-Fast, MCP tools for code generation agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// All browser utility modules - no feature gating
mod agent_state;
pub mod constants;
mod deep_research;
mod errors;
mod timeout;
mod wait_for_element;

pub use agent_state::AgentState;
pub use deep_research::{DeepResearch, ResearchOptions, ResearchResult};
pub use timeout::{validate_interaction_timeout, validate_navigation_timeout};
pub use wait_for_element::wait_for_element;

// /// Result type for utility functions
// pub type UtilsResult<T> = Result<T, UtilsError>;