crypticorn 2.17.0rc5__py3-none-any.whl → 2.17.0rc6__py3-none-any.whl

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.
Files changed (62) hide show
  1. crypticorn/auth/client/api/admin_api.py +6 -24
  2. crypticorn/auth/client/api/auth_api.py +36 -144
  3. crypticorn/auth/client/api/service_api.py +3 -12
  4. crypticorn/auth/client/api/user_api.py +33 -132
  5. crypticorn/auth/client/api/wallet_api.py +18 -72
  6. crypticorn/cli/templates/Dockerfile +5 -2
  7. crypticorn/common/auth.py +30 -0
  8. crypticorn/common/errors.py +10 -0
  9. crypticorn/common/pagination.py +1 -1
  10. crypticorn/common/router/admin_router.py +1 -11
  11. crypticorn/common/router/status_router.py +33 -2
  12. crypticorn/common/scopes.py +2 -2
  13. crypticorn/dex/client/api/admin_api.py +21 -84
  14. crypticorn/dex/client/api/signals_api.py +9 -36
  15. crypticorn/dex/client/api/status_api.py +6 -24
  16. crypticorn/hive/client/api/admin_api.py +18 -72
  17. crypticorn/hive/client/api/data_api.py +6 -24
  18. crypticorn/hive/client/api/models_api.py +21 -84
  19. crypticorn/hive/client/api/status_api.py +6 -24
  20. crypticorn/klines/client/api/admin_api.py +18 -72
  21. crypticorn/klines/client/api/change_in_timeframe_api.py +3 -12
  22. crypticorn/klines/client/api/funding_rates_api.py +3 -12
  23. crypticorn/klines/client/api/ohlcv_data_api.py +3 -12
  24. crypticorn/klines/client/api/status_api.py +6 -24
  25. crypticorn/klines/client/api/symbols_api.py +3 -12
  26. crypticorn/klines/client/api/udf_api.py +18 -72
  27. crypticorn/metrics/client/api/admin_api.py +18 -72
  28. crypticorn/metrics/client/api/exchanges_api.py +12 -48
  29. crypticorn/metrics/client/api/indicators_api.py +6 -24
  30. crypticorn/metrics/client/api/logs_api.py +3 -12
  31. crypticorn/metrics/client/api/marketcap_api.py +12 -48
  32. crypticorn/metrics/client/api/markets_api.py +3 -12
  33. crypticorn/metrics/client/api/quote_currencies_api.py +3 -12
  34. crypticorn/metrics/client/api/status_api.py +6 -24
  35. crypticorn/metrics/client/api/tokens_api.py +6 -24
  36. crypticorn/pay/client/api/admin_api.py +21 -84
  37. crypticorn/pay/client/api/now_payments_api.py +15 -60
  38. crypticorn/pay/client/api/payments_api.py +6 -24
  39. crypticorn/pay/client/api/products_api.py +12 -48
  40. crypticorn/pay/client/api/status_api.py +6 -24
  41. crypticorn/trade/client/__init__.py +10 -0
  42. crypticorn/trade/client/api/admin_api.py +21 -84
  43. crypticorn/trade/client/api/api_keys_api.py +207 -184
  44. crypticorn/trade/client/api/bots_api.py +2435 -662
  45. crypticorn/trade/client/api/exchanges_api.py +9 -36
  46. crypticorn/trade/client/api/notifications_api.py +18 -72
  47. crypticorn/trade/client/api/orders_api.py +3 -12
  48. crypticorn/trade/client/api/status_api.py +6 -24
  49. crypticorn/trade/client/api/strategies_api.py +15 -60
  50. crypticorn/trade/client/api/trading_actions_api.py +431 -112
  51. crypticorn/trade/client/configuration.py +2 -2
  52. crypticorn/trade/client/models/__init__.py +10 -0
  53. crypticorn/trade/client/models/paginated_response_futures_trading_action.py +134 -0
  54. crypticorn/trade/client/models/paginated_response_union_futures_trading_action_spot_trading_action.py +141 -0
  55. crypticorn/trade/client/models/paginated_response_union_futures_trading_action_spot_trading_action_data_inner.py +165 -0
  56. crypticorn/trade/client/models/spot_trading_action.py +207 -0
  57. {crypticorn-2.17.0rc5.dist-info → crypticorn-2.17.0rc6.dist-info}/METADATA +3 -3
  58. {crypticorn-2.17.0rc5.dist-info → crypticorn-2.17.0rc6.dist-info}/RECORD +62 -58
  59. {crypticorn-2.17.0rc5.dist-info → crypticorn-2.17.0rc6.dist-info}/WHEEL +0 -0
  60. {crypticorn-2.17.0rc5.dist-info → crypticorn-2.17.0rc6.dist-info}/entry_points.txt +0 -0
  61. {crypticorn-2.17.0rc5.dist-info → crypticorn-2.17.0rc6.dist-info}/licenses/LICENSE +0 -0
  62. {crypticorn-2.17.0rc5.dist-info → crypticorn-2.17.0rc6.dist-info}/top_level.txt +0 -0
