@@ -25,26 +25,26 @@ type Dataset struct {
25
25
type datasetRequest struct {
26
26
Input string `json:"input"`
27
27
Workspace string `json:"workspace"`
28
- DatasetToolRepo string `json:"dataset_tool_repo "`
28
+ DatasetToolRepo string `json:"datasetToolRepo "`
29
29
}
30
30
31
31
type createDatasetArgs struct {
32
- Name string `json:"dataset_name "`
33
- Description string `json:"dataset_description "`
32
+ Name string `json:"datasetName "`
33
+ Description string `json:"datasetDescription "`
34
34
}
35
35
36
36
type addDatasetElementArgs struct {
37
- DatasetID string `json:"dataset_id "`
38
- ElementName string `json:"element_name "`
39
- ElementDescription string `json:"element_description "`
40
- ElementContent string `json:"element_content "`
37
+ DatasetID string `json:"datasetID "`
38
+ ElementName string `json:"elementName "`
39
+ ElementDescription string `json:"elementDescription "`
40
+ ElementContent string `json:"elementContent "`
41
41
}
42
42
43
43
type listDatasetElementArgs struct {
44
- DatasetID string `json:"dataset_id "`
44
+ DatasetID string `json:"datasetID "`
45
45
}
46
46
47
47
type getDatasetElementArgs struct {
48
- DatasetID string `json:"dataset_id "`
48
+ DatasetID string `json:"datasetID "`
49
49
Element string `json:"element"`
50
50
}
0 commit comments