Unverified Commit cafc74eb authored by ishandhanani's avatar ishandhanani Committed by GitHub
Browse files

chore: fix sglang deps when installing on ARM (#1020)

parent d2768c22
......@@ -19,6 +19,9 @@ limitations under the License.
This directory contains examples and reference implementations for deploying Large Language Models (LLMs) in various configurations using SGLang. SGLang internally uses ZMQ to communicate between the ingress and the engine processes. For Dynamo, we leverage the runtime to communicate directly with the engine processes and handle ingress and pre/post processing on our end.
> [!IMPORTANT]
> SGLang currently does not have pre-built wheels for ARM. If you are on an ARM machine - you will need to install SGLang from source
## Deployment Architectures
See [deployment architectures](../llm/README.md#deployment-architectures) to learn about the general idea of the architecture. SGLang currently support only aggregated serving but routing and disaggregation support are coming very soon!
......
......@@ -34,7 +34,8 @@ dependencies = [
"distro",
"typer",
"circus>=0.17.0",
"sglang[all]==0.4.6.post2"
# SGLang does not have pre-built wheel for ARM yet so we only install for x86
"sglang[all]==0.4.6.post2; platform_machine=='x86_64'"
]
classifiers = [
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment