We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 191c87f commit dec4b6fCopy full SHA for dec4b6f
llm/src/durability.rs
@@ -186,6 +186,9 @@ mod durable_impl {
186
///
187
/// In live mode it directly calls the underlying LLM stream which is implemented on
188
/// top of an SSE parser using the wasi-http response body stream.
189
+ /// When the `nopoll` feature flag is enabled, all polling related features are disabled
190
+ /// and events rely solely on the mechanism defined in the Implementation. Useful for implementations
191
+ /// that do not expose a wasi-http response body stream e.g AWS Bedrock.
192
193
/// In replay mode it buffers the replayed messages, and also tracks the created pollables
194
/// to be able to reattach them to the new live stream when the switch to live mode
0 commit comments