For the complete documentation index, see llms.txt. This page is also available as Markdown.

Recipe: sync vs async clients

Recipe — sync vs async client. Pointer to the SDK async_workflow sample.

Both Stratix and AsyncStratix cover the entire resource surface — every method has a sync and an async form on the same name.

Canonical samples:

When to use which

  • Sync (Stratix) — scripts, CI gates, small batches, anywhere blocking is fine

  • Async (AsyncStratix) — webservers, concurrent evaluation runs, throughput matters

See also

Last updated

Was this helpful?