@@ -69,10 +69,7 @@ class AdminApi:
69
69
  _headers: Optional[Dict[StrictStr, Any]] = None,
70
70
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
71
71
  ) -> Dict[str, object]:
72
- """Get Container Limits
73
-
74
- This method can work in both sync and async modes based on the is_sync flag.
75
- """
72
+ """Get Container Limits"""
76
73
  if self.is_sync:
77
74
  return self._get_container_limits_sync(
78
75
  _request_timeout=_request_timeout,
@@ -106,10 +103,7 @@ class AdminApi:
106
103
  _headers: Optional[Dict[StrictStr, Any]] = None,
107
104
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
108
105
  ) -> ApiResponse[Dict[str, object]]:
109
- """Get Container Limits with HTTP info
110
-
111
- This method can work in both sync and async modes based on the is_sync flag.
112
- """
106
+ """Get Container Limits with HTTP info"""
113
107
  if self.is_sync:
114
108
  return self._get_container_limits_sync_with_http_info(
115
109
  _request_timeout=_request_timeout,
@@ -143,10 +137,7 @@ class AdminApi:
143
137
  _headers: Optional[Dict[StrictStr, Any]] = None,
144
138
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
145
139
  ) -> RESTResponseType:
146
- """Get Container Limits without preloading content
147
-
148
- This method can work in both sync and async modes based on the is_sync flag.
149
- """
140
+ """Get Container Limits without preloading content"""
150
141
  if self.is_sync:
151
142
  return self._get_container_limits_sync_without_preload_content(
152
143
  _request_timeout=_request_timeout,
@@ -486,10 +477,7 @@ class AdminApi:
486
477
  _headers: Optional[Dict[StrictStr, Any]] = None,
487
478
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
488
479
  ) -> Dict[str, str]:
489
- """List Installed Packages
490
-
491
- This method can work in both sync and async modes based on the is_sync flag.
492
- """
480
+ """List Installed Packages"""
493
481
  if self.is_sync:
494
482
  return self._get_dependencies_sync(
495
483
  include=include,
@@ -531,10 +519,7 @@ class AdminApi:
531
519
  _headers: Optional[Dict[StrictStr, Any]] = None,
532
520
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
533
521
  ) -> ApiResponse[Dict[str, str]]:
534
- """List Installed Packages with HTTP info
535
-
536
- This method can work in both sync and async modes based on the is_sync flag.
537
- """
522
+ """List Installed Packages with HTTP info"""
538
523
  if self.is_sync:
539
524
  return self._get_dependencies_sync_with_http_info(
540
525
  include=include,
@@ -576,10 +561,7 @@ class AdminApi:
576
561
  _headers: Optional[Dict[StrictStr, Any]] = None,
577
562
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
578
563
  ) -> RESTResponseType:
