seher-sdk 0.0.50

Seher SDK: agent resolution and codexbar-backed rate-limit checks
Documentation
pub mod cancel;
pub mod config;
pub mod config_loader;
pub mod dispatch;
pub mod errors;
pub mod pi_runner;
pub mod resolve;
pub mod sleep;
pub mod tool;
pub mod util;

pub use cancel::CancelToken;
pub use config::{
    Config, ModelEntry, ProviderApi, ProviderEntry, ResolvedAgent, ResolvedSkillsConfig,
    RetryConfig, SkillsConfig,
};
pub use config_loader::{ConfigError, load_config, resolve_config_path};
pub use dispatch::{RunAgentOptions, RunOutput, run_for_resolved, stream_for_resolved};
pub use errors::{
    LimitError, RunError, TimeoutError, is_claude_rate_limit_message, is_client_error_retryable,
    is_transient_http_error,
};
pub use pi_runner::{
    PiRunOutput, PiRunner, PiRunnerOptions, StreamChunk, pi_session_path, split_model_ref,
    split_thinking_suffix,
};
pub use resolve::{
    AllAgentsLimitedError, Candidate, CodexBarProbe, LimitProbe, NoMatchingAgentError, PollOptions,
    ProbeFuture, ResolveError, ResolveOptions, SUPPORTED_SDK_KINDS, ScanOutcome, build_candidates,
    codexbar_provider_name, is_supported_sdk, poll_for_agent, resolve_agent,
    resolve_agent_with_codexbar, scan, sdk_supports_tools, unsupported_sdk_providers,
};
pub use tool::{SeherTool, ToolHandler};