onnx-runtime-session 0.1.0-dev.5

Session and inference API for the ORT 2.0 runtime: intent-based SessionBuilder and sequential executor (skeleton)
docs.rs failed to build onnx-runtime-session-0.1.0-dev.5
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: onnx-runtime-session-0.1.0-dev.4

onnx-runtime-session

The user-facing session and inference API for the ORT 2.0 runtime (see docs/ORT2.md §20). Design goal: zero-config by default — the user never has to know what an execution provider is; the runtime auto-detects hardware and picks a strategy.

Phase 1 skeleton: the intent-based [SessionBuilder] and [InferenceSession] surfaces are defined; build/run bodies are todo!() pending the sequential executor (Phase 1 task ort2-session).

let mut session = onnx_runtime_session::load("model.onnx")?;
let outputs = session.run(&[("input_ids", &tensor)])?;