2024-09-28 16:08:02 +05:30
|
|
|
{
|
2024-10-12 23:49:12 +05:30
|
|
|
"settings": "OpenAI Compatible API",
|
|
|
|
|
"heading": "OpenAI compatible API",
|
2024-09-28 16:08:02 +05:30
|
|
|
"subheading": "Manage and configure your OpenAI API Compatible providers here.",
|
|
|
|
|
"addBtn": "Add Provider",
|
|
|
|
|
"table": {
|
|
|
|
|
"name": "Provider Name",
|
|
|
|
|
"baseUrl": "Base URL",
|
|
|
|
|
"actions": "Action"
|
|
|
|
|
},
|
|
|
|
|
"modal": {
|
|
|
|
|
"titleAdd": "Add New Provider",
|
|
|
|
|
"name": {
|
|
|
|
|
"label": "Provider Name",
|
|
|
|
|
"required": "Provider name is required.",
|
|
|
|
|
"placeholder": "Enter provider name"
|
|
|
|
|
},
|
|
|
|
|
"baseUrl": {
|
|
|
|
|
"label": "Base URL",
|
2024-10-12 16:53:42 +05:30
|
|
|
"help": "The base URL of the OpenAI API provider. eg (http://localhost:1234/v1)",
|
2024-09-28 16:08:02 +05:30
|
|
|
"required": "Base URL is required.",
|
|
|
|
|
"placeholder": "Enter base URL"
|
|
|
|
|
},
|
|
|
|
|
"apiKey": {
|
|
|
|
|
"label": "API Key",
|
|
|
|
|
"required": "API Key is required.",
|
|
|
|
|
"placeholder": "Enter API Key"
|
|
|
|
|
},
|
2024-09-29 19:12:19 +05:30
|
|
|
"submit": "Save",
|
2024-09-28 16:08:02 +05:30
|
|
|
"update": "Update",
|
2024-09-29 19:12:19 +05:30
|
|
|
"deleteConfirm": "Are you sure you want to delete this provider?",
|
|
|
|
|
"model": {
|
|
|
|
|
"title": "Model List",
|
2024-10-13 18:22:16 +05:30
|
|
|
"subheading": "Please select the chat models you want to use with this provider.",
|
2024-09-29 19:12:19 +05:30
|
|
|
"success": "Successfully added new models."
|
2024-10-12 23:49:12 +05:30
|
|
|
},
|
|
|
|
|
"tipLMStudio": "Page Assist will automatically fetch the models you loaded on LM Studio. You don't need to add them manually."
|
2024-09-28 16:08:02 +05:30
|
|
|
},
|
2024-10-12 23:49:12 +05:30
|
|
|
"addSuccess": "Provider added successfully.",
|
2024-09-28 16:08:02 +05:30
|
|
|
"deleteSuccess": "Provider deleted successfully.",
|
|
|
|
|
"updateSuccess": "Provider updated successfully.",
|
|
|
|
|
"delete": "Delete",
|
2024-09-29 19:12:19 +05:30
|
|
|
"edit": "Edit",
|
2024-10-13 18:22:16 +05:30
|
|
|
"newModel": "Add Models to Provider",
|
2024-11-10 15:38:03 +05:30
|
|
|
"noNewModel": "For LMStudio, Ollama, Llamafile, we fetch dynamically. No manual addition needed.",
|
2024-09-29 19:12:19 +05:30
|
|
|
"searchModel": "Search Model",
|
|
|
|
|
"selectAll": "Select All",
|
|
|
|
|
"save": "Save",
|
|
|
|
|
"saving": "Saving...",
|
|
|
|
|
"manageModels": {
|
|
|
|
|
"columns": {
|
|
|
|
|
"name": "Model Name",
|
2024-10-13 18:22:16 +05:30
|
|
|
"model_type": "Model Type",
|
2024-09-29 19:12:19 +05:30
|
|
|
"model_id": "Model ID",
|
|
|
|
|
"provider": "Provider Name",
|
|
|
|
|
"actions": "Action"
|
|
|
|
|
},
|
|
|
|
|
"tooltip": {
|
|
|
|
|
"delete": "Delete"
|
|
|
|
|
},
|
|
|
|
|
"confirm": {
|
|
|
|
|
"delete": "Are you sure you want to delete this model?"
|
2024-10-13 18:22:16 +05:30
|
|
|
},
|
|
|
|
|
"modal": {
|
|
|
|
|
"title": "Add Custom Model",
|
|
|
|
|
"form": {
|
|
|
|
|
"name": {
|
|
|
|
|
"label": "Model ID",
|
|
|
|
|
"placeholder": "llama3.2",
|
|
|
|
|
"required": "Model ID is required."
|
|
|
|
|
},
|
|
|
|
|
"provider": {
|
|
|
|
|
"label": "Provider",
|
|
|
|
|
"placeholder": "Select provider",
|
|
|
|
|
"required": "Provider is required."
|
|
|
|
|
},
|
|
|
|
|
"type": {
|
|
|
|
|
"label": "Model Type"
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-09-29 19:12:19 +05:30
|
|
|
}
|
2024-10-12 16:53:42 +05:30
|
|
|
},
|
2024-10-13 18:22:16 +05:30
|
|
|
"noModelFound": "No model found. Make sure you have added correct provider with base URL and API key.",
|
|
|
|
|
"radio": {
|
|
|
|
|
"chat": "Chat Model",
|
|
|
|
|
"embedding": "Embedding Model",
|
|
|
|
|
"chatInfo": "is used for chat completion and conversation generation",
|
|
|
|
|
"embeddingInfo": "is used for RAG and other semantic search related tasks."
|
|
|
|
|
}
|
2024-09-28 16:08:02 +05:30
|
|
|
}
|