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
vllm_cscc
Commits
7992324f
Unverified
Commit
7992324f
authored
Nov 24, 2025
by
Nick Hill
Committed by
GitHub
Nov 25, 2025
Browse files
[BugFix] Use unique ids for different transcription prompts (#29372)
Signed-off-by:
Nick Hill
<
nhill@redhat.com
>
parent
40a6f53f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vllm/entrypoints/openai/speech_to_text.py
vllm/entrypoints/openai/speech_to_text.py
+2
-2
No files found.
vllm/entrypoints/openai/speech_to_text.py
View file @
7992324f
...
@@ -201,10 +201,10 @@ class OpenAISpeechToText(OpenAIServing):
...
@@ -201,10 +201,10 @@ class OpenAISpeechToText(OpenAIServing):
self
.
engine_client
.
generate
(
self
.
engine_client
.
generate
(
prompt
,
prompt
,
sampling_params
,
sampling_params
,
request_id
,
f
"
{
request_id
}
_
{
i
}
"
,
lora_request
=
lora_request
,
lora_request
=
lora_request
,
)
)
for
prompt
in
prompts
for
i
,
prompt
in
enumerate
(
prompts
)
]
]
except
ValueError
as
e
:
except
ValueError
as
e
:
# TODO: Use a vllm-specific Validation Error
# TODO: Use a vllm-specific Validation Error
...
...
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