Update README_zh.md
Browse files- README_zh.md +16 -0
README_zh.md
CHANGED
@@ -5,6 +5,22 @@
|
|
5 |
出于公司内部的某些原因,我们暂时下架了模型权重。
|
6 |
通过我们的内部审核流程后,权重会尽快再次上传。
|
7 |
请暂时通过API访问该模型:https://platform.sensenova.cn/doc?path=/chat/Embeddings/Embeddings.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
**[2024-05-14]**
|
10 |
我们目前已经发布了模型权重、训练代码和技术报告,欢迎大家关注。
|
|
|
5 |
出于公司内部的某些原因,我们暂时下架了模型权重。
|
6 |
通过我们的内部审核流程后,权重会尽快再次上传。
|
7 |
请暂时通过API访问该模型:https://platform.sensenova.cn/doc?path=/chat/Embeddings/Embeddings.md
|
8 |
+
(该页面API暂时有问题,请暂时通过下面这种方式访问):
|
9 |
+
|
10 |
+
```python
|
11 |
+
import requests
|
12 |
+
url = "http://103.237.28.72:8006/v1/qd"
|
13 |
+
headers = {
|
14 |
+
'Content-Type': 'application/json',
|
15 |
+
'Accept': 'application/json'
|
16 |
+
}
|
17 |
+
data = {
|
18 |
+
"inputs": ['hello,world']
|
19 |
+
}
|
20 |
+
response = requests.post(url, json=data, headers=headers)
|
21 |
+
print(response.json())
|
22 |
+
```
|
23 |
+
|
24 |
|
25 |
**[2024-05-14]**
|
26 |
我们目前已经发布了模型权重、训练代码和技术报告,欢迎大家关注。
|