-
Notifications
You must be signed in to change notification settings - Fork 508
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
Add documentations for Installation #1733
Conversation
docs/en/quick_start.md
Outdated
# Server Quick Start | ||
|
||
This guide will help you quickly set up and run the SGLang server, and send test requests for both generative and embedding models. | ||
|
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.
Current outline
- Step 1
- Generative model (90% user)
- Embedding model (10% user)
- Step 2
- Generative model (90% user)
- Embedding model (10% user)
Correct outline
- Generative model (90% user)
- Step 1
- Step 2
- Embedding model (10% user)
- Step 1
- Step 2
Principal:
|
@merrymercy Hey, plz check if this version of |
docs/en/backend_overview.md
Outdated
@@ -0,0 +1,40 @@ | |||
# Backend Overview |
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.
Is this file necessary? i think the paper already provides a good overview
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.
This document serves as a learning guide, and I believe it is necessary. As you can gain insights from the Stoicheia, there remains a need to acquire new Geometry material. Anyway, I will set this aside for now and ensure it is placed appropriately later.
docs/en/add_new_model.md
Outdated
@@ -1,4 +1,4 @@ | |||
# How to Support a New Model | |||
# Add New Models |
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.
revert the change of this file, and only keep install.md
docs/en/index.rst
Outdated
@@ -1,14 +1,20 @@ | |||
SGLang Documentation |
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.
revert the change of this file, and only keep install.md
docs/en/install.md
Outdated
pip install --upgrade pip | ||
pip install "sglang[all]" | ||
|
||
# Install FlashInfer CUDA kernels |
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.
keep this
docs/en/install.md
Outdated
lmsysorg/sglang:latest \ | ||
python3 -m sglang.launch_server --model-path meta-llama/Llama-3.1-8B-Instruct --host 0.0.0.0 --port 30000 | ||
python3 -m sglang.launch_server --model-path meta-llama/Meta-Llama-3.1-8B-Instruct --host 0.0.0.0 --port 30000 |
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.
revert this line
thanks for help @merrymercy @ByronHsu |
Motivation
I added documents for the installation right now. Other files like
docs/en/quick_start.md
could be ignored and I will wrap it intoindex.rst
later.Modifications
#1487
Checklist