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
Kimi-K2.6
Commits
94cad9f3
Commit
94cad9f3
authored
Apr 22, 2026
by
dengjb
Browse files
update
parent
abd00af2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
+26
-0
README.md
README.md
+26
-0
No files found.
README.md
View file @
94cad9f3
...
...
@@ -60,6 +60,32 @@ pip install pycountry
## 推理
### vLLM
#### 单机推理
1.
启动vllm server
```
bash
## serve启动
vllm serve moonshotai/Kimi-K2.6
\
-tp
16
\
--distributed-executor-backend
ray
\
--gpu-memory-utilization
0.95
\
--mm-encoder-tp-mode
data
\
--trust-remote-code
\
--tool-call-parser
kimi_k2
\
--reasoning-parser
kimi_k2
## client访问
curl http://localhost:8000/v1/chat/completions
\
-H
"Content-Type: application/json"
\
-d
'{
"model": "moonshotai/Kimi-K2.6",
"messages": [
{"role": "user", "content": "牛顿提出了哪三大运动定律?请简要说明。"}
],
"temperature": 0.6
}'
```
#### 多机推理
1.
加入环境变量
> 请注意:
...
...
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