579
- """List Installed Packages without preloading content
580
-
581
- This method can work in both sync and async modes based on the is_sync flag.
582
- """
564
+ """List Installed Packages without preloading content"""
583
565
  if self.is_sync:
584
566
  return self._get_dependencies_sync_without_preload_content(
585
567
  include=include,
@@ -970,10 +952,7 @@ class AdminApi:
970
952
  _headers: Optional[Dict[StrictStr, Any]] = None,
971
953
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
972
954
  ) -> LogLevel:
973
- """Get Logging Level
974
-
975
- This method can work in both sync and async modes based on the is_sync flag.
976
- """
955
+ """Get Logging Level"""
977
956
  if self.is_sync:
978
957
  return self._get_log_level_sync(
979
958
  _request_timeout=_request_timeout,
@@ -1007,10 +986,7 @@ class AdminApi:
1007
986
  _headers: Optional[Dict[StrictStr, Any]] = None,
1008
987
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1009
988
  ) -> ApiResponse[LogLevel]:
1010
- """Get Logging Level with HTTP info
1011
-
1012
- This method can work in both sync and async modes based on the is_sync flag.
1013
- """
989
+ """Get Logging Level with HTTP info"""
1014
990
  if self.is_sync:
1015
991
  return self._get_log_level_sync_with_http_info(
1016
992
  _request_timeout=_request_timeout,
@@ -1044,10 +1020,7 @@ class AdminApi:
1044
1020
  _headers: Optional[Dict[StrictStr, Any]] = None,
1045
1021
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1046
1022
  ) -> RESTResponseType:
1047
- """Get Logging Level without preloading content
1048
-
1049
- This method can work in both sync and async modes based on the is_sync flag.
1050
- """
1023
+ """Get Logging Level without preloading content"""
1051
1024
  if self.is_sync:
1052
1025
  return self._get_log_level_sync_without_preload_content(
1053
1026
  _request_timeout=_request_timeout,
@@ -1384,10 +1357,7 @@ class AdminApi:
1384
1357
  _headers: Optional[Dict[StrictStr, Any]] = None,
1385
1358
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1386
1359
  ) -> float:
1387
- """Get Memory Usage
1388
-
1389
- This method can work in both sync and async modes based on the is_sync flag.
1390
- """
1360
+ """Get Memory Usage"""
1391
1361
  if self.is_sync:
1392
1362
  return self._get_memory_usage_sync(
1393
1363
  _request_timeout=_request_timeout,
@@ -1421,10 +1391,7 @@ class AdminApi:
1421
1391
  _headers: Optional[Dict[StrictStr, Any]] = None,
1422
1392
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1423
1393
  ) -> ApiResponse[float]:
1424
- """Get Memory Usage with HTTP info
1425
-
1426
- This method can work in both sync and async modes based on the is_sync flag.
1427
- """
1394
+ """Get Memory Usage with HTTP info"""
1428
1395
  if self.is_sync:
1429
1396
  return self._get_memory_usage_sync_with_http_info(
1430
1397
  _request_timeout=_request_timeout,
@@ -1458,10 +1425,7 @@ class AdminApi:
1458
1425
  _headers: Optional[Dict[StrictStr, Any]] = None,
1459
1426
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1460
1427
  ) -> RESTResponseType:
1461
- """Get Memory Usage without preloading content
1462
-
1463
- This method can work in both sync and async modes based on the is_sync flag.
1464
- """
1428
+ """Get Memory Usage without preloading content"""
1465
1429
  if self.is_sync:
1466
1430
  return self._get_memory_usage_sync_without_preload_content(
1467
1431
  _request_timeout=_request_timeout,
@@ -1795,10 +1759,7 @@ class AdminApi:
1795
1759
  _headers: Optional[Dict[StrictStr, Any]] = None,
1796
1760
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1797
1761
  ) -> Dict[str, object]:
