-
Notifications
You must be signed in to change notification settings - Fork 6
fix: updated mlx related pkgs + end condition for stopping model request loop #111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM mlx-community/Qwen3.5-0.8B-8bit | ||
| FROM mlx-community/Qwen3.5-4B-MLX-4bit | ||
| #FROM mlx-community/Qwen3.5-0.8B-8bit | ||
| # FROM mlx-community/Qwen3.5-0.8B-MLX-8bit | ||
| # FROM mlx-community/Qwen3.5-4B-MLX-4bit | ||
| # FROM mlx-community/Qwen3-0.6B-4bit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| #!/bin/bash | ||
|
|
||
| # So that we don't have multiple copies of python libs lying around | ||
| # from previous installs | ||
|
|
||
| rm -rf /usr/local/share/tiles/server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
server/stack/requirements/app-server/pylock.app-server.meta.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| { | ||
| "lock_input_hash": "sha256:c836d5cfb697330a57241b2b8f275a804178488ec906b19866809ef33c95ba81", | ||
| "lock_input_hash": "sha256:d7a2f2a68301eb65d01fc121715ef8b96a6af48a315d580340d976fde6e1dc47", | ||
| "lock_version": 1, | ||
| "locked_at": "2026-03-22T21:45:51.270370+00:00", | ||
| "locked_at": "2026-03-29T17:39:54.163496+00:00", | ||
| "other_inputs_hash": "sha256:63b3c2cfe2ec414938e81dace7aac779c7b902bae681618cd8827e9f16880985", | ||
| "requirements_hash": "sha256:167a9044a762af6b1b0b26589b77a245bf351a3b74860bc9f1bc6a07053a48a7", | ||
| "requirements_hash": "sha256:d848ff36972adee8df190ab839a11cd766fcdd9577ae2e24ebbe1f25f9074da3", | ||
| "version_inputs_hash": "sha256:58db986b7cd72eeded675f7c9afd8138fe024fb51451131b5562922bbde3cf43" | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: tilesprivacy/tiles
Length of output: 2917
🏁 Script executed:
Repository: tilesprivacy/tiles
Length of output: 1515
🏁 Script executed:
Repository: tilesprivacy/tiles
Length of output: 44
🌐 Web query:
huggingface-hub 1.8.0 dependencies requests httpx💡 Result:
huggingface-hub 1.8.0 requires httpx as a core dependency (>=0.23.0, <1), but does not require requests. Since v1.0, the library has migrated from requests to httpx as its HTTP backend, dropping requests as a dependency. httpx is listed under core dependencies on PyPI, while requests is absent. It also appears as an optional dependency in some extras (e.g., oauth), but not required for base installation.
Citations:
Update downloader code to use huggingface-hub v1's
httpx-based HTTP backend instead of relying onrequests.requestsis no longer in the requirements, butserver/throttled_download_worker.pyimports it (line 29), monkeypatchesrequests.get/post(lines 99–100), and catchesrequests.exceptions.*(lines 117, 132). Similarly,server/hf_downloader.pyimportsrequestsin its fallback path (line 116) and catchesrequests.exceptions.*(lines 122, 125, 128). Hub v1.8.0 migrated fromrequeststohttpxand no longer includesrequestsas a dependency. The current monkeypatching approach will fail, and the custom throttling will not affect Hub traffic. Useset_client_factory()orset_async_client_factory()to hook into Hub's HTTP client instead.