chore: add docstring for BIDI streaming mode

BIDI streaming mode is not used currently.

Co-authored-by: Xiang (Sean) Zhou <seanzhougoogle@google.com>
PiperOrigin-RevId: 852461564
This commit is contained in:
Xiang (Sean) Zhou
2026-01-05 14:40:39 -08:00
committed by Copybara-Service
parent fc4e3d6f60
commit 6f2c70fc33
+5
View File
@@ -35,6 +35,11 @@ class StreamingMode(Enum):
NONE = None
SSE = 'sse'
BIDI = 'bidi'
"""
so far this mode is not used. the actual bidi-streaming behavior via
runner.run_live()) uses a completely different code path that doesn't rely on
streaming_mode.
"""
class RunConfig(BaseModel):