1798
- """Get Threads
1799
-
1800
- This method can work in both sync and async modes based on the is_sync flag.
1801
- """
1762
+ """Get Threads"""
1802
1763
  if self.is_sync:
1803
1764
  return self._get_threads_sync(
1804
1765
  _request_timeout=_request_timeout,
@@ -1832,10 +1793,7 @@ class AdminApi:
1832
1793
  _headers: Optional[Dict[StrictStr, Any]] = None,
1833
1794
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1834
1795
  ) -> ApiResponse[Dict[str, object]]:
1835
- """Get Threads with HTTP info
1836
-
1837
- This method can work in both sync and async modes based on the is_sync flag.
1838
- """
1796
+ """Get Threads with HTTP info"""
1839
1797
  if self.is_sync:
1840
1798
  return self._get_threads_sync_with_http_info(
1841
1799
  _request_timeout=_request_timeout,
@@ -1869,10 +1827,7 @@ class AdminApi:
1869
1827
  _headers: Optional[Dict[StrictStr, Any]] = None,
1870
1828
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1871
1829
  ) -> RESTResponseType:
1872
- """Get Threads without preloading content
1873
-
1874
- This method can work in both sync and async modes based on the is_sync flag.
1875
- """
1830
+ """Get Threads without preloading content"""
1876
1831
  if self.is_sync:
1877
1832
  return self._get_threads_sync_without_preload_content(
1878
1833
  _request_timeout=_request_timeout,
@@ -2207,10 +2162,7 @@ class AdminApi:
2207
2162
  _headers: Optional[Dict[StrictStr, Any]] = None,
2208
2163
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2209
2164
  ) -> str:
2210
- """Get Uptime
2211
-
2212
- This method can work in both sync and async modes based on the is_sync flag.
2213
- """
2165
+ """Get Uptime"""
2214
2166
  if self.is_sync:
2215
2167
  return self._get_uptime_sync(
2216
2168
  type=type,
@@ -2247,10 +2199,7 @@ class AdminApi:
2247
2199
  _headers: Optional[Dict[StrictStr, Any]] = None,
2248
2200
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2249
2201
  ) -> ApiResponse[str]:
2250
- """Get Uptime with HTTP info
2251
-
2252
- This method can work in both sync and async modes based on the is_sync flag.
2253
- """
2202
+ """Get Uptime with HTTP info"""
2254
2203
  if self.is_sync:
2255
2204
  return self._get_uptime_sync_with_http_info(
2256
2205
  type=type,
@@ -2287,10 +2236,7 @@ class AdminApi:
2287
2236
  _headers: Optional[Dict[StrictStr, Any]] = None,
2288
2237
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2289
2238
  ) -> RESTResponseType:
2290
- """Get Uptime without preloading content
2291
-
2292
- This method can work in both sync and async modes based on the is_sync flag.
2293
- """
2239
+ """Get Uptime without preloading content"""
2294
2240
  if self.is_sync:
2295
2241
  return self._get_uptime_sync_without_preload_content(
2296
2242
  type=type,
@@ -86,10 +86,7 @@ class DataApi:
86
86
  _headers: Optional[Dict[StrictStr, Any]] = None,
87
87
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
88
88
  ) -> DataDownloadResponse:
89
- """Download Data
90
-
91
- This method can work in both sync and async modes based on the is_sync flag.
92
- """
89
+ """Download Data"""
93
90
  if self.is_sync:
94
91
  return self._download_data_sync(
95
92
  model_id=model_id,
@@ -144,10 +141,7 @@ class DataApi:
144
141
  _headers: Optional[Dict[StrictStr, Any]] = None,
145
142
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
146
143
  ) -> ApiResponse[DataDownloadResponse]:
147
- """Download Data with HTTP info
148
-
149
- This method can work in both sync and async modes based on the is_sync flag.
150
- """
144
+ """Download Data with HTTP info"""
151
145
  if self.is_sync:
