bruno/memori-backend/CompletionConfig/Creates a new Completion Config object.--The created Completion Config object is owned by the currently logged-in user.bru

40 lines
750 B
Plaintext
Raw Normal View History

2025-03-26 15:08:31 +01:00
meta {
name: Creates a new Completion Config object.
The created Completion Config object is owned by the currently logged-in user.
type: http
seq: 5
}
post {
url: {{baseUrl}}/api/v2/CompletionConfig/:strToken
body: json
auth: none
}
params:path {
strToken:
}
body:json {
{
"completionConfigID": "",
"configName": "",
"description": "",
"provider": "",
"endPoint": "",
"apiKey": "",
"model": "",
"questionAnsweringEnabled": "",
"importExportEnabled": "",
"deepThoughtEnabled": "",
"ownerUserID": "",
"ownerUserName": "",
"ownerTenantName": "",
"visibleToTenantUsers": "",
"visibleToOtherUsers": "",
"useAsDefault": "",
"chargeable": "",
"applyTo": ""
}
}