AISettings

Endpoint for managing the settings regarding the AI Assistant.

Get the current translation settings

get
Authorizations
Responses
200

OK

get
GET /v1/aisettings/translatorSettings HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
200

OK

{
  "SubscriptionKey": "text",
  "RegionName": "text",
  "TranslatorType": "text"
}

Update the current translation settings

put
Authorizations
Body
TranslatorTypestring | nullableRead-onlyOptional
Responses
200

OK

No content

put
PUT /v1/aisettings/translatorSettings HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json-patch+json
Accept: */*
Content-Length: 2

{}
200

OK

No content

Get the current text generation settings

get
Authorizations
Responses
200

OK

get
GET /v1/aisettings/textgenerationSettings HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
200

OK

{
  "Type": "text",
  "ApiKey": "text",
  "OrganizationId": "text",
  "AssistantId": "text"
}

Update the current text generation settings

put
Authorizations
Body

The AI Assistant text generator settings.

Typestring | nullableRead-onlyOptional

The type of the current object

Responses
200

OK

No content

put
PUT /v1/aisettings/textgenerationSettings HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json-patch+json
Accept: */*
Content-Length: 62

{
  "ApiKey": "text",
  "OrganizationId": "text",
  "AssistantId": "text"
}
200

OK

No content