kl commited on
Commit
579560f
·
verified ·
1 Parent(s): f21ded2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +148 -3
README.md CHANGED
@@ -1,3 +1,148 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # MindLink
2
+
3
+ [English](README.md) | [中文](README_CN.md)
4
+
5
+ ## 1. Model Description
6
+
7
+ We introduce **MindLink**, a new family of large language models developed by **Kunlun Inc**. Built on **Qwen**, these models incorporate our latest advances in post-training techniques. MindLink demonstrates strong performance across various common benchmarks and is widely applicable in diverse AI scenarios. We welcome feedback to help us continuously optimize and improve our models.
8
+
9
+ ### 🚀 Model Downloads
10
+
11
+ <div align="center">
12
+
13
+ | **🤖 Model** | **📏 Context Length** | **⬇️ Download** |
14
+ | :---: | :---: | :---: |
15
+ | **MindLink 32B** | `128K` | [🤗 **HuggingFace**](https://huggingface.co/Skywork/MindLink-32B-0801) |
16
+ | **MindLink 72B** | `128K` | [🤗 **HuggingFace**](https://huggingface.co/Skywork/MindLink-72B-0801) |
17
+
18
+ </div>
19
+
20
+
21
+
22
+ ### 📖 Technical Report
23
+ Our training methodology and evaluation: [MindLink](mindlink.pdf)
24
+
25
+ ---
26
+
27
+ ## 2. Highlights
28
+
29
+ * **Plan-based Reasoning**: Without the "think" tag, MindLink achieves competitive performance with leading proprietary models across a wide range of reasoning and general tasks. It significantly reduces inference cost, and improves multi-turn capabilities.
30
+ * **Mathematical Framework**: It analyzes the effectiveness of both **Chain-of-Thought (CoT)** and **Plan-based Reasoning**.
31
+ * **Adaptive Reasoning**: it automatically adapts its reasoning strategy based on task complexity: complex tasks produce detailed reasoning traces, while simpler tasks yield concise outputs.
32
+
33
+ ---
34
+
35
+ ## 2. API Access
36
+
37
+ 📢 We provide developers with a **one-month free trial** of our API for exploring and testing our models. To request access to an **Open WebUI account** (https://sd1svahsfo0m61h76e190.apigateway-cn-beijing.volceapi.com), please contact us at: **[[email protected]](mailto:[email protected])**
38
+
39
+ ⚠️ Note: If you encounter inconsistent responses during inference, we recommend clearing the session context (history) and retrying.
40
+
41
+ ### 🔧 Usage Instructions
42
+
43
+ Our Chat API supports OpenAI's format. Simply include your API Key with HTTP POST requests.
44
+
45
+ #### ✅ Sample Request using `curl`:
46
+
47
+ ```bash
48
+ curl -X POST https://sd2690u280c6ft26qcdi0.apigateway-cn-beijing.volceapi.com/v1/chat/completions \
49
+ -H "Authorization: Bearer nc6Dt7DrLJNzLELiqOR1bogO5Oh1qHtO" \
50
+ -H "Content-Type: application/json" \
51
+ -d '{
52
+ "model": "Mind_Link_beta_32B",
53
+ "messages": [
54
+ {"role": "user", "content": "What is the capital of China?"}
55
+ ],
56
+ "temperature": 0.7,
57
+ "max_tokens": 128,
58
+ "stream": false
59
+ }'
60
+ ```
61
+
62
+ #### 🐍 Sample Request using Python:
63
+
64
+ ```python
65
+ import requests
66
+
67
+ API_KEY = "nc6Dt7DrLJNzLELiqOR1bogO5Oh1qHtO"
68
+ API_URL = "https://sd2690u280c6ft26qcdi0.apigateway-cn-beijing.volceapi.com/v1/chat/completions"
69
+
70
+ headers = {
71
+ "Authorization": f"Bearer {API_KEY}",
72
+ "Content-Type": "application/json"
73
+ }
74
+
75
+ payload = {
76
+ "model": "Mind_Link_beta_32B",
77
+ "messages": [
78
+ {"role": "user", "content": "What is the capital of China?"}
79
+ ],
80
+ "temperature": 0.7,
81
+ "max_tokens": 128,
82
+ "stream": False
83
+ }
84
+
85
+ response = requests.post(API_URL, headers=headers, json=payload)
86
+
87
+ if response.status_code == 200:
88
+ reply = response.json()
89
+ print("MindLink Response:")
90
+ print(reply["choices"][0]["message"]["content"])
91
+ else:
92
+ print(f"Error {response.status_code}: {response.text}")
93
+ ```
94
+
95
+ ---
96
+
97
+ ### 🌐 API Interface Details
98
+
99
+ * **Endpoint**: `https://sd2690u280c6ft26qcdi0.apigateway-cn-beijing.volceapi.com/v1/chat/completions`
100
+ * **Authentication**: Use your API key via `Authorization: Bearer <api_key>`
101
+ * **Request Format**: Compatible with OpenAI's Chat Completion API
102
+ * **Supported Fields**: `model`, `messages`, `temperature`, `top_p`, `max_tokens`, `stream`, `stop`, etc.
103
+ * **Model Identifiers**: Use either `"Mind_Link_beta_32B"` or `"Mind_Link_beta_72B"`
104
+ * **Public API Key**: We provide the following public API key: `"nc6Dt7DrLJNzLELiqOR1bogO5Oh1qHtO"` (requests via this key enter a queue and have limited request rates; contact us for unlimited access).
105
+
106
+
107
+ ---
108
+
109
+ ## 3. Evaluation
110
+
111
+ The results are shown below:
112
+ ![Comparison between MindLink (ML) and other frontier models across various benchmarks.](./figure1.png)
113
+
114
+ ---
115
+
116
+ ## License and Usage Information
117
+
118
+ ### Model License and Terms of Use
119
+
120
+ #### 1. Core License
121
+
122
+ This model is licensed under the **Apache License 2.0**, granting users the following rights:
123
+
124
+ ✅ Commercial deployment
125
+
126
+ ✅ Source code modification
127
+
128
+ ✅ Patent authorization
129
+
130
+ ✅ Closed-source derivatives
131
+
132
+ ⚠️ Prohibition on using model names/logos for promotion without written authorization
133
+
134
+ ⚠️ No warranties provided
135
+
136
+ #### 2. Inheritance Declaration
137
+
138
+ This model is based on improvements from **Qwen** (Apache 2.0 License). You must:
139
+
140
+ * Retain original Qwen copyright notices in derivative works.
141
+ * Clearly document changes made in modification notes.
142
+ * Adhere to any additional usage restrictions imposed by Qwen.
143
+
144
+ If you have any questions, please raise an issue or contact us at [email protected].
145
+
146
+
147
+
148
+ ---