mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-22 03:30:04 +00:00
fix: inception provider labels
This commit is contained in:
parent
2cb79c89d7
commit
380f2f8797
4 changed files with 5 additions and 5 deletions
|
|
@ -244,7 +244,7 @@ public class ModelComboBoxAction extends ComboBoxAction {
|
|||
}
|
||||
|
||||
if (availableProviders.contains(INCEPTION)) {
|
||||
var inceptionGroup = DefaultActionGroup.createPopupGroup(() -> "Inception Labs");
|
||||
var inceptionGroup = DefaultActionGroup.createPopupGroup(() -> "Inception");
|
||||
inceptionGroup.getTemplatePresentation().setIcon(Icons.Inception);
|
||||
inceptionGroup.add(createInceptionModelAction(presentation));
|
||||
actionGroup.add(inceptionGroup);
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ class ServiceConfigurableComponent {
|
|||
"Mistral" to MistralServiceConfigurable::class.java,
|
||||
"LLaMA C/C++" to LlamaServiceConfigurable::class.java,
|
||||
"Ollama" to OllamaSettingsConfigurable::class.java,
|
||||
"Inception Labs" to InceptionServiceConfigurable::class.java,
|
||||
"Inception" to InceptionServiceConfigurable::class.java,
|
||||
).entries.forEach { (name, configurableClass) ->
|
||||
formBuilder.addComponent(ActionLink(name) {
|
||||
val context = service<DataManager>().getDataContext(it.source as ActionLink)
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@
|
|||
displayName="Ollama (Offline)"
|
||||
instance="ee.carlrobert.codegpt.settings.service.ollama.OllamaSettingsConfigurable"/>
|
||||
<applicationConfigurable id="settings.codegpt.services.inception" parentId="settings.codegpt.services"
|
||||
displayName="Inception Labs"
|
||||
displayName="Inception"
|
||||
instance="ee.carlrobert.codegpt.settings.service.InceptionServiceConfigurable"/>
|
||||
<applicationConfigurable id="settings.codegpt.models" parentId="settings.codegpt" bundle="messages.codegpt"
|
||||
key="settings.models.displayName"
|
||||
|
|
|
|||
|
|
@ -240,7 +240,7 @@ toolwindow.chat.editor.action.insertAtCaret.title=Insert at Caret
|
|||
toolwindow.chat.editor.action.insertAtCaret.description=Insert generated code after main editor caret position
|
||||
toolwindow.chat.editor.action.expand=Show More
|
||||
toolwindow.chat.editor.action.collapse=Show Less
|
||||
settingsConfigurable.service.inception.apiKey.comment=Get your API key from the <a href="https://platform.inceptionlabs.ai/dashboard/api-keys">Inception Labs dashboard</a>.
|
||||
settingsConfigurable.service.inception.apiKey.comment=Get your API key from the <a href="https://platform.inceptionlabs.ai/dashboard/api-keys">Inception dashboard</a>.
|
||||
toolwindow.chat.response.action.reloadResponse.text=Reload Response
|
||||
toolwindow.chat.response.action.reloadResponse.description=Reload response description
|
||||
toolwindow.chat.response.action.deleteResponse.text=Delete Response
|
||||
|
|
@ -257,7 +257,7 @@ service.anthropic.title=Anthropic
|
|||
service.azure.title=Azure
|
||||
service.google.title=Google
|
||||
service.mistral.title=Mistral
|
||||
service.inception.title=Inception Labs
|
||||
service.inception.title=Inception
|
||||
service.llama.title=LLaMA C/C++
|
||||
service.ollama.title=Ollama
|
||||
validation.error.model.notExists='%s' is not available, please select another model
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue