@neuracore/types 6.5.1 → 6.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/neuracore_types.d.ts +14 -0
- package/package.json +1 -1
|
@@ -613,11 +613,25 @@ export interface DataFormat10 {
|
|
|
613
613
|
ik_init_config?: number[] | null;
|
|
614
614
|
[k: string]: unknown;
|
|
615
615
|
}
|
|
616
|
+
/**
|
|
617
|
+
* Request model for dataset updates.
|
|
618
|
+
*
|
|
619
|
+
* Attributes:
|
|
620
|
+
* name: Optional new name for the dataset.
|
|
621
|
+
* description: Optional new description.
|
|
622
|
+
* tags: Optional new list of tags.
|
|
623
|
+
*/
|
|
624
|
+
export interface DatasetUpdateRequest {
|
|
625
|
+
name?: string | null;
|
|
626
|
+
description?: string | null;
|
|
627
|
+
tags?: string[] | null;
|
|
628
|
+
}
|
|
616
629
|
/**
|
|
617
630
|
* Configuration for model deployment.
|
|
618
631
|
*
|
|
619
632
|
* Attributes:
|
|
620
633
|
* machine_type: Type of machine to use for deployment.
|
|
634
|
+
* If None, the backend will auto-determine based on gpu_type.
|
|
621
635
|
* gpu_type: Type of GPU to use for deployment.
|
|
622
636
|
* gpu_count: Number of GPUs to use for deployment.
|
|
623
637
|
*/
|