152
146
  return self._download_data_sync_with_http_info(
153
147
  model_id=model_id,
@@ -202,10 +196,7 @@ class DataApi:
202
196
  _headers: Optional[Dict[StrictStr, Any]] = None,
203
197
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
204
198
  ) -> RESTResponseType:
205
- """Download Data without preloading content
206
-
207
- This method can work in both sync and async modes based on the is_sync flag.
208
- """
199
+ """Download Data without preloading content"""
209
200
  if self.is_sync:
210
201
  return self._download_data_sync_without_preload_content(
211
202
  model_id=model_id,
@@ -686,10 +677,7 @@ class DataApi:
686
677
  _headers: Optional[Dict[StrictStr, Any]] = None,
687
678
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
688
679
  ) -> DataInfo:
689
- """Get Data Info
690
-
691
- This method can work in both sync and async modes based on the is_sync flag.
692
- """
680
+ """Get Data Info"""
693
681
  if self.is_sync:
694
682
  return self._get_data_info_sync(
695
683
  _request_timeout=_request_timeout,
@@ -723,10 +711,7 @@ class DataApi:
723
711
  _headers: Optional[Dict[StrictStr, Any]] = None,
724
712
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
725
713
  ) -> ApiResponse[DataInfo]:
726
- """Get Data Info with HTTP info
727
-
728
- This method can work in both sync and async modes based on the is_sync flag.
729
- """
714
+ """Get Data Info with HTTP info"""
730
715
  if self.is_sync:
731
716
  return self._get_data_info_sync_with_http_info(
732
717
  _request_timeout=_request_timeout,
@@ -760,10 +745,7 @@ class DataApi:
760
745
  _headers: Optional[Dict[StrictStr, Any]] = None,
761
746
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
762
747
  ) -> RESTResponseType:
763
- """Get Data Info without preloading content
764
-
765
- This method can work in both sync and async modes based on the is_sync flag.
766
- """
748
+ """Get Data Info without preloading content"""
767
749
  if self.is_sync:
768
750
  return self._get_data_info_sync_without_preload_content(
769
751
  _request_timeout=_request_timeout,
@@ -74,10 +74,7 @@ class ModelsApi:
74
74
  _headers: Optional[Dict[StrictStr, Any]] = None,
75
75
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
76
76
  ) -> ModelRead:
77
- """Create Model
78
-
79
- This method can work in both sync and async modes based on the is_sync flag.
80
- """
77
+ """Create Model"""
81
78
  if self.is_sync:
82
79
  return self._create_model_sync(
83
80
  model_create=model_create,
@@ -114,10 +111,7 @@ class ModelsApi:
114
111
  _headers: Optional[Dict[StrictStr, Any]] = None,
115
112
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
116
113
  ) -> ApiResponse[ModelRead]:
117
- """Create Model with HTTP info
118
-
119
- This method can work in both sync and async modes based on the is_sync flag.
120
- """
114
+ """Create Model with HTTP info"""
121
115
  if self.is_sync:
122
116
  return self._create_model_sync_with_http_info(
123
117
  model_create=model_create,
@@ -154,10 +148,7 @@ class ModelsApi:
154
148
  _headers: Optional[Dict[StrictStr, Any]] = None,
155
149
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
156
150
  ) -> RESTResponseType:
157
- """Create Model without preloading content
158
-
159
- This method can work in both sync and async modes based on the is_sync flag.
160
- """
151
+ """Create Model without preloading content"""
161
152
  if self.is_sync:
162
153
  return self._create_model_sync_without_preload_content(
163
154
  model_create=model_create,
@@ -525,10 +516,7 @@ class ModelsApi:
525
516
  _headers: Optional[Dict[StrictStr, Any]] = None,
526
517
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
527
518
  ) -> None:
528
- """Delete Model
529
-
530
- This method can work in both sync and async modes based on the is_sync flag.
531
- """
519
+ """Delete Model"""
532
520
  if self.is_sync:
