litellm/litellm-rust/crates/coroutine/AGENTS.md
devin-ai-integration[bot] 1f8997398e
refactor(rust): extract the host coroutine into its own crate (#43129)
Move the generic async coroutine out of the host crate into litellm-coroutine,
with its requirements documented in the crate's AGENTS.md. RouteMachine becomes
CallMachine on top of it, host protocol ops move to host/src/protocol.rs, and
the messages, OCR, host-python, python-bridge and legacy callbacks crates adopt
the new types. Adds error definition rules to litellm-rust/AGENTS.md.

Co-authored-by: Yujong Lee <yujong@berri.ai>
2026-09-25 04:20:06 +00:00

3.2 KiB

Requirements

Core must pause mid-call to ask the host for things it cannot do itself (Python callbacks, secret and token reads, before_send rewrites, stream demand), then continue where it stopped. Any change to this crate must keep every requirement below; the alternatives section says which one each rejected design breaks

  • R1 Core never calls the host: it names an op and waits for the answer, so it stays free of PyO3 and of any other host runtime
  • R2 Async host work is awaited by the host's own driver in the caller's asyncio task (litellm/rust_bridge/lifecycle.py), so contextvars writes reach the caller; a Rust-side into_future would run it in a copied context
  • R3 The body awaits real I/O (HTTP, spawn_blocking, timers) between yields, so resume is itself a future driven by the caller's runtime
  • R4 Route code stays straight-line async (host.route(OcrOp::ReadDocument).await?) instead of hand-written states
  • R5 Each op fixes its answer type at compile time: a host cannot answer ReadDocument with a token, and core never matches a result variant it did not ask for
  • R6 A yield the body makes while being resumed is returned by that same poll, so the host driver's inline first poll needs no extra event-loop turn per op
  • R7 No task is spawned: cancel, or dropping the coroutine, drops the body, and nothing waits forever on an answer that cannot come
  • R8 Several yields can be pending at once, since route code hands clones of its Co to token providers and hooks
  • R9 Stable Rust

Other implementations and why they do not fit

  • Nightly std::ops::Coroutine: breaks R9, and its body cannot await futures between yields (R3)
  • genawaiter: resumes async bodies only with a noop waker, so the body cannot await real I/O (R3)
  • simple_coro: typestate Coro makes answering before resuming a compile-time rule, but its body cannot await arbitrary futures (R3) and its reply type R is fixed per coroutine (R5)
  • corosensei and other stackful coroutines: sync bodies on their own stack, no async I/O inside (R3)
  • A hand-written phase enum with an advance match (the old HostPhase): every await point becomes a state (R4)
  • An injected host trait with async fns: core would call the host itself (R1, R2)
  • Sans-IO, where core does no I/O and HTTP becomes one more host op: keeps every requirement and makes resume a pure step function, but HTTP, streaming, retries and timeouts would move out of core into every bridge; the one real alternative, not taken
  • Temporal's Rust workflow SDK (WorkflowFuture, WfContext) is the closest precedent: an async fn polled in place, commands sent over a channel with a oneshot to unblock them. Roles are inverted there (the language SDK owns the program, core answers), and its workflow body may not do real I/O

Tradeoffs accepted

  • A tokio mpsc channel plus a oneshot per yield instead of compiler-generated states
  • Protocol mistakes (resuming before answering, resuming after the end) are runtime ResumeErrors, not compile errors
  • Pending yields come out one per resume, in the order they were made, and each reply goes back to the yield that made it (R8)
  • An answer sent after its yield stopped waiting (for example the body timed out on it) is discarded, since the body already moved on