Files
page-assist/src/assets/locale/en/openai.json

90 lines
3.2 KiB
JSON
Raw Normal View History

{
"settings": "OpenAI Compatible API",
"heading": "OpenAI compatible API",
"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",
"help": "The base URL of the OpenAI API provider. eg (http://localhost:1234/v1)",
"required": "Base URL is required.",
"placeholder": "Enter base URL"
},
"apiKey": {
"label": "API Key",
"required": "API Key is required.",
"placeholder": "Enter API Key"
},
"submit": "Save",
"update": "Update",
"deleteConfirm": "Are you sure you want to delete this provider?",
"model": {
"title": "Model List",
"subheading": "Please select the chat models you want to use with this provider.",
"success": "Successfully added new models."
},
"tipLMStudio": "Page Assist will automatically fetch the models you loaded on LM Studio. You don't need to add them manually."
},
"addSuccess": "Provider added successfully.",
"deleteSuccess": "Provider deleted successfully.",
"updateSuccess": "Provider updated successfully.",
"delete": "Delete",
"edit": "Edit",
"newModel": "Add Models to Provider",
"noNewModel": "For LMStudio, Ollama, Llamafile, we fetch dynamically. No manual addition needed.",
"searchModel": "Search Model",
"selectAll": "Select All",
"save": "Save",
"saving": "Saving...",
"manageModels": {
"columns": {
"name": "Model Name",
"model_type": "Model Type",
"model_id": "Model ID",
"provider": "Provider Name",
"actions": "Action"
},
"tooltip": {
"delete": "Delete"
},
"confirm": {
"delete": "Are you sure you want to delete this model?"
},
"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"
}
}
}
},
"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."
}
}