533
521
  return self._delete_model_sync(
534
522
  id=id,
@@ -565,10 +553,7 @@ class ModelsApi:
565
553
  _headers: Optional[Dict[StrictStr, Any]] = None,
566
554
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
567
555
  ) -> ApiResponse[None]:
568
- """Delete Model with HTTP info
569
-
570
- This method can work in both sync and async modes based on the is_sync flag.
571
- """
556
+ """Delete Model with HTTP info"""
572
557
  if self.is_sync:
573
558
  return self._delete_model_sync_with_http_info(
574
559
  id=id,
@@ -605,10 +590,7 @@ class ModelsApi:
605
590
  _headers: Optional[Dict[StrictStr, Any]] = None,
606
591
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
607
592
  ) -> RESTResponseType:
608
- """Delete Model without preloading content
609
-
610
- This method can work in both sync and async modes based on the is_sync flag.
611
- """
593
+ """Delete Model without preloading content"""
612
594
  if self.is_sync:
613
595
  return self._delete_model_sync_without_preload_content(
614
596
  id=id,
@@ -975,10 +957,7 @@ class ModelsApi:
975
957
  _headers: Optional[Dict[StrictStr, Any]] = None,
976
958
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
977
959
  ) -> EvaluationResponse:
978
- """Evaluate Model
979
-
980
- This method can work in both sync and async modes based on the is_sync flag.
981
- """
960
+ """Evaluate Model"""
982
961
  if self.is_sync:
983
962
  return self._evaluate_model_sync(
984
963
  id=id,
@@ -1028,10 +1007,7 @@ class ModelsApi:
1028
1007
  _headers: Optional[Dict[StrictStr, Any]] = None,
1029
1008
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1030
1009
  ) -> ApiResponse[EvaluationResponse]:
1031
- """Evaluate Model with HTTP info
1032
-
1033
- This method can work in both sync and async modes based on the is_sync flag.
1034
- """
1010
+ """Evaluate Model with HTTP info"""
1035
1011
  if self.is_sync:
1036
1012
  return self._evaluate_model_sync_with_http_info(
1037
1013
  id=id,
@@ -1081,10 +1057,7 @@ class ModelsApi:
1081
1057
  _headers: Optional[Dict[StrictStr, Any]] = None,
1082
1058
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1083
1059
  ) -> RESTResponseType:
1084
- """Evaluate Model without preloading content
1085
-
1086
- This method can work in both sync and async modes based on the is_sync flag.
1087
- """
1060
+ """Evaluate Model without preloading content"""
1088
1061
  if self.is_sync:
1089
1062
  return self._evaluate_model_sync_without_preload_content(
1090
1063
  id=id,
@@ -1544,10 +1517,7 @@ class ModelsApi:
1544
1517
  _headers: Optional[Dict[StrictStr, Any]] = None,
1545
1518
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1546
1519
  ) -> ModelRead:
1547
- """Get Model
1548
-
1549
- This method can work in both sync and async modes based on the is_sync flag.
1550
- """
1520
+ """Get Model"""
1551
1521
  if self.is_sync:
1552
1522
  return self._get_model_sync(
1553
1523
  id=id,
@@ -1584,10 +1554,7 @@ class ModelsApi:
1584
1554
  _headers: Optional[Dict[StrictStr, Any]] = None,
1585
1555
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1586
1556
  ) -> ApiResponse[ModelRead]:
1587
- """Get Model with HTTP info
1588
-
1589
- This method can work in both sync and async modes based on the is_sync flag.
1590
- """
1557
+ """Get Model with HTTP info"""
1591
1558
  if self.is_sync:
1592
1559
  return self._get_model_sync_with_http_info(
1593
1560
  id=id,
@@ -1624,10 +1591,7 @@ class ModelsApi:
1624
1591
  _headers: Optional[Dict[StrictStr, Any]] = None,
1625
1592
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1626
1593
  ) -> RESTResponseType:
