mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Machine Learning Services - Enabling external script for package management only (#9519)
* Machine learning services extension - removed config table and added config update to package manager
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "machineLearningServices",
|
||||
"name": "machine-learning-services",
|
||||
"displayName": "%displayName%",
|
||||
"description": "%description%",
|
||||
"version": "1.0.0",
|
||||
@@ -14,7 +14,7 @@
|
||||
"onDashboardOpen"
|
||||
],
|
||||
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt",
|
||||
"icon": "images/ML_ExtensionIcon.png",
|
||||
"icon": "images/extensionIcon.png",
|
||||
"aiKey": "AIF-37eefaf0-8022-4671-a3fb-64752724682e",
|
||||
"main": "./out/main",
|
||||
"repository": {
|
||||
@@ -59,7 +59,11 @@
|
||||
},
|
||||
{
|
||||
"command": "mls.command.predictModel",
|
||||
"title": "%mls.command.predictModel%"
|
||||
"title": "%mls.command.predictModel%",
|
||||
"icon": {
|
||||
"light": "./images/makePredictions.svg",
|
||||
"dark": "./images/makePredictions.svg"
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "mls.command.manageModels",
|
||||
@@ -67,7 +71,11 @@
|
||||
},
|
||||
{
|
||||
"command": "mls.command.registerModel",
|
||||
"title": "%mls.command.registerModel%"
|
||||
"title": "%mls.command.registerModel%",
|
||||
"icon": {
|
||||
"light": "./images/registerModel.svg",
|
||||
"dark": "./images/registerModel.svg"
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "mls.command.manageLanguages",
|
||||
@@ -95,20 +103,10 @@
|
||||
"when": "connectionProvider == 'MSSQL' && !mssql:iscloud && dashboardContext == 'server'",
|
||||
"container": {
|
||||
"grid-container": [
|
||||
{
|
||||
"name": "%title.configurations%",
|
||||
"row": 0,
|
||||
"col": 0,
|
||||
"widget": {
|
||||
"modelview": {
|
||||
"id": "ml.tasks"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "%title.tasks%",
|
||||
"row": 0,
|
||||
"col": 1,
|
||||
"col": 0,
|
||||
"widget": {
|
||||
"tasks-widget": [
|
||||
"mls.command.managePackages",
|
||||
@@ -120,8 +118,8 @@
|
||||
},
|
||||
{
|
||||
"name": "%title.documents%",
|
||||
"row": 1,
|
||||
"col": 0,
|
||||
"row": 0,
|
||||
"col": 1,
|
||||
"widget": {
|
||||
"tasks-widget": [
|
||||
"mls.command.odbcdriver",
|
||||
@@ -138,7 +136,7 @@
|
||||
"request": "^2.88.0",
|
||||
"vscode-nls": "^4.0.0",
|
||||
"vscode-languageclient": "^5.3.0-next.1",
|
||||
"@azure/arm-machinelearningservices" : "^3.0.0",
|
||||
"@azure/arm-machinelearningservices": "^3.0.0",
|
||||
"polly-js": "^1.6.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
@@ -153,6 +151,6 @@
|
||||
"vscodetestcover": "github:corivera/vscodetestcover#1.0.5"
|
||||
},
|
||||
"resolutions": {
|
||||
"esprima": "^4.0.0"
|
||||
"esprima": "^4.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user