AliasSubAiOpenAi
This page provides generated reference documentation for the AliasSubAiOpenAi data model.
Overview
| Property | Summary |
|---|---|
| endpointUrl | This property allows specifying the endpoint URL for AI requests e.g., https://api.openai.com/v1/chat/completions. |
| token | This property allows specifying the API key for the specified endpoint. |
| requestParameters | Specifies a JSON object which request parameters will be sent to the AI endpoint e.g. { model: 'gpt-3.5-turbo', max_tokens: 2000, temperature: 1, top_p:… |
| timeout | Defines the timeout duration in milliseconds for requests to the AI service. This property determines the maximum time allowed for a request to be… |
endpointUrl
Type: String
This property allows specifying the endpoint URL for AI requests e.g., https://api.openai.com/v1/chat/completions.
token
Type: String
This property allows specifying the API key for the specified endpoint.
requestParameters
Type: String
Specifies a JSON object which request parameters will be sent to the AI endpoint e.g. { model: 'gpt-3.5-turbo', max_tokens: 2000, temperature: 1, top_p: 1, stream: true }; When used within the CKEditor the default parameters will be overwritten.
timeout
Type: Long
Default: 300000
Defines the timeout duration in milliseconds for requests to the AI service. This property determines the maximum time allowed for a request to be completed. If the request exceeds this duration, it will be considered as timed out. The default value is 300000 (5 minutes).