Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
f6d4351f
Unverified
Commit
f6d4351f
authored
Feb 25, 2026
by
Blake Ledden
Committed by
GitHub
Feb 25, 2026
Browse files
fix: Forward stream_options through multimodal request pipeline (#6474)
Signed-off-by:
Blake Ledden
<
blake.ledden@gmail.com
>
parent
d100c6e2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
0 deletions
+3
-0
components/src/dynamo/vllm/multimodal_utils/protocol.py
components/src/dynamo/vllm/multimodal_utils/protocol.py
+1
-0
examples/multimodal/components/processor.py
examples/multimodal/components/processor.py
+1
-0
examples/multimodal/utils/protocol.py
examples/multimodal/utils/protocol.py
+1
-0
No files found.
components/src/dynamo/vllm/multimodal_utils/protocol.py
View file @
f6d4351f
...
...
@@ -157,6 +157,7 @@ class MultiModalRequest(BaseModel):
max_tokens
:
Optional
[
int
]
=
None
temperature
:
Optional
[
float
]
=
None
stream
:
Optional
[
bool
]
=
True
stream_options
:
Optional
[
dict
]
=
None
class
MultiModalInput
(
BaseModel
):
...
...
examples/multimodal/components/processor.py
View file @
f6d4351f
...
...
@@ -221,6 +221,7 @@ class Processor(ProcessMixIn):
model
=
raw_request
.
model
,
messages
=
[
msg
],
stream
=
True
,
stream_options
=
raw_request
.
stream_options
,
max_tokens
=
raw_request
.
max_tokens
,
temperature
=
raw_request
.
temperature
,
request_id
=
str
(
uuid
.
uuid4
()),
...
...
examples/multimodal/utils/protocol.py
View file @
f6d4351f
...
...
@@ -146,6 +146,7 @@ class MultiModalRequest(BaseModel):
max_tokens
:
Optional
[
int
]
=
None
temperature
:
Optional
[
float
]
=
None
stream
:
Optional
[
bool
]
=
True
stream_options
:
Optional
[
dict
]
=
None
class
MultiModalInput
(
BaseModel
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment