diff --git a/src/google/adk/agents/run_config.py b/src/google/adk/agents/run_config.py index ed28baed..3d31297a 100644 --- a/src/google/adk/agents/run_config.py +++ b/src/google/adk/agents/run_config.py @@ -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):