dev: update group picker route to /proxy/seedance/visual-validate/groups
Some checks failed
Python Linting / Run Ruff (push) Has been cancelled
Python Linting / Run Pylint (push) Has been cancelled

This commit is contained in:
Alexander Piskun 2026-05-04 21:27:05 +03:00
parent a2b60dea17
commit f9bb70a2ea

View File

@ -1948,7 +1948,7 @@ async def process_video_task(
def _seedance_group_picker_input() -> IO.Combo.Input: def _seedance_group_picker_input() -> IO.Combo.Input:
"""Combo populated from /proxy/seedance/groups. Empty selection triggers H5 enrollment.""" """Combo populated from /proxy/seedance/visual-validate/groups. Empty selection triggers H5 enrollment."""
return IO.Combo.Input( return IO.Combo.Input(
"group_id", "group_id",
default="", default="",
@ -1957,7 +1957,7 @@ def _seedance_group_picker_input() -> IO.Combo.Input:
"authentication and create a new group." "authentication and create a new group."
), ),
remote_combo=IO.RemoteComboOptions( remote_combo=IO.RemoteComboOptions(
route="/proxy/seedance/groups", route="/proxy/seedance/visual-validate/groups",
response_key="groups", response_key="groups",
item_schema=IO.RemoteItemSchema( item_schema=IO.RemoteItemSchema(
value_field="group_id", value_field="group_id",