-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathmarketplace.json
65 lines (65 loc) · 2.32 KB
/
marketplace.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"label": "Machine Learning Accelerator",
"category_label": "Applications",
"branding": {
"image_uri": "https://marketplace-api.looker.com/app-icons/bqml-ext.png",
"tagline": "Gain deeper insights with machine learning.",
"brand_color": "#4285F4"
},
"constants": {
"CONNECTION_NAME": {
"label": "LookML Constant: BigQuery Connection Name",
"description": "The BigQuery connection the application will be allowed to use. Must be the same connection as chosen below.",
"value_constraint": "connection"
}
},
"user_attributes": {
"bigquery_connection_name": {
"label": "BigQuery Connection Name",
"description": "The BigQuery connection the application will be allowed to use. Must be the same connection as chosen above.",
"type": "string",
"required": true,
"value_is_hidden": false,
"user_can_view": true,
"user_can_edit": false,
"default_value": "",
"value_constraint": "connection"
},
"gcp_project": {
"label": "GCP Project ID",
"description": "The GCP project ID for the BigQuery dataset where ML models will be saved.",
"type": "string",
"required": true,
"value_is_hidden": false,
"user_can_view": true,
"user_can_edit": false,
"default_value": ""
},
"bqml_model_dataset_name": {
"label": "BQML Model Dataset Name",
"description": "The dataset where ML models will be saved. Create a new dataset for BQML models (recommended) or choose the same dataset used for Looker PDTs.",
"type": "string",
"required": true,
"value_is_hidden": false,
"user_can_view": true,
"user_can_edit": false,
"default_value": ""
},
"generate_text_model_name": {
"label": "GenAI Text Model Name",
"description": "Name of an LLM model to generate text summaries (optional feature). Must be in same dataset as above. See https://github.com/looker-open-source/app-ml-accelerator/blob/main/README.md#7-setup-ai-generated-evaluation-summaries for setup instructions.",
"type": "string",
"required": false,
"value_is_hidden": false,
"user_can_view": true,
"user_can_edit": false,
"default_value": ""
}
},
"models": [
{
"name": "ml_accelerator",
"connection_constant": "CONNECTION_NAME"
}
]
}