Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
<?php
2
// This file is part of Moodle - http://moodle.org/
3
//
4
// Moodle is free software: you can redistribute it and/or modify
5
// it under the terms of the GNU General Public License as published by
6
// the Free Software Foundation, either version 3 of the License, or
7
// (at your option) any later version.
8
//
9
// Moodle is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
// GNU General Public License for more details.
13
//
14
// You should have received a copy of the GNU General Public License
15
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
16
 
17
/**
18
 * Strings for component aiprovider_azureai, language 'en'.
19
 *
20
 * @package    aiprovider_azureai
21
 * @copyright  2024 Matt Porritt <matt.porritt@moodle.com>
22
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23
 */
24
 
25
$string['action:explain_text:apiversion'] = 'API version';
26
$string['action:explain_text:deployment'] = 'Deployment ID';
27
$string['action:explain_text:deployment_help'] = 'The deployment ID that relates to the API endpoint the provider uses for this action.';
28
$string['action:explain_text:systeminstruction'] = 'System instruction';
29
$string['action:explain_text:systeminstruction_help'] = 'This instruction is sent to the AI model along with the user\'s prompt. Editing this instruction is not recommended unless absolutely required.';
30
$string['action:generate_image:apiversion'] = 'API version';
31
$string['action:generate_image:deployment'] = 'Deployment ID';
32
$string['action:generate_image:deployment_help'] = 'The deployment ID that relates to the API endpoint the provider uses for this action.';
33
$string['action:generate_text:apiversion'] = 'API version';
34
$string['action:generate_text:deployment'] = 'Deployment ID';
35
$string['action:generate_text:deployment_help'] = 'The deployment ID that relates to the API endpoint the provider uses for this action.';
36
$string['action:generate_text:systeminstruction'] = 'System instruction';
37
$string['action:generate_text:systeminstruction_help'] = 'This instruction is sent to the AI model along with the user\'s prompt. Editing this instruction is not recommended unless absolutely required.';
38
$string['action:summarise_text:apiversion'] = 'API version';
39
$string['action:summarise_text:deployment'] = 'Deployment ID';
40
$string['action:summarise_text:deployment_help'] = 'The deployment ID that relates to the API endpoint the provider uses for this action.';
41
$string['action:summarise_text:systeminstruction'] = 'System instruction';
42
$string['action:summarise_text:systeminstruction_help'] = 'This instruction is sent to the AI model along with the user\'s prompt. Editing this instruction is not recommended unless absolutely required.';
43
$string['apikey'] = 'Azure AI API key';
44
$string['apikey_help'] = 'Enter your Azure AI API key.';
45
$string['endpoint'] = 'Azure AI API endpoint';
46
$string['endpoint_help'] = 'Enter the endpoint URL for your Azure AI API in the following format: https://YOUR_RESOURCE_NAME.openai.azure.com';
47
$string['pluginname'] = 'Azure AI API provider';
48
$string['privacy:metadata'] = 'The Azure AI API provider plugin does not store any personal data.';
49
$string['privacy:metadata:aiprovider_azureai:externalpurpose'] = 'This information is sent to the Azure API in order for a response to be generated. Your Azure AI account settings may change how Microsoft stores and retains this data. No user data is explicitly sent to Microsoft or stored in Moodle LMS by this plugin.';
50
$string['privacy:metadata:aiprovider_azureai:model'] = 'The model used to generate the response.';
51
$string['privacy:metadata:aiprovider_azureai:numberimages'] = 'When generating images the number of images used in the response.';
52
$string['privacy:metadata:aiprovider_azureai:prompttext'] = 'The user entered text prompt used to generate the response.';
53
$string['privacy:metadata:aiprovider_azureai:responseformat'] = 'The format of the response when generating images.';
54
 
55
// Deprecated since Moodle 5.0.
56
$string['action_apiversion'] = 'API version';
57
$string['action_deployment'] = 'Deployment ID';
58
$string['action_deployment_desc'] = 'The deployment ID that relates to the API endpoint the provider uses for this action.';
59
$string['action_systeminstruction'] = 'System instruction';
60
$string['action_systeminstruction_desc'] = 'This instruction is sent to the AI model along with the user\'s prompt. Editing this instruction is not recommended unless absolutely required.';
61
$string['apikey_desc'] = 'Enter your Azure AI API key.';
62
$string['deployment'] = 'Azure AI API deployment name';
63
$string['deployment_desc'] = 'Enter the deployment name for your Azure AI API.';
64
$string['enableglobalratelimit'] = 'Set site-wide rate limit';
65
$string['enableglobalratelimit_desc'] = 'Limit the number of requests that the Azure AI API provider can receive across the entire site every hour.';
66
$string['enableuserratelimit'] = 'Set user rate limit';
67
$string['enableuserratelimit_desc'] = 'Limit the number of requests each user can make to the Azure AI API provider every hour.';
68
$string['endpoint_desc'] = 'Enter the endpoint URL for your Azure AI API in the following format: https://YOUR_RESOURCE_NAME.openai.azure.com';
69
$string['globalratelimit'] = 'Maximum number of site-wide requests';
70
$string['globalratelimit_desc'] = 'The number of site-wide requests allowed per hour.';
71
$string['userratelimit'] = 'Maximum number of requests per user';
72
$string['userratelimit_desc'] = 'The number of requests allowed per hour, per user.';