forked from opengovern/og-describer-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
table_index_map.go
29 lines (25 loc) · 940 Bytes
/
table_index_map.go
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
package steampipe
import (
"github.com/opengovern/og-describer-cohereai/pkg/sdk/es"
)
var Map = map[string]string{
"CohereAI/Connectors": "cohereai_connectors",
"CohereAI/Models": "cohereai_models",
"CohereAI/Datasets": "cohereai_datasets",
"CohereAI/FineTunedModel": "cohereai_fine_tuned_models",
"CohereAI/EmbedJob": "cohereai_embed_jobs",
}
var DescriptionMap = map[string]interface{}{
"CohereAI/Connectors": opengovernance.Connector{},
"CohereAI/Models": opengovernance.Model{},
"CohereAI/Datasets": opengovernance.Dataset{},
"CohereAI/FineTunedModel": opengovernance.FineTunedModel{},
"CohereAI/EmbedJob": opengovernance.EmbedJob{},
}
var ReverseMap = map[string]string{
"cohereai_connectors": "CohereAI/Connectors",
"cohereai_models": "CohereAI/Models",
"cohereai_datasets": "CohereAI/Datasets",
"cohereai_fine_tuned_models": "CohereAI/FineTunedModel",
"cohereai_embed_jobs": "CohereAI/EmbedJob",
}