1627
- """Get Model without preloading content
1628
-
1629
- This method can work in both sync and async modes based on the is_sync flag.
1630
- """
1594
+ """Get Model without preloading content"""
1631
1595
  if self.is_sync:
1632
1596
  return self._get_model_sync_without_preload_content(
1633
1597
  id=id,
@@ -1985,10 +1949,7 @@ class ModelsApi:
1985
1949
  _headers: Optional[Dict[StrictStr, Any]] = None,
1986
1950
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1987
1951
  ) -> ModelRead:
1988
- """Get Model By Name
1989
-
1990
- This method can work in both sync and async modes based on the is_sync flag.
1991
- """
1952
+ """Get Model By Name"""
1992
1953
  if self.is_sync:
1993
1954
  return self._get_model_by_name_sync(
1994
1955
  name=name,
@@ -2025,10 +1986,7 @@ class ModelsApi:
2025
1986
  _headers: Optional[Dict[StrictStr, Any]] = None,
2026
1987
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2027
1988
  ) -> ApiResponse[ModelRead]:
2028
- """Get Model By Name with HTTP info
2029
-
2030
- This method can work in both sync and async modes based on the is_sync flag.
2031
- """
1989
+ """Get Model By Name with HTTP info"""
2032
1990
  if self.is_sync:
2033
1991
  return self._get_model_by_name_sync_with_http_info(
2034
1992
  name=name,
@@ -2065,10 +2023,7 @@ class ModelsApi:
2065
2023
  _headers: Optional[Dict[StrictStr, Any]] = None,
2066
2024
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2067
2025
  ) -> RESTResponseType:
2068
- """Get Model By Name without preloading content
2069
-
2070
- This method can work in both sync and async modes based on the is_sync flag.
2071
- """
2026
+ """Get Model By Name without preloading content"""
2072
2027
  if self.is_sync:
2073
2028
  return self._get_model_by_name_sync_without_preload_content(
2074
2029
  name=name,
@@ -2437,10 +2392,7 @@ class ModelsApi:
2437
2392
  _headers: Optional[Dict[StrictStr, Any]] = None,
2438
2393
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2439
2394
  ) -> List[ModelRead]:
2440
- """Get All Models
2441
-
2442
- This method can work in both sync and async modes based on the is_sync flag.
2443
- """
2395
+ """Get All Models"""
2444
2396
  if self.is_sync:
2445
2397
  return self._get_models_sync(
2446
2398
  by_user=by_user,
@@ -2490,10 +2442,7 @@ class ModelsApi:
2490
2442
  _headers: Optional[Dict[StrictStr, Any]] = None,
2491
2443
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2492
2444
  ) -> ApiResponse[List[ModelRead]]:
2493
- """Get All Models with HTTP info
2494
-
2495
- This method can work in both sync and async modes based on the is_sync flag.
2496
- """
2445
+ """Get All Models with HTTP info"""
2497
2446
  if self.is_sync:
2498
2447
  return self._get_models_sync_with_http_info(
2499
2448
  by_user=by_user,
@@ -2543,10 +2492,7 @@ class ModelsApi:
2543
2492
  _headers: Optional[Dict[StrictStr, Any]] = None,
2544
2493
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2545
2494
  ) -> RESTResponseType:
2546
- """Get All Models without preloading content
2547
-
2548
- This method can work in both sync and async modes based on the is_sync flag.
2549
- """
2495
+ """Get All Models without preloading content"""
2550
2496
  if self.is_sync:
2551
2497
  return self._get_models_sync_without_preload_content(
2552
2498
  by_user=by_user,
@@ -2992,10 +2938,7 @@ class ModelsApi:
2992
2938
  _headers: Optional[Dict[StrictStr, Any]] = None,
2993
2939
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2994
2940
  ) -> object:
2995
- """Update Model
2996
-
2997
- This method can work in both sync and async modes based on the is_sync flag.
2998
- """
2941
+ """Update Model"""
2999
2942
  if self.is_sync:
