Update README.md
Browse files
README.md
CHANGED
@@ -1062,6 +1062,20 @@ model-index:
|
|
1062 |
Due to certain internal company considerations, we have temporarily removed the model weights.
|
1063 |
It will be uploaded again after passing our internal review process.
|
1064 |
Please temporarily access this model via API: https://platform.sensenova.cn/doc?path=/chat/Embeddings/Embeddings.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1065 |
|
1066 |
**[2024-05-14]**
|
1067 |
We have currently release our model weights, training code, and tech report. Discussions are welcome.
|
|
|
1062 |
Due to certain internal company considerations, we have temporarily removed the model weights.
|
1063 |
It will be uploaded again after passing our internal review process.
|
1064 |
Please temporarily access this model via API: https://platform.sensenova.cn/doc?path=/chat/Embeddings/Embeddings.md
|
1065 |
+
There is a temporary problem with the API of this page. Please access it temporarily in the following way:
|
1066 |
+
```python
|
1067 |
+
import requests
|
1068 |
+
url = "http://103.237.28.72:8006/v1/qd"
|
1069 |
+
headers = {
|
1070 |
+
'Content-Type': 'application/json',
|
1071 |
+
'Accept': 'application/json'
|
1072 |
+
}
|
1073 |
+
data = {
|
1074 |
+
"inputs": ['hello,world']
|
1075 |
+
}
|
1076 |
+
response = requests.post(url, json=data, headers=headers)
|
1077 |
+
print(response.json())
|
1078 |
+
```
|
1079 |
|
1080 |
**[2024-05-14]**
|
1081 |
We have currently release our model weights, training code, and tech report. Discussions are welcome.
|