2024-04-26 18:05:14 +08:00
|
|
|
|
|
|
|
### chat call
|
|
|
|
GET {{baseUrl}}/ai/chat/modal/list
|
|
|
|
Authorization: {{token}}
|
|
|
|
|
|
|
|
|
|
|
|
### chat call
|
|
|
|
PUT {{baseUrl}}/ai/chat/modal
|
|
|
|
Content-Type: application/json
|
|
|
|
Authorization: {{token}}
|
|
|
|
|
|
|
|
{
|
2024-05-06 16:38:33 +08:00
|
|
|
"name": "小红书Ai写作大模型4.0",
|
|
|
|
"modal": "ERNIE 4.0",
|
2024-05-06 16:32:47 +08:00
|
|
|
"platform": "yiyan",
|
|
|
|
"imageUrl": "",
|
2024-05-06 16:38:33 +08:00
|
|
|
"sort": 100,
|
2024-05-06 16:32:47 +08:00
|
|
|
"config": {
|
|
|
|
"topK": 0.6,
|
|
|
|
"topP": 0.6,
|
|
|
|
"temperature": 0.86,
|
|
|
|
"maxTokens": 2048
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
### chat call
|
|
|
|
POST {{baseUrl}}/ai/chat/modal/7
|
|
|
|
Content-Type: application/json
|
|
|
|
Authorization: {{token}}
|
|
|
|
|
|
|
|
{
|
|
|
|
"name": "小红书Ai写作大模型-plus",
|
|
|
|
"modal": "ERNIE-3.5-8K",
|
|
|
|
"platform": "yiyan",
|
|
|
|
"imageUrl": "",
|
2024-05-06 16:38:33 +08:00
|
|
|
"sort": 1,
|
2024-05-06 16:32:47 +08:00
|
|
|
"config": {
|
|
|
|
"topK": 0.6,
|
|
|
|
"topP": 0.6,
|
|
|
|
"temperature": 0.86,
|
|
|
|
"maxTokens": 2048
|
|
|
|
}
|
2024-04-26 18:05:14 +08:00
|
|
|
}
|