# What does this PR do?


## Test Plan
This commit is contained in:
Eric Huang 2025-10-09 16:55:34 -07:00
parent f50ce11a3b
commit a4238222a3
23 changed files with 468 additions and 691 deletions

View file

@ -57,6 +57,7 @@ class RunpodInferenceAdapter(OpenAIMixin):
top_logprobs: int | None = None,
top_p: float | None = None,
user: str | None = None,
**kwargs: Any,
):
"""Override to add RunPod-specific stream_options requirement."""
if stream and not stream_options:
@ -86,4 +87,5 @@ class RunpodInferenceAdapter(OpenAIMixin):
top_logprobs=top_logprobs,
top_p=top_p,
user=user,
**kwargs,
)