We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aa213b commit 938e7ddCopy full SHA for 938e7dd
1 file changed
fastdeploy/entrypoints/openai/protocol.py
@@ -548,6 +548,9 @@ class CompletionRequest(BaseModel):
548
549
collect_metrics: Optional[bool] = False
550
551
+ # NOTE(Wanglongzhi2001): temporary parameter for video understanding benchmark
552
+ video_fps: Optional[float] = None
553
+
554
def to_dict_for_infer(self, request_id=None, prompt=None):
555
"""
556
Convert the request parameters into a dictionary
@@ -734,6 +737,9 @@ class ChatCompletionRequest(BaseModel):
734
737
735
738
736
739
740
741
742
743
def to_dict_for_infer(self, request_id=None):
744
745
0 commit comments