Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
Qwen3-VL-Embedding_vllm
Commits
ed2965a5
Commit
ed2965a5
authored
Mar 02, 2026
by
weishb
Browse files
update README.md
parent
4562f845
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
7 deletions
+15
-7
README.md
README.md
+15
-7
No files found.
README.md
View file @
ed2965a5
...
...
@@ -65,14 +65,22 @@ docker run -it \
## 推理
### vllm
#### 单机推理
启动服务
```
bash
vllm serve Qwen/Qwen3-VL-Embedding-8B
--runner
pooling
--host
0.0.0.0
--port
8000
--served-model-name
qwen3-vl-embedding
--max-model-len
8192
--gpu-memory-utilization
0.95
```
调用服务:
```
curl -s http://127.0.0.1:8000/v1/embeddings -H "Content-Type: application/json" -d '{"model": "qwen3-vl-embedding","input": "这是一个用于测试 vLLM embedding 服务是否正常的句子。"}'
## serve启动
vllm serve Qwen/Qwen3-VL-Embedding-8B
\
--runner
pooling
\
--host
0.0.0.0
\
--port
8000
\
--served-model-name
qwen3-vl-embedding
\
--max-model-len
8192
\
--gpu-memory-utilization
0.95
## client访问
curl
-s
http://127.0.0.1:8000/v1/embeddings
\
-H
"Content-Type: application/json"
\
-d
'{"model": "qwen3-vl-embedding",
"input": "这是一个用于测试 vLLM embedding 服务是否正常的句子。"
}'
```
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment