"name-max-length":"Name should be less than 256 characters.",
"name-max-length":"Name must be 255 characters or less.",
"provider":"Provider",
"api-key":"API key",
"api-key-required":"API key is required.",
@ -1133,22 +1134,28 @@
"deployment-name":"Deployment name",
"deployment-name-required":"Deployment name is required",
"set":"Set",
"region":"Region",
"region-required":"Region is required.",
"access-key-id":"Access key ID",
"access-key-id-required":"Access key ID is required.",
"secret-access-key":"Secret access key",
"secret-access-key-required":"Secret access key is required.",
"temperature":"Temperature",
"temperature-hint":"Adjusts the level of randomness in the model's output. Higher values increase randomness, while lower values decrease it.",
"temperature-min":"Min value is 0.",
"temperature-min":"Must be 0 or greater.",
"top-p":"Top P",
"top-p-hint":"Creates a pool of the most probable tokens for the model to choose from. Higher values create a larger and more diverse pool, while lower values create a smaller one.",
"top-p-min-max":"Min value is more than 0, max value is 1.",
"top-p-min-max":"Must be greater than 0 and up to 1.",
"top-k":"Top K",
"top-k-hint":"Restricts the model's choices to a fixed set of the \"K\" most likely tokens.",
"top-k-min":"Min value is 0.",
"top-k-min":"Must be 0 or greater.",
"presence-penalty":"Presence penalty",
"presence-penalty-hint":"Applies a fixed penalty to the likelihood of a token if it has already appeared in the text.",
"frequency-penalty":"Frequency penalty",
"frequency-penalty-hint":"Applies a penalty to a token's likelihood that increases based on its frequency in the text.",
"max-output-token":"Maximum output token",
"max-output-token-min":"Min value is more than 0.",
"max-output-token-hint":"Sets the maximum number of tokens that the \nmodel can generate in a single response.",
"max-output-tokens":"Maximum output tokens",
"max-output-tokens-min":"Must be greater than 0.",
"max-output-tokens-hint":"Sets the maximum number of tokens that the \nmodel can generate in a single response.",
"endpoint":"Endpoint",
"endpoint-required":"Endpoint id required.",
"service-version":"Service version",
@ -5432,6 +5439,7 @@
},
"ai":{
"ai-model":"AI model",
"model":"Model",
"ai-model-hint":"Select the pre-configured AI model to process requests sent by this rule node, or use \"Create new\" to configure a new one.",
"prompt-settings":"Prompt settings",
"prompt-settings-hint":"Configure the instructions for the AI. The optional system prompt sets the AI's general role and constraints, while the user prompt defines the specific task to perform. Both fields also support rule node templates to include dynamic data (e.g., use $[*] to access the entire message body or ${*} to access all metadata).",
@ -5443,14 +5451,16 @@
"user-prompt-max-length":"User prompt must be 10000 characters or less.",
"user-prompt-blank":"User prompt must not be blank.",
"response-format":"Response format",
"response-format-hint":"The model is required to generate a JSON that matches the specific structure and data types defined in the provided schema. If the output is not a valid JSON object, it will be automatically wrapped within a JSON object under the \"response\" key.",
"response-text":"Text",
"response-json":"JSON",
"response-json-schema":"JSON Schema",
"response-format-hint-TEXT":"Allows the model to generate arbitrary text, which may or may not be a valid JSON object. If the output is not a valid JSON object, it will be automatically wrapped within a JSON object under the \"response\" key.",
"response-format-hint-JSON":"The model is required to generate a response that is a valid JSON. If the output is not a valid JSON object, it will be automatically wrapped within a JSON object under the \"response\" key.",
"response-format-hint-JSON_SCHEMA":"The model is required to generate a JSON that matches the specific structure and data types defined in the provided schema. If the output is not a valid JSON object, it will be automatically wrapped within a JSON object under the \"response\" key.",
"response-json-schema-hint":"While any valid JSON Schema can be entered, this rule node only supports a limited subset of its features. See node documentation for details.",
"response-json-schema-required":"JSON Schema is required",
"advanced-settings":"Advanced settings",
"timeout":"Timeout",
"timeout":"Timeout *",
"timeout-hint":"Maximum time to wait for a response \nfrom the AI model before the request is terminated.",
"timeout-required":"Timeout is required",
"timeout-validation":"Must be from 1 second to 10 minutes.",