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 40abc9c commit 078e1d7Copy full SHA for 078e1d7
nemoguardrails/rails/llm/config.py
@@ -1373,6 +1373,12 @@ class RailsConfig(BaseModel):
1373
description="Configuration for the various rails (input, output, etc.).",
1374
)
1375
1376
+ streaming: bool = Field(
1377
+ default=False,
1378
+ deprecated="The 'streaming' field is no longer required. Use stream_async() method directly instead. This field will be removed in a future version.",
1379
+ description="DEPRECATED: Use stream_async() method instead. This field is ignored.",
1380
+ )
1381
+
1382
enable_rails_exceptions: bool = Field(
1383
default=False,
1384
description="If set, the pre-defined guardrails raise exceptions instead of returning pre-defined messages.",
0 commit comments