You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Training properties are added - launch_training_completion and launch_training_chat for commands for starting training the models.
Also properties lora_completion and lora_chat were added for the location of the .gguf lora files. If not empty - options for lora adapters are added on starting the server from properties launch_completion and launch_chat.
The chat with UI for now can't use Lora adapter. This will require a change in webui.
"description": "Shell command for starting chat llama.cpp server, executed from the menu"
144
144
},
145
+
"llama-vscode.launch_training_completion": {
146
+
"type": "string",
147
+
"default": "",
148
+
"description": "Shell command for starting training a completion (fim) model from the menu"
149
+
},
150
+
"llama-vscode.launch_training_chat": {
151
+
"type": "string",
152
+
"default": "",
153
+
"description": "Shell command for starting training a chat model from the menu"
154
+
},
155
+
"llama-vscode.lora_completion": {
156
+
"type": "string",
157
+
"default": "",
158
+
"description": "Path to the lora adapter file for the completion model. If not empty it will be used (appends --lora lora_completion) on starting the completion server with launch_completion"
159
+
},
160
+
"llama-vscode.lora_chat": {
161
+
"type": "string",
162
+
"default": "",
163
+
"description": "Path to the lora adapter file for the chat model. If not empty it will be used (appends --lora lora_chat) on starting the completion server with launch_chat"
["llama-vscode extension is updated.","Разширението llama-vscode е актуализирано.","Die llama-vscode-Erweiterung ist aktualisiert.","Расширение llama-vscode обновлено.","La extensión llama-vscode está actualizada.","llama-vscode扩展已更新。","L'extension llama-vscode est mise à jour."],
56
56
["There is no command to execute.","Няма команда за изпълнение.","Es gibt keinen Befehl zum Ausführen.","Нет команды для выполнения.","No hay comando para ejecutar.","没有可执行的命令。","Il n'y a aucune commande à exécuter."],
57
57
["Error executing command","Грешка при изпълнение на командата","Fehler beim Ausführen des Befehls","Ошибка выполнения команды","Error al ejecutar el comando","执行命令时出错","Erreur lors de l'exécution de la commande"],
58
+
["Start training completion model","Стартиране на модел за завършване на обучение","Starten des Trainingsabschlussmodells","Запуск модели завершения обучения","Iniciar modelo de finalización de entrenamiento","启动训练完成模型","Démarrer le modèle de complétion d'entraînement"],
59
+
["Runs the command from property launch_training_completion","Изпълнява командата от свойството launch_training_completion","Führt den Befehl aus der Eigenschaft launch_training_completion aus","Выполняет команду из свойства launch_training_completion","Ejecuta el comando desde la propiedad launch_training_completion","从属性 launch_training_completion 运行命令","Exécute la commande depuis la propriété launch_training_completion"],
60
+
["Start training chat model","Стартиране на модел за чат обучение","Starten des Chat-Trainingsmodells","Запуск модели обучения чата","Iniciar modelo de entrenamiento de chat","启动训练聊天模型","Démarrer le modèle d'entraînement de chat"],
61
+
["Runs the command from property launch_training_chat","Изпълнява командата от свойството launch_training_chat","Führt den Befehl aus der Eigenschaft launch_training_chat aus","Выполняет команду из свойства launch_training_chat","Ejecuta el comando desde la propiedad launch_training_chat","从属性 launch_training_chat 运行命令","Exécute la commande depuis la propriété launch_training_chat"],
62
+
["Stop training","Спиране на обучението","Training beenden","Остановить обучение","Detener entrenamiento","停止训练","Arrêter l'entraînement"],
63
+
["Stops training if it was started from llama.vscode menu","Спира обучението, ако е стартирано от менюто llama.vscode","Stoppt das Training, wenn es über das Menü llama.vscode gestartet wurde","Останавливает обучение, если оно было запущено из меню llama.vscode","Detiene el entrenamiento si se inició desde el menú llama.vscode","如果从 llama.vscode 菜单启动,则停止训练","Arrête l'entraînement s'il a été lancé depuis le menu llama.vscode"],
0 commit comments