@neuracore/types 7.1.0 → 7.3.0

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.
@@ -874,6 +874,8 @@ export interface EndEffectorPoseDataStats {
874
874
  * expiration_time: Timestamp when the endpoint expires (if set)
875
875
  * cloud_compute_job_id: ID of the cloud compute job running this endpoint
876
876
  * zone: The GCP zone where the endpoint is running
877
+ * input_embodiment_description: Optional model input data order
878
+ * output_embodiment_description: Optional model output data order
877
879
  */
878
880
  export interface Endpoint {
879
881
  id: string;
@@ -889,6 +891,16 @@ export interface Endpoint {
889
891
  error_code?: number | null;
890
892
  expiration_time?: number | null;
891
893
  cloud_compute_job_id?: string | null;
894
+ input_embodiment_description?: {
895
+ [k: string]: {
896
+ [k: string]: string;
897
+ };
898
+ } | null;
899
+ output_embodiment_description?: {
900
+ [k: string]: {
901
+ [k: string]: string;
902
+ };
903
+ } | null;
892
904
  }
893
905
  /**
894
906
  * Description of a single episode with statistics and counts.
@@ -959,6 +971,7 @@ export interface InternalStartTrainingJobRequest {
959
971
  };
960
972
  gpu_type: GPUType;
961
973
  num_gpus: number;
974
+ disk_size_gb?: number;
962
975
  synchronization_details: SynchronizationDetails;
963
976
  input_cross_embodiment_description: {
964
977
  [k: string]: {
@@ -1572,6 +1585,7 @@ export interface TrainingJob {
1572
1585
  };
1573
1586
  gpu_type: GPUType2;
1574
1587
  num_gpus: number;
1588
+ disk_size_gb: number;
1575
1589
  resumed_at?: number | null;
1576
1590
  previous_training_time?: number | null;
1577
1591
  error?: string | null;
@@ -1617,6 +1631,7 @@ export interface TrainingJobRequest {
1617
1631
  };
1618
1632
  gpu_type: GPUType;
1619
1633
  num_gpus: number;
1634
+ disk_size_gb?: number;
1620
1635
  synchronization_details: SynchronizationDetails;
1621
1636
  input_cross_embodiment_description: {
1622
1637
  [k: string]: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuracore/types",
3
- "version": "7.1.0",
3
+ "version": "7.3.0",
4
4
  "description": "Shared TypeScript type definitions for Neuracore robotics platform",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",