Skip to content

Commit 8a8c5d1

Browse files
committed
fix video-temporal-localization
1 parent 3b03997 commit 8a8c5d1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

vision_agent/tools/tools.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,10 @@ def ixc25_temporal_localization(prompt: str, frames: List[np.ndarray]) -> List[b
899899
"function_name": "ixc25_temporal_localization",
900900
}
901901
data: List[int] = send_inference_request(
902-
payload, "video-temporal-localization", files=files, v2=True
902+
payload,
903+
"video-temporal-localization?model=internlm-xcomposer",
904+
files=files,
905+
v2=True,
903906
)
904907
chunk_size = round(len(frames) / len(data))
905908
data_explode = [[elt] * chunk_size for elt in data]

0 commit comments

Comments
 (0)