Views
No views yet
allenai/Dolci-Instruct-SFTnvidia/Nemotron-SFT-Instruction-Following-Chat-v2Jackrong/DeepSeek-V4-Distill-8000x| Parameter | Value | Purpose |
|---|---|---|
| Temperature | 0.4 - 1.0 | Essential for keeping reasoning deterministic and focused. |
| Repetition Penalty | 1.15 - 1.2 | Acts as a safety net to help the model break out of residual loops. |
| Top K / Top P | 30 / 0.9 | Provides the model with enough vocabulary depth for technical tasks. |
| enable_thinking | True | Recommended to leverage the internal reasoning architecture. |
| context_length & max_token | > 4096 | Allow the model to freely reason through. This model usually take more than 4000 - 5000 tokens to reason. |
1from openai import OpenAI
2# Configured by environment variables
3client = OpenAI()
4
5messages = [
6 {
7 "role": "user",
8 "content": [
9 {
10 "type": "image_url",
11 "image_url": {
12 "url": "https://qianwen-res.oss-accelerate.aliyuncs.com/Qwen3.5/demo/RealWorld/RealWorld-04.png"
13 }
14 },
15 {
16 "type": "text",
17 "text": "Where is this?"
18 }
19 ]
20 }
21]
22
23chat_response = client.chat.completions.create(
24 model="ertghiu256/Qwen3.5-2b-ReMix-final",
25 messages=messages,
26 max_tokens=32768,
27 temperature=0.7,
28 top_p=0.9,
29 repeat_penalty=1.2,
30 extra_body={
31 "top_k": 30,
32 },
33)
34print("Chat response:", chat_response)