3000
2943
  return self._update_model_sync(
3001
2944
  id=id,
@@ -3035,10 +2978,7 @@ class ModelsApi:
3035
2978
  _headers: Optional[Dict[StrictStr, Any]] = None,
3036
2979
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
3037
2980
  ) -> ApiResponse[object]:
3038
- """Update Model with HTTP info
3039
-
3040
- This method can work in both sync and async modes based on the is_sync flag.
3041
- """
2981
+ """Update Model with HTTP info"""
3042
2982
  if self.is_sync:
3043
2983
  return self._update_model_sync_with_http_info(
3044
2984
  id=id,
@@ -3078,10 +3018,7 @@ class ModelsApi:
3078
3018
  _headers: Optional[Dict[StrictStr, Any]] = None,
3079
3019
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
3080
3020
  ) -> RESTResponseType:
3081
- """Update Model without preloading content
3082
-
3083
- This method can work in both sync and async modes based on the is_sync flag.
3084
- """
3021
+ """Update Model without preloading content"""
3085
3022
  if self.is_sync:
3086
3023
  return self._update_model_sync_without_preload_content(
3087
3024
  id=id,
@@ -68,10 +68,7 @@ class StatusApi:
68
68
  _headers: Optional[Dict[StrictStr, Any]] = None,
69
69
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
70
70
  ) -> str:
71
- """Time
72
-
73
- This method can work in both sync and async modes based on the is_sync flag.
74
- """
71
+ """Time"""
75
72
  if self.is_sync:
76
73
  return self._get_time_sync(
77
74
  type=type,
@@ -108,10 +105,7 @@ class StatusApi:
108
105
  _headers: Optional[Dict[StrictStr, Any]] = None,
109
106
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
110
107
  ) -> ApiResponse[str]:
111
- """Time with HTTP info
112
-
113
- This method can work in both sync and async modes based on the is_sync flag.
114
- """
108
+ """Time with HTTP info"""
115
109
  if self.is_sync:
116
110
  return self._get_time_sync_with_http_info(
117
111
  type=type,
@@ -148,10 +142,7 @@ class StatusApi:
148
142
  _headers: Optional[Dict[StrictStr, Any]] = None,
149
143
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
150
144
  ) -> RESTResponseType:
151
- """Time without preloading content
152
-
153
- This method can work in both sync and async modes based on the is_sync flag.
154
- """
145
+ """Time without preloading content"""
155
146
  if self.is_sync:
156
147
  return self._get_time_sync_without_preload_content(
157
148
  type=type,
@@ -510,10 +501,7 @@ class StatusApi:
510
501
  _headers: Optional[Dict[StrictStr, Any]] = None,
511
502
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
512
503
  ) -> str:
513
- """Ping
514
-
515
- This method can work in both sync and async modes based on the is_sync flag.
516
- """
504
+ """Ping"""
517
505
  if self.is_sync:
518
506
  return self._ping_sync(
519
507
  _request_timeout=_request_timeout,
@@ -547,10 +535,7 @@ class StatusApi:
547
535
  _headers: Optional[Dict[StrictStr, Any]] = None,
548
536
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
549
537
  ) -> ApiResponse[str]:
550
- """Ping with HTTP info
551
-
552
- This method can work in both sync and async modes based on the is_sync flag.
553
- """
538
+ """Ping with HTTP info"""
554
539
  if self.is_sync:
555
540
  return self._ping_sync_with_http_info(
556
541
  _request_timeout=_request_timeout,
@@ -584,10 +569,7 @@ class StatusApi:
584
569
  _headers: Optional[Dict[StrictStr, Any]] = None,
585
570
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
586
571
  ) -> RESTResponseType:
587
- """Ping without preloading content
588
-
589
- This method can work in both sync and async modes based on the is_sync flag.
590
- """
572
+ """Ping without preloading content"""
591
573
  if self.is_sync:
592
574
  return self._ping_sync_without_preload_content(
593
575
  _request_timeout=_request_timeout,