Fix startup crash: bump sdk_version off ancient 4.44.1, pin pydantic<2.11

#2

Space was crashing on every launch with 'TypeError: argument of type bool is not iterable' in gradio_client's JSON schema handling, followed by a 'localhost not accessible' error. Root cause: sdk_version was still 4.44.1, inherited untouched from the old Depth-Anything-V2 duplicate, which on this Python 3.13 image resolves a pydantic version that trips a known gradio/pydantic schema bug (gradio-app/gradio#11084). Bumped sdk_version to 5.50.0, pinned pydantic<2.11 in requirements.txt, and added server_name="0.0.0.0" to launch() as a second guard against the same error class. Verified locally: get_api_info() no longer throws, and a full python app.py launch serves HTTP 200 with the correct title/version at /config before this was pushed.

BenchLabs changed pull request status to merged
BenchLabs deleted the refs/pr/2 ref

Sign up or log in to comment