/** * @octomil/browser — Runtime planner module * * The browser SDK is hosted/cloud only. This module provides: * - Shared type definitions matching Python/Node/server planner schemas * - Policy name validation and browser-compatibility checks * * It does NOT implement a full planner client (no local benchmarks, * no artifact downloads, no engine detection). Those capabilities live * in the Python and native SDKs. */ export { RoutingPolicy } from "./types.js"; export type { RoutingPolicyName, RouteExecution, RouteModelRequested, RouteModelResolved, RouteModel, ArtifactCache, RouteArtifact, PlannerInfo, FallbackInfo, RouteReason, RouteMetadata, RuntimeArtifactPlan, RuntimeCandidatePlan, RuntimePlanResponse, RuntimeSelection, } from "./types.js"; export { VALID_ROUTING_POLICIES, LOCAL_ONLY_POLICIES, LOCAL_C_ABI_NATIVE_EXECUTION_AVAILABLE, } from "./types.js"; export { validateRoutingPolicy, assertBrowserCompatiblePolicy, } from "./validation.js"; //# sourceMappingURL=index.d.ts.map