truefoundry 0.4.9rc1__py3-none-any.whl → 0.5.0__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.

Potentially problematic release.


This version of truefoundry might be problematic. Click here for more details.

Files changed (78) hide show
  1. truefoundry/deploy/__init__.py +5 -0
  2. truefoundry/deploy/builder/builders/tfy_python_buildpack/dockerfile_template.py +2 -2
  3. truefoundry/deploy/lib/dao/application.py +2 -1
  4. truefoundry/deploy/v2/lib/patched_models.py +8 -0
  5. truefoundry/ml/__init__.py +41 -1
  6. truefoundry/ml/autogen/client/__init__.py +44 -14
  7. truefoundry/ml/autogen/client/api/__init__.py +3 -3
  8. truefoundry/ml/autogen/client/api/deprecated_api.py +333 -0
  9. truefoundry/ml/autogen/client/api/generate_code_snippet_api.py +526 -0
  10. truefoundry/ml/autogen/client/api/mlfoundry_artifacts_api.py +0 -322
  11. truefoundry/ml/autogen/client/api_client.py +8 -1
  12. truefoundry/ml/autogen/client/models/__init__.py +41 -11
  13. truefoundry/ml/autogen/client/models/add_features_to_model_version_request_dto.py +3 -17
  14. truefoundry/ml/autogen/client/models/agent.py +1 -1
  15. truefoundry/ml/autogen/client/models/agent_app.py +1 -1
  16. truefoundry/ml/autogen/client/models/agent_open_api_tool.py +1 -1
  17. truefoundry/ml/autogen/client/models/agent_open_api_tool_with_fqn.py +1 -1
  18. truefoundry/ml/autogen/client/models/agent_with_fqn.py +1 -1
  19. truefoundry/ml/autogen/client/models/artifact_version_dto.py +3 -5
  20. truefoundry/ml/autogen/client/models/artifact_version_manifest.py +111 -0
  21. truefoundry/ml/autogen/client/models/assistant_message.py +1 -1
  22. truefoundry/ml/autogen/client/models/blob_storage_reference.py +1 -1
  23. truefoundry/ml/autogen/client/models/chat_prompt.py +1 -1
  24. truefoundry/ml/autogen/client/models/command.py +152 -0
  25. truefoundry/ml/autogen/client/models/{feature_dto.py → create_workflow_task_config_request_dto.py} +18 -14
  26. truefoundry/ml/autogen/client/models/{external_model_source.py → external_artifact_source.py} +12 -11
  27. truefoundry/ml/autogen/client/models/fast_ai_framework.py +75 -0
  28. truefoundry/ml/autogen/client/models/finalize_artifact_version_request_dto.py +3 -5
  29. truefoundry/ml/autogen/client/models/framework.py +250 -14
  30. truefoundry/ml/autogen/client/models/gluon_framework.py +74 -0
  31. truefoundry/ml/autogen/client/models/{upload_model_source.py → h2_o_framework.py} +11 -11
  32. truefoundry/ml/autogen/client/models/image_content_part.py +1 -1
  33. truefoundry/ml/autogen/client/models/keras_framework.py +74 -0
  34. truefoundry/ml/autogen/client/models/light_gbm_framework.py +75 -0
  35. truefoundry/ml/autogen/client/models/manifest.py +154 -0
  36. truefoundry/ml/autogen/client/models/model_version_dto.py +7 -8
  37. truefoundry/ml/autogen/client/models/model_version_environment.py +97 -0
  38. truefoundry/ml/autogen/client/models/model_version_manifest.py +30 -6
  39. truefoundry/ml/autogen/client/models/onnx_framework.py +74 -0
  40. truefoundry/ml/autogen/client/models/paddle_framework.py +75 -0
  41. truefoundry/ml/autogen/client/models/py_torch_framework.py +75 -0
  42. truefoundry/ml/autogen/client/models/{feature_value_type.py → serialization_format.py} +8 -8
  43. truefoundry/ml/autogen/client/models/sklearn_framework.py +92 -0
  44. truefoundry/ml/autogen/client/models/source.py +23 -46
  45. truefoundry/ml/autogen/client/models/source1.py +154 -0
  46. truefoundry/ml/autogen/client/models/spa_cy_framework.py +74 -0
  47. truefoundry/ml/autogen/client/models/stats_models_framework.py +75 -0
  48. truefoundry/ml/autogen/client/models/system_message.py +1 -1
  49. truefoundry/ml/autogen/client/models/{tensorflow_framework.py → tensor_flow_framework.py} +11 -10
  50. truefoundry/ml/autogen/client/models/text_content_part.py +1 -1
  51. truefoundry/ml/autogen/client/models/transformers_framework.py +10 -4
  52. truefoundry/ml/autogen/client/models/trigger_job_run_config_request_dto.py +90 -0
  53. truefoundry/ml/autogen/client/models/trigger_job_run_config_response_dto.py +71 -0
  54. truefoundry/ml/autogen/client/models/{truefoundry_model_source.py → true_foundry_artifact_source.py} +13 -11
  55. truefoundry/ml/autogen/client/models/update_artifact_version_request_dto.py +11 -1
  56. truefoundry/ml/autogen/client/models/update_model_version_request_dto.py +1 -13
  57. truefoundry/ml/autogen/client/models/user_message.py +1 -1
  58. truefoundry/ml/autogen/client/models/xg_boost_framework.py +92 -0
  59. truefoundry/ml/autogen/client_README.md +30 -12
  60. truefoundry/ml/autogen/entities/artifacts.py +87 -9
  61. truefoundry/ml/autogen/models/__init__.py +4 -0
  62. truefoundry/ml/autogen/models/exceptions.py +30 -0
  63. truefoundry/ml/autogen/models/schema.py +1547 -0
  64. truefoundry/ml/autogen/models/signature.py +139 -0
  65. truefoundry/ml/autogen/models/utils.py +699 -0
  66. truefoundry/ml/log_types/artifacts/artifact.py +131 -63
  67. truefoundry/ml/log_types/artifacts/general_artifact.py +7 -26
  68. truefoundry/ml/log_types/artifacts/model.py +195 -197
  69. truefoundry/ml/mlfoundry_api.py +47 -52
  70. truefoundry/ml/mlfoundry_run.py +35 -43
  71. truefoundry/ml/model_framework.py +169 -0
  72. {truefoundry-0.4.9rc1.dist-info → truefoundry-0.5.0.dist-info}/METADATA +1 -1
  73. {truefoundry-0.4.9rc1.dist-info → truefoundry-0.5.0.dist-info}/RECORD +75 -53
  74. truefoundry/ml/autogen/client/api/python_deployment_config_api.py +0 -201
  75. truefoundry/ml/autogen/client/models/model_schema_dto.py +0 -85
  76. truefoundry/ml/autogen/client/models/prediction_type.py +0 -34
  77. {truefoundry-0.4.9rc1.dist-info → truefoundry-0.5.0.dist-info}/WHEEL +0 -0
  78. {truefoundry-0.4.9rc1.dist-info → truefoundry-0.5.0.dist-info}/entry_points.txt +0 -0
@@ -35,7 +35,7 @@ truefoundry/common/exceptions.py,sha256=ePpiQ_zmWe4e94gOgeMiyP_AZnKwjEBfyXsB5ScG
35
35
  truefoundry/common/request_utils.py,sha256=5xw4YGUcMf71Ncal3OfFCa-PoWDIvG3hYGCDa4Da4OI,2854
36
36
  truefoundry/common/servicefoundry_client.py,sha256=2fxmgCM-ckFHpnm6n_mL-5Z8RWN_q-dYVvFC29bkYSg,3120
37
37
  truefoundry/common/utils.py,sha256=MYFjNtHGqauqhj9tmbdErCJR49AfXDwg-5kYbBh8HpI,3258
38
- truefoundry/deploy/__init__.py,sha256=ugawKF2G02EmEXX35oZ2tec12d9oWN28Sf6mtGGIERY,2281
38
+ truefoundry/deploy/__init__.py,sha256=p14_yIJw2bcaKW3c1DTaoM7UwfHvt2T_MfeFlZIz1g4,2359
39
39
  truefoundry/deploy/auto_gen/models.py,sha256=8848BDbq2hO8Y75LsBH3cS0vi8qEOKU5x6oBtVmYorE,82552
40
40
  truefoundry/deploy/builder/__init__.py,sha256=1qjHMNBE1poRCZW0WrG46dFM1f1IlivD5352qzsioMU,4953
41
41
  truefoundry/deploy/builder/builders/__init__.py,sha256=tlFLXqyDaKLd4iZbo4Hcu_8gOmgtL6drnXpbmQ6x1P8,636
@@ -43,7 +43,7 @@ truefoundry/deploy/builder/builders/dockerfile.py,sha256=AXXTziCkaqIhuM_bwyD1vT1
43
43
  truefoundry/deploy/builder/builders/tfy_notebook_buildpack/__init__.py,sha256=UmMcTY-8MrLY3H5owpn6ax-VePQl4MiMTmHlQ9qEtQw,1742
44
44
  truefoundry/deploy/builder/builders/tfy_notebook_buildpack/dockerfile_template.py,sha256=rQgdvKmAT9HArVW4TAG5yd2QTKRs3S5LJ9RQbc_EkHE,2518
45
45
  truefoundry/deploy/builder/builders/tfy_python_buildpack/__init__.py,sha256=XNJ3MKWqyWIbFNnUQMpB8oVC5Pt5Wsm_bRKbvkXRIG8,1696
46
- truefoundry/deploy/builder/builders/tfy_python_buildpack/dockerfile_template.py,sha256=nwTpeIrDOZC8_m_VcbQ5Vp_rEO2ioC8FtzOEo17JY7A,7373
46
+ truefoundry/deploy/builder/builders/tfy_python_buildpack/dockerfile_template.py,sha256=rg6xGLGBUHbB3Col2NLLMP2fXlyTg8YrPFCdnFV5Bko,7327
47
47
  truefoundry/deploy/builder/constants.py,sha256=eIukBjD6I4KvEmAPpdbPlPPr76yhS-uNr3RVFkzEdgs,257
48
48
  truefoundry/deploy/builder/docker_service.py,sha256=OI8efqK0Gnoii8bcHihpA2StwHVzsMREfBk7NvMR4hY,3950
49
49
  truefoundry/deploy/builder/utils.py,sha256=9RZnkhoHFTRUt_x3nck0aVz7cLpzA3jiwQH-ZZZrjf8,938
@@ -95,7 +95,7 @@ truefoundry/deploy/lib/clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
95
95
  truefoundry/deploy/lib/clients/servicefoundry_client.py,sha256=tkuPNbo9vDTgXPHD4p3d-t6HigBvKNfML1pTQXBwJfY,26170
96
96
  truefoundry/deploy/lib/const.py,sha256=repGJLuoMqtzeq5tCjjkN4bH187FVHVKI30BricOlvc,244
97
97
  truefoundry/deploy/lib/dao/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
- truefoundry/deploy/lib/dao/application.py,sha256=uUTFSQkLUrFCtQQgS2Jm9BpyHyhMkN4GI1yx9oJo4_E,9161
98
+ truefoundry/deploy/lib/dao/application.py,sha256=xUqF34abde71YZo9gkR-WvVJi1C6nBeGBNw4kL5FdIo,9226
99
99
  truefoundry/deploy/lib/dao/apply.py,sha256=sXnQY6RVzLVm1fX2BKuWHAoKlKISirrcByHEhY3x4zo,2570
100
100
  truefoundry/deploy/lib/dao/version.py,sha256=AtdW_4O1DPUKdfv2qy6iUJsZ_95vM6z0AqeEy3WDKs8,1130
101
101
  truefoundry/deploy/lib/dao/workspace.py,sha256=jm8UWytwVajVcrYyHSTCwWYDYl-RHuk0zAf9Caj4GzQ,2356
@@ -114,7 +114,7 @@ truefoundry/deploy/v2/lib/deploy.py,sha256=HIcY3SzQ5lWl7avuuKi3J0Z-PBES6Sf4hgMK-
114
114
  truefoundry/deploy/v2/lib/deploy_workflow.py,sha256=hgAhd1EGwFLz319Vs-WNXHDJmbKjdgkGPzDnBD1Up1k,12579
115
115
  truefoundry/deploy/v2/lib/deployable_patched_models.py,sha256=MROgMxhn9hDEAKwJSWl3iz12tUVvRKzEtqF2QUT6dAk,3343
116
116
  truefoundry/deploy/v2/lib/models.py,sha256=pSolLMTArDuYpeNsmeeS5DWliloN_iCDfZSpRllMHUg,1120
117
- truefoundry/deploy/v2/lib/patched_models.py,sha256=sokVDUdnhe3qx6dXlHM0shbf6HvSlF72-mvi8Lzt_Y8,13968
117
+ truefoundry/deploy/v2/lib/patched_models.py,sha256=NTU8J_CwdvEuF9zNXwFyN3suOp_196Wrm75DDy5qcXE,14184
118
118
  truefoundry/deploy/v2/lib/source.py,sha256=VHKuFREiixUP40D3Mrz-TA70spu1M0RbCzl--qwlFaY,9263
119
119
  truefoundry/langchain/__init__.py,sha256=zeYKxKrQhfYXQuBec3wvB_ZqKowDUUjLUKUhbiu9ZFs,558
120
120
  truefoundry/langchain/deprecated.py,sha256=8tfLHXwcifGl7DYhMNfzc4zRVCVqEgARg5BsbZp11NE,10835
@@ -123,48 +123,50 @@ truefoundry/langchain/truefoundry_embeddings.py,sha256=8nRaZ7W1ao1WF0LHk6nNel1Lu
123
123
  truefoundry/langchain/truefoundry_llm.py,sha256=CJXyCgXIMbDsVRuuvEA5PKJsf6aRyVlYuG7zC4qtZXE,3802
124
124
  truefoundry/langchain/utils.py,sha256=PGLDe9chZ3BuUjakexOGpIqZRFoHEgu-zJ9yKdpLLmM,1329
125
125
  truefoundry/logger.py,sha256=u-YCNjg5HBwE70uQcpjIG64Ghos-K2ulTWaxC03BSj4,714
126
- truefoundry/ml/__init__.py,sha256=2A1l7pgqbVRt3cRW_0Lxg92hyJEkMxkCUh1EFprrmc0,942
126
+ truefoundry/ml/__init__.py,sha256=6TB5Jry2jwfSs-tgl8S8Hu1EmrR8n5mQELz141SfyvQ,1882
127
127
  truefoundry/ml/artifact/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
128
  truefoundry/ml/artifact/truefoundry_artifact_repo.py,sha256=FksxhUpRHb9pgWZmAB16DhXqkAL6UIAPA1S3RJUApQU,46201
129
129
  truefoundry/ml/autogen/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
130
- truefoundry/ml/autogen/client/__init__.py,sha256=B6Z0oUmE-S9YqUCDRpKDuTyNWX2Fmx4es7nWx7Bhy10,17600
131
- truefoundry/ml/autogen/client/api/__init__.py,sha256=3sMSljMIS3UHYeF0BcNvrPPx6VbBSRt_1IfDn-13Kyc,752
130
+ truefoundry/ml/autogen/client/__init__.py,sha256=VhsUk7ZaC935BmG5sF4F5FCIWT0wBO60Itq6TscQGzY,19100
131
+ truefoundry/ml/autogen/client/api/__init__.py,sha256=NyMBxBmIzB1o5LzZZwz9LiydHB3-hPqc_sevsnY6Jrw,746
132
132
  truefoundry/ml/autogen/client/api/auth_api.py,sha256=zpWzJhUmW6HHMY_atlUf0B25k77E1kue2hmix5I5Ih0,7017
133
- truefoundry/ml/autogen/client/api/deprecated_api.py,sha256=JCQ39Y3VHdgJ1zM4XVabdTl6QpOHtQFjh04XUb6mN9A,24218
133
+ truefoundry/ml/autogen/client/api/deprecated_api.py,sha256=mu5x_skNcwz8v1Tr6VP72-tVP7pmBV9muyKy_2NH3F0,38824
134
134
  truefoundry/ml/autogen/client/api/experiments_api.py,sha256=mRKS8qGzcFJUpTWjfQoFYm2KI8jTHxBzA0l_foSCLM0,74880
135
+ truefoundry/ml/autogen/client/api/generate_code_snippet_api.py,sha256=C8iABP-pYIyIoTlL8PFi3ZBG_6B_dkQf09eErNeoj7A,22316
135
136
  truefoundry/ml/autogen/client/api/health_api.py,sha256=IAPhRAo9CLUT5ipVR1fCf-qDx57UR0wg5ekhtUl8lug,11554
136
137
  truefoundry/ml/autogen/client/api/metrics_api.py,sha256=q3L38eD-2hu4_9YvcSdnWDYXD2V8il-X9reinOAABek,14908
137
- truefoundry/ml/autogen/client/api/mlfoundry_artifacts_api.py,sha256=smLST3wBZnMw0VrTDR5y1IuJvzV6n89nLWqUMB5mavY,313547
138
- truefoundry/ml/autogen/client/api/python_deployment_config_api.py,sha256=8P53aegaaZp1LEV9_GDNSCofgxRXP3Atyprc2bUvvpI,8348
138
+ truefoundry/ml/autogen/client/api/mlfoundry_artifacts_api.py,sha256=i9uLXUCuQtiQG15bqutEcGyiE9gDeE_2cebN56iBGk0,299272
139
139
  truefoundry/ml/autogen/client/api/run_artifacts_api.py,sha256=x-vVnY2LEFChZxiiFauswRWwFz6Qqh30PKXjzuTvxmc,8799
140
140
  truefoundry/ml/autogen/client/api/runs_api.py,sha256=-aghrZ2VYuZOw_vBtOzWDsnK7Ji29oZQxK2CLRgyo2w,119232
141
- truefoundry/ml/autogen/client/api_client.py,sha256=8qg-WpadDuKgbRt5yABJ4wVS4IRxd5e7rbwe8zBW2wA,28851
141
+ truefoundry/ml/autogen/client/api_client.py,sha256=M31IycWorn10FYS8WbO_Whaipr0tVu2pVWFCfbS7XCo,29167
142
142
  truefoundry/ml/autogen/client/api_response.py,sha256=KRyvecPMXF05PaxILHZ8JHoP4rgKBjKONMgG83aU-rM,844
143
143
  truefoundry/ml/autogen/client/configuration.py,sha256=V1oaEnxt-NfpaNmp-EZpf2glovzVhM2coWYt8HBNB4M,15723
144
144
  truefoundry/ml/autogen/client/exceptions.py,sha256=XbCbDHhYT3BVejdoGNPgEa4oS56ypkwFdxk1iOc_tFY,5355
145
- truefoundry/ml/autogen/client/models/__init__.py,sha256=PNukskNa-cv5uP25VmJXrZAZygCoyPis4LkMVLRA7M4,16216
145
+ truefoundry/ml/autogen/client/models/__init__.py,sha256=4QIxjTctvKlPt0-vQsdrsxOltRa7AwWMLj31k4kdF0o,17722
146
146
  truefoundry/ml/autogen/client/models/add_custom_metrics_to_model_version_request_dto.py,sha256=_ISDspicTGjBCYYXubKfRYYSSQVyW3AvG-jFh47-Zfc,2163
147
- truefoundry/ml/autogen/client/models/add_features_to_model_version_request_dto.py,sha256=rU0h96pEE8K1Ukw2pzDSjq0e6BgtDEuOctI-aZMrpUY,2653
148
- truefoundry/ml/autogen/client/models/agent.py,sha256=fnMWdEPe5Iw50WKydtu7QAxU419j3ju1IukpChUnGqY,3871
149
- truefoundry/ml/autogen/client/models/agent_app.py,sha256=h-0xdTMDE6FPzvksnbhVSXOBrhGlRmPHx5MMqOY3JRI,3665
150
- truefoundry/ml/autogen/client/models/agent_open_api_tool.py,sha256=QotUMmGqAMpNsRFwVoNJHg9OeobimS-Wc9Eb85VRD24,5023
151
- truefoundry/ml/autogen/client/models/agent_open_api_tool_with_fqn.py,sha256=8iHIEpGtQJO8QZS66T0FysqKg1VaxJT44hPu_a6zuwE,5121
152
- truefoundry/ml/autogen/client/models/agent_with_fqn.py,sha256=_LFRmdT0KNe1CRNBfEt9gFbBvGMiwPInbesHSKrLH-g,3976
147
+ truefoundry/ml/autogen/client/models/add_features_to_model_version_request_dto.py,sha256=OT1-98DyWNfAHz_EgD2gMX2XkrGQ4Re945fhoAl8qSE,2099
148
+ truefoundry/ml/autogen/client/models/agent.py,sha256=lUAbs092yo9hZmqzX6atKebDNf1uEwTf5jLvjOdvoeM,3872
149
+ truefoundry/ml/autogen/client/models/agent_app.py,sha256=LK13z4IZLdE63ySz4IICq0Hn_mC02ijqzA_6Bm1mK3w,3666
150
+ truefoundry/ml/autogen/client/models/agent_open_api_tool.py,sha256=pZaKMzo6mB1t9RGI6mbE_NiWr3wzmVwhIeIFOVCR_iY,5024
151
+ truefoundry/ml/autogen/client/models/agent_open_api_tool_with_fqn.py,sha256=QbRhX7bsE8w8okRS2C2q4edkQXaw61AJLt-hHvBJv5w,5122
152
+ truefoundry/ml/autogen/client/models/agent_with_fqn.py,sha256=zYfLximM_vq4lDaw5_DPnYgvkwIHk_VVPp-inC_6_t4,3977
153
153
  truefoundry/ml/autogen/client/models/artifact_dto.py,sha256=JWL8_sITJJXbxywcfRj4xqt8jR9pyBmA4TfwNTdX6CE,4243
154
154
  truefoundry/ml/autogen/client/models/artifact_response_dto.py,sha256=T_HLjkHnqiO1bnSXiCUOlwDEHGz89mlUNhBq0SJTapo,2226
155
155
  truefoundry/ml/autogen/client/models/artifact_type.py,sha256=LBXGYUoesmL5J-0xzCR8jBST3bjb6HY86RmqSGvytRs,828
156
- truefoundry/ml/autogen/client/models/artifact_version_dto.py,sha256=oGWsRSxLDy8aGMI9dfaaNZH9JpPnqLevWSRmMCsHo44,6233
156
+ truefoundry/ml/autogen/client/models/artifact_version_dto.py,sha256=GXjjKycpsEgJ60V2hAfL4NMxM2gZKLP2qV2yBb9WgdM,6174
157
+ truefoundry/ml/autogen/client/models/artifact_version_manifest.py,sha256=EjmUxCLoN8wt-icGXAqd_q6nPwl3yBDwVqKu7kTYiLA,3532
157
158
  truefoundry/ml/autogen/client/models/artifact_version_response_dto.py,sha256=JmiSYdPYG-ki6LCBeF7NtihdQ2LPiHld8cSPivY2GmQ,2421
158
159
  truefoundry/ml/autogen/client/models/artifact_version_serialization_format.py,sha256=2Qfgq1nykn0_mKNEJzOxhQwHm_95WIr9wJcHLeFWXQM,774
159
160
  truefoundry/ml/autogen/client/models/artifact_version_status.py,sha256=iIcomqhuaJkZH2rT3e6IjQutM79t9hEshW-RCIMKHEY,780
160
- truefoundry/ml/autogen/client/models/assistant_message.py,sha256=rmCQ4OAbVpjbX3rXiNtv2ePxV-7kq6Eg1Bs_tm_rmNE,2845
161
+ truefoundry/ml/autogen/client/models/assistant_message.py,sha256=m2Lj8plDuJ8QatY19oOSNE77nxr-WwPE4csBPoAIugY,2846
161
162
  truefoundry/ml/autogen/client/models/authorize_user_for_model_request_dto.py,sha256=G00T6eroxZrDw782-UBCQxlkwkxyAPfmvd9QNcMiZDI,2017
162
163
  truefoundry/ml/autogen/client/models/authorize_user_for_model_version_request_dto.py,sha256=Cy_7YVK47WMgweWbrSzR8-pb3B0WotriQWrKYdcxhvk,2070
163
- truefoundry/ml/autogen/client/models/blob_storage_reference.py,sha256=UcfYHxRyJyDMge90Ln9Agm9ynbddVjOvGonX6VeKFKo,2995
164
+ truefoundry/ml/autogen/client/models/blob_storage_reference.py,sha256=A6rATKEkYcSSShSInrJtKxwi8GsRuS3JJiq8xi9WFBc,2996
164
165
  truefoundry/ml/autogen/client/models/body_get_search_runs_get.py,sha256=aGu5Ah2QB-fnke4joOSAnhD5aO0BFGP3dzZcvSNSe-s,2064
165
- truefoundry/ml/autogen/client/models/chat_prompt.py,sha256=PFpvfDGWLSUWYTHEFAOtScJeTYjUUziQD_Meii2D0gw,5974
166
+ truefoundry/ml/autogen/client/models/chat_prompt.py,sha256=Yq-DP0ur-ECcxcZH5HiKLcNdWtaTNS_WOdA1nGY3lRE,5975
166
167
  truefoundry/ml/autogen/client/models/chat_prompt_messages_inner.py,sha256=nk4hWTl1i3IfFbXVE6cSC-z-QxW4m_YAF05wXdUYYCc,5751
167
168
  truefoundry/ml/autogen/client/models/columns_dto.py,sha256=bjSjp-DA2YdjohahziETrfMkKNWFAjDL7XQgSUhvNJA,2070
169
+ truefoundry/ml/autogen/client/models/command.py,sha256=q6yFdBsXZkMFCK8DfNx1JmW8WIHY6scvfQL9NUmQWik,4790
168
170
  truefoundry/ml/autogen/client/models/content.py,sha256=vns4BcEnkkZissELyrvak7ZYPyn-lrRcdAGmdYsIBoU,4945
169
171
  truefoundry/ml/autogen/client/models/content1.py,sha256=Sh22V-dSQr8zz2N2BgqeTtauE_9dijwydAjpW6uH1z0,4951
170
172
  truefoundry/ml/autogen/client/models/content2.py,sha256=T55JENSS5E9HRkefccw24L7PB-rNp3VP1ppXfV7BNHk,5920
@@ -184,6 +186,7 @@ truefoundry/ml/autogen/client/models/create_python_deployment_config_request_dto
184
186
  truefoundry/ml/autogen/client/models/create_python_deployment_config_response_dto.py,sha256=5fnCJ7ybEcRA03s8ZLGdt1w8_Xz5nt6-PPmvA6Yxt60,2051
185
187
  truefoundry/ml/autogen/client/models/create_run_request_dto.py,sha256=OqhHezsPGygl5m3BlEHmKGlCNf2t5FUFQJLwdmHfggg,2841
186
188
  truefoundry/ml/autogen/client/models/create_run_response_dto.py,sha256=cFzIkhbiB_IEmQSx1asNAzPMN-MzCBtqWj2PJ3oTLTM,2169
189
+ truefoundry/ml/autogen/client/models/create_workflow_task_config_request_dto.py,sha256=u-jNJgSeUUCbvyXq9Tg0TUKYh1dTRsrLktXWIkvOoWA,2193
187
190
  truefoundry/ml/autogen/client/models/dataset_dto.py,sha256=V3dIdK93YQ8mtolY8Onz2N17HQYm3bLUMn98dVg7tGo,4100
188
191
  truefoundry/ml/autogen/client/models/dataset_response_dto.py,sha256=5h3eHpiG4Zzqn5Hm0WpZgyXGjxujKem42_8YnGq5KLo,2205
189
192
  truefoundry/ml/autogen/client/models/delete_artifact_versions_request_dto.py,sha256=JF2dQuEe_W1c2ox9zZDER_pZSTbKwSnns8hIfG5o7oA,1905
@@ -196,12 +199,11 @@ truefoundry/ml/autogen/client/models/experiment_dto.py,sha256=bl4-Hp1EHl8CEKgWq6
196
199
  truefoundry/ml/autogen/client/models/experiment_id_request_dto.py,sha256=ZMH827n_UTpDI30UnkuOam-4ANBKCDgocIzI8StxFR8,1891
197
200
  truefoundry/ml/autogen/client/models/experiment_response_dto.py,sha256=wuflV6_f8PQq061-wU2GzNY4BZi8SG8ARCIbSQN1oT4,2268
198
201
  truefoundry/ml/autogen/client/models/experiment_tag_dto.py,sha256=nEpCkeZ9ficIDkjmmLfkJeNNokd-Rhgr-cepPWG6L3M,1902
199
- truefoundry/ml/autogen/client/models/external_model_source.py,sha256=Vzn1sbjMtQYuMEVjd9hxH0TupGG7vwzqadwE4l9vzs8,2286
200
- truefoundry/ml/autogen/client/models/feature_dto.py,sha256=XM7fF71P_bYP3UlO1ILjnD3DJNpf2tGwAWbrkQyvyA4,1924
201
- truefoundry/ml/autogen/client/models/feature_value_type.py,sha256=3ZKxxEfrrWk8ePlV7n11wa-FdDH0SRLyHRqSvIU7F-M,732
202
+ truefoundry/ml/autogen/client/models/external_artifact_source.py,sha256=h94vLz48yQg5l86V17Ve9PuwMnmkrLJxeDlX_tFOJ48,2361
203
+ truefoundry/ml/autogen/client/models/fast_ai_framework.py,sha256=GwVoMbIzYhr4srFXyFb565qq-_Q-7SkUsjT7zlRGz2k,2171
202
204
  truefoundry/ml/autogen/client/models/file_info_dto.py,sha256=7oc8venicsFVk8zT9wHNhHnZGtFkFlqimFnS7ozGL9k,2156
203
- truefoundry/ml/autogen/client/models/finalize_artifact_version_request_dto.py,sha256=tArvzRPp80PpfJ4CoMwwaKqPAfzonq-8C-yKBEjs9co,3877
204
- truefoundry/ml/autogen/client/models/framework.py,sha256=Z_91ZrPWB22mHnKWBgbXHhY5NzHdmfTATBd2iQPNIaU,5131
205
+ truefoundry/ml/autogen/client/models/finalize_artifact_version_request_dto.py,sha256=tkPcNjI0_qhX-D3m6AXqLzdmo9_K0tFBtbPDeg0Zo7U,3818
206
+ truefoundry/ml/autogen/client/models/framework.py,sha256=W_KrqH1qKRvlrssCCWFIlmPaeAw0eiM6VqS3pbdlMXU,14720
205
207
  truefoundry/ml/autogen/client/models/get_experiment_response_dto.py,sha256=FhJpoUeRbZV1s1KR3Y07Kv6U4enLbbgdpGbguT9us0A,2923
206
208
  truefoundry/ml/autogen/client/models/get_latest_run_log_response_dto.py,sha256=g5NG252VzjGHiA-w5nhxmZxGrowJO9XCHDQTjf8y2KE,2266
207
209
  truefoundry/ml/autogen/client/models/get_metric_history_response.py,sha256=rTchO8o4sjGsNaZj8TW-VGtGGxsOBjUGzgaAWNtBZ-k,2428
@@ -214,12 +216,16 @@ truefoundry/ml/autogen/client/models/get_signed_urls_for_dataset_read_request_dt
214
216
  truefoundry/ml/autogen/client/models/get_signed_urls_for_dataset_read_response_dto.py,sha256=1EQ33wOq7VpAlt7o-5XCBZ2mpn5GXKrOUfULbp4gA2g,2627
215
217
  truefoundry/ml/autogen/client/models/get_signed_urls_for_dataset_write_response_dto.py,sha256=tRud_0Qrr4DtXD1SMSnouVlxrV6WaL5FG2mG626CFZ0,2635
216
218
  truefoundry/ml/autogen/client/models/get_tenant_id_response_dto.py,sha256=zEG9rogifl100cOqshYDNJE-faxGF3ayRb1RNWCtaXo,2142
219
+ truefoundry/ml/autogen/client/models/gluon_framework.py,sha256=T9ppm2DsubHcAKsKDDaeFjG88tJix6bdduLCfNpYeac,2150
220
+ truefoundry/ml/autogen/client/models/h2_o_framework.py,sha256=5X-0Xbt4tpecV_q6WwGqxGDvfT6Bue30XW0SiSJojXE,2126
217
221
  truefoundry/ml/autogen/client/models/http_validation_error.py,sha256=bU-uUlz_qeFba3iHdBT7cHjLu6WZ-JmImYqgZ-kCvxM,2466
218
- truefoundry/ml/autogen/client/models/image_content_part.py,sha256=_DXwAxeuagwRWMkDxaz--i_OitlyNkPd3puewVV_fwM,2716
222
+ truefoundry/ml/autogen/client/models/image_content_part.py,sha256=m_LE5XqD_UD0f8jtWt0adRgz_FoLEvgZbCDTSYORnCc,2717
219
223
  truefoundry/ml/autogen/client/models/image_url.py,sha256=TN8iEdBUmtKdTFlApUodaC4o6X_Ggd3OSOKVPv7laJE,2170
220
224
  truefoundry/ml/autogen/client/models/internal_metadata.py,sha256=6OizrIzA3QxlEnwNFXCZGOMJuUDSYHctl_30q27uBDI,6232
225
+ truefoundry/ml/autogen/client/models/keras_framework.py,sha256=sBKDT4Dzkvr3Rf7c8YKRbtzaO_KrPNsW8tdWI_n701Q,2150
221
226
  truefoundry/ml/autogen/client/models/latest_run_log_dto.py,sha256=wE8T8bANTb9u14Jv7DNyKWekZiUAvrzvTcE_H1cRhn4,2326
222
227
  truefoundry/ml/autogen/client/models/library_name.py,sha256=JKmQMgEj6RcmSv68THAcs1gmh3P3CNrgJ_Rh5VWu9Fs,823
228
+ truefoundry/ml/autogen/client/models/light_gbm_framework.py,sha256=lblWmFUORAKQr4AUynrktlxYNKDEXh2TRrERo40MROk,2195
223
229
  truefoundry/ml/autogen/client/models/list_artifact_versions_request_dto.py,sha256=nODOEA-tT8XEJKgUXXjvlzT5ecEwz1b9zu-l3RgQl1o,3622
224
230
  truefoundry/ml/autogen/client/models/list_artifact_versions_response_dto.py,sha256=G560h_rGn6-X-cxpuddGU8Fp2eBKXvC3RWcJZdZQJBE,2940
225
231
  truefoundry/ml/autogen/client/models/list_artifacts_request_dto.py,sha256=o3Jz3VsAa3aJB3YZ6NI6t8TLLoMGeg64jYYZibeo3Oc,2982
@@ -244,6 +250,7 @@ truefoundry/ml/autogen/client/models/list_run_logs_response_dto.py,sha256=ckQBBY
244
250
  truefoundry/ml/autogen/client/models/log_batch_request_dto.py,sha256=xDas-pmJP5T-8zKd17BbSnglZuX15ei3n9blBZUxa-Y,3702
245
251
  truefoundry/ml/autogen/client/models/log_metric_request_dto.py,sha256=QED1aIeaZJG-8iKFxT3NX9ozlUz_wom1xDsyZgL-a-4,2442
246
252
  truefoundry/ml/autogen/client/models/log_param_request_dto.py,sha256=Hd7AqrVnSkwfa9CcDbATERaim5Hf8rM59WZQNxSlJzk,2160
253
+ truefoundry/ml/autogen/client/models/manifest.py,sha256=PosK8HiHt54GARPhLecmMcDQrzCgPJhReV4UHArj19w,5078
247
254
  truefoundry/ml/autogen/client/models/method.py,sha256=NepwKtC72Wn0b4kkYM9uek6lZ55erqFEtlASOn1fYbU,734
248
255
  truefoundry/ml/autogen/client/models/metric_collection_dto.py,sha256=02ZWKm2_8DjGBhrPMysTACE2SQpyz4BSVMY01-k_qEA,2507
249
256
  truefoundry/ml/autogen/client/models/metric_dto.py,sha256=Xrcc8XRY0sZeg_cnb6gyf-AUUIS0FPxSGTCbDzcBzXQ,2174
@@ -251,18 +258,20 @@ truefoundry/ml/autogen/client/models/mime_type.py,sha256=A-N5-Mof_IyHWguXmG67k9w
251
258
  truefoundry/ml/autogen/client/models/model_configuration.py,sha256=XKhwqO8caQ8w9XRCdb_pAl-84cd_PWkEutjLNSby6hQ,3861
252
259
  truefoundry/ml/autogen/client/models/model_dto.py,sha256=TUO74MDqe8XCVJBB2O7TiqiRON8qbE7gi8LNA3uWjYA,4685
253
260
  truefoundry/ml/autogen/client/models/model_response_dto.py,sha256=osrTxfygkuhxWj6SkRBALrSnFVPH4LSK6qTufTeZuJg,2163
254
- truefoundry/ml/autogen/client/models/model_schema_dto.py,sha256=ElEPK7fwuf3eiohNBBHJyl-nhNqzGnDLzZVzuQl-xC0,2620
255
- truefoundry/ml/autogen/client/models/model_version_dto.py,sha256=6kI1Z2czYAieJZBaVvcV8Y2eeNEUDyjPuTLHTdyWnOE,7282
256
- truefoundry/ml/autogen/client/models/model_version_manifest.py,sha256=yJN2C_ETddLAeSR4wDuzV3--F2MyiN-XzIJlNayG6Ok,3945
261
+ truefoundry/ml/autogen/client/models/model_version_dto.py,sha256=9Mh4d8V33gEGYr4sys5lYYDA3bHKajR3oAZLZMAy_io,7094
262
+ truefoundry/ml/autogen/client/models/model_version_environment.py,sha256=WftODH_Y4JMMhsN1SpGZiLe9MynIQ35w_JUXZq0p-9w,2839
263
+ truefoundry/ml/autogen/client/models/model_version_manifest.py,sha256=WijypfxTNLwXnRx5yyrET7csgAo59A8dIutecJp2_pM,4818
257
264
  truefoundry/ml/autogen/client/models/model_version_response_dto.py,sha256=D6XOCyggxqTkbePuypqYSHYh1PYeDv7R_J32q61sDM0,2320
258
265
  truefoundry/ml/autogen/client/models/multi_part_upload_dto.py,sha256=Ckq405vud8RQmMyKCJQJBlW5iXO7Y2mlgo8eVkiMvxg,3738
259
266
  truefoundry/ml/autogen/client/models/multi_part_upload_response_dto.py,sha256=VjH0kvl7rMjgDHjYGHnsh7KsZ5-qn-k3ksdGLJ49nIM,2431
260
267
  truefoundry/ml/autogen/client/models/multi_part_upload_storage_provider.py,sha256=BA-a-LUi8Q8wTmrExiidRWmCQUAmAqn5qOTwgQM1K6U,796
261
268
  truefoundry/ml/autogen/client/models/notify_artifact_version_failure_dto.py,sha256=M5PaBiH0KYigTpmg6Rm6n2nM6I9x6pLjI-oNqY4006o,1897
269
+ truefoundry/ml/autogen/client/models/onnx_framework.py,sha256=_YoLLcObmeODnHullwJ1D4J8tOp3k5tRr43VkSDUIrw,2138
262
270
  truefoundry/ml/autogen/client/models/openapi_spec.py,sha256=jWD8fO4Rjx7NXg-kvJ1KEDT7ysHZcYbQ-EnEk3MxMqs,4961
271
+ truefoundry/ml/autogen/client/models/paddle_framework.py,sha256=yLVdBTV2Kl_QZbCFE6u00GB-BVMsZrTeRedEGoHpEmU,2177
263
272
  truefoundry/ml/autogen/client/models/param_dto.py,sha256=A8ysdVT16LZDB78Cd18ot2wf6emWNGKPv70IQ6wcEak,1787
264
273
  truefoundry/ml/autogen/client/models/parameters.py,sha256=u3DF-XvyZ9w1GgEJ2WCQyYX6RXbkBw7B2yWKTFjVfP4,2736
265
- truefoundry/ml/autogen/client/models/prediction_type.py,sha256=ayeIx_mdlOYXV82yoHoTQEYS9mIzRcTuYB9V0wIe_GE,722
274
+ truefoundry/ml/autogen/client/models/py_torch_framework.py,sha256=tJXPH9m2gOccQgSK4fcWNRu0ay3r9RNvTz1eyKc-1UA,2183
266
275
  truefoundry/ml/autogen/client/models/resolve_agent_app_response_dto.py,sha256=sggWYqC5R_BtH99xne3G_lgZYuyJjT2wozwDtvfB_Vs,2360
267
276
  truefoundry/ml/autogen/client/models/restore_run_request_dto.py,sha256=7iBbil4YfaOHJwP0ifPHp-D1Kt-ZiSRjAaVuU7_idhw,1825
268
277
  truefoundry/ml/autogen/client/models/run_data_dto.py,sha256=iPFm5f4x2ymRqea6EDZlcjWYN_-f3t9JZckwskXSTKY,3533
@@ -274,34 +283,46 @@ truefoundry/ml/autogen/client/models/run_response_dto.py,sha256=iayBnhwmByVC3iiw
274
283
  truefoundry/ml/autogen/client/models/run_tag_dto.py,sha256=CdWwi9P-CXk1vvXWRHN2tHqRckgH-Igur1fowsS-I80,1795
275
284
  truefoundry/ml/autogen/client/models/search_runs_request_dto.py,sha256=TxUqdYG5aKj6qdqsqNDe_ih45o0cMw3jwGu2Hrv1X48,2852
276
285
  truefoundry/ml/autogen/client/models/search_runs_response_dto.py,sha256=u0l11v7p7zdxtaqV_RBoMtB2Zy8pJbvtMwZiL4B4qMg,2636
286
+ truefoundry/ml/autogen/client/models/serialization_format.py,sha256=CYq9DR1yipEGBA00XjBWyeJf_PIT8_l_F1tm6QafgRM,821
277
287
  truefoundry/ml/autogen/client/models/set_experiment_tag_request_dto.py,sha256=nrmi_NxLD1fI2gwlpdqFSMnBS11gRkjS4_GQFHgBcXs,2118
278
288
  truefoundry/ml/autogen/client/models/set_tag_request_dto.py,sha256=IRgAdMcWBxmjNV6nZJej4pcNfLmZwrelEZ3otwt7eeE,2144
279
289
  truefoundry/ml/autogen/client/models/signed_url_dto.py,sha256=9oHoXBj07xTdc04rqOqJO3eOjQWXCyWPhfHg-6qX60w,1897
280
- truefoundry/ml/autogen/client/models/source.py,sha256=OqcgjSiQwji_jpfcL29HKlAebURPChuQPqmQzd7CSPk,5961
290
+ truefoundry/ml/autogen/client/models/sklearn_framework.py,sha256=mAf9dAv2DvDZwS_BnWZQKWpw1-IcVEMdYN7Ks1UEi3M,2879
291
+ truefoundry/ml/autogen/client/models/source.py,sha256=ZG2-3oIs_M8mZNPjoIRPzhHqlm63vLCVQC9idUxQ0XU,5180
292
+ truefoundry/ml/autogen/client/models/source1.py,sha256=io35b9uVzqSvOHw6RlCXxM30thN-vHm1upaSiN2i0II,5183
293
+ truefoundry/ml/autogen/client/models/spa_cy_framework.py,sha256=Kyrvhdalnl1uQLoPMGMry2PuFGCcQ8AGp4Cx4B9AGXQ,2150
294
+ truefoundry/ml/autogen/client/models/stats_models_framework.py,sha256=p6isf4NlvzL_-WO-YVNclG6i40FP890PSAKQ-VmHgA4,2231
281
295
  truefoundry/ml/autogen/client/models/stop.py,sha256=UlAjRWI6Gjc92D2UME6qRAIfd6GoDI3VBWYkJqgixmU,4760
282
296
  truefoundry/ml/autogen/client/models/store_run_logs_request_dto.py,sha256=Cfm95a9T4fDiARBJ9vd3n9Pv7QI69TSVKWi0AG_cmvs,2591
283
297
  truefoundry/ml/autogen/client/models/subject.py,sha256=gG1pRl6lPEI1_td2sb752vJeKMKgLWDaoFwepnS4zIQ,2415
284
298
  truefoundry/ml/autogen/client/models/subject_type.py,sha256=TOhgDmWSy67NjBCTSbwtF2-cBBB2-FoLJVFDVpJRrsQ,710
285
- truefoundry/ml/autogen/client/models/system_message.py,sha256=yxRCJPl36FGv2zrsuHbLown88wmnrIpWlKEVRf9WgFQ,2801
286
- truefoundry/ml/autogen/client/models/tensorflow_framework.py,sha256=8F0CHJj_J0V57GePBuMjSSLmCRuwIot10ghywlBFIeQ,2251
299
+ truefoundry/ml/autogen/client/models/system_message.py,sha256=2sPSNrDuz5elg_AG009CTe0E3HOFxAXtRKCK_Xp5CPw,2802
300
+ truefoundry/ml/autogen/client/models/tensor_flow_framework.py,sha256=jsAtqm2rMuiQyR7vVNDTLXDqpIPKsXEOH2WLRGE-POw,2219
287
301
  truefoundry/ml/autogen/client/models/text.py,sha256=HAIK-w_TxB1kXGvVNK1d2cweoQi-GJ9d-0QSZl21u68,4862
288
- truefoundry/ml/autogen/client/models/text_content_part.py,sha256=fRQu22tiV3rDKmTgVZSLHX-cMcha3q53W8qWNCk5wmU,2492
289
- truefoundry/ml/autogen/client/models/transformers_framework.py,sha256=5n4h3IvcCRr4Dca9Sv1EGUp07rEgv3c41U47NmGTsu0,2916
290
- truefoundry/ml/autogen/client/models/truefoundry_model_source.py,sha256=kKxDCkLKTLho2SkVO0df6DoD8czwKbaacbjNRqBMhgY,2396
291
- truefoundry/ml/autogen/client/models/update_artifact_version_request_dto.py,sha256=AhXj2afmrKskBi5uMT0-mSywZyz3g17lFE3uMRQ5pEM,2246
302
+ truefoundry/ml/autogen/client/models/text_content_part.py,sha256=IgJ5exYltwJdJUBdOxMr3VtjF6x9qbyA_4mTPDZ4QCY,2493
303
+ truefoundry/ml/autogen/client/models/transformers_framework.py,sha256=NNsTWMXmQyk5pCFowAIIgIs-_Iaht05RK-8-fUcQk18,3204
304
+ truefoundry/ml/autogen/client/models/trigger_job_run_config_request_dto.py,sha256=1HtO6zfW6Ulq8Gm_UL0YqVrse0795vZkMxgCQ0GKD9w,2864
305
+ truefoundry/ml/autogen/client/models/trigger_job_run_config_response_dto.py,sha256=P35xzE8MyS_HtxCcXC9fZORPX2wbf93LbCZCRggkQxw,2144
306
+ truefoundry/ml/autogen/client/models/true_foundry_artifact_source.py,sha256=LihHK1hS5sivJ6EtV1TsYU9ATYgSNDhg10Vhq6ypEG4,2457
307
+ truefoundry/ml/autogen/client/models/update_artifact_version_request_dto.py,sha256=nBcEe5aCIvqKz_iIeegkDKsOedSTq6-ahlC_GAwxkO4,2766
292
308
  truefoundry/ml/autogen/client/models/update_dataset_request_dto.py,sha256=MF-rjJGUP6sDZVH3xP4Q8AEC9CV2PXEO9cXrR6yK57A,2182
293
309
  truefoundry/ml/autogen/client/models/update_experiment_request_dto.py,sha256=QE_kZzTDdiXKtQ2U-zbI_gb5vxS5Yv9YupYvD22RkFs,2198
294
- truefoundry/ml/autogen/client/models/update_model_version_request_dto.py,sha256=0xWqHHflnpO8FyT79psPiPBIGW6Aiovs-b6H7sjMSDQ,3589
310
+ truefoundry/ml/autogen/client/models/update_model_version_request_dto.py,sha256=GeEprpAgPvCnQe5yjmpofL7WBE0EhEHtFPIwj4jFCI4,2907
295
311
  truefoundry/ml/autogen/client/models/update_run_request_dto.py,sha256=fn4VB4Zlllr6Bt_l3aYkkHxAkU9w7vtcqu4iw8BvQWY,2318
296
312
  truefoundry/ml/autogen/client/models/update_run_response_dto.py,sha256=wolIFiihGZCBBkuj7mJEYCmGAOqDLFo_bNLcH4LeXSo,2231
297
- truefoundry/ml/autogen/client/models/upload_model_source.py,sha256=zn2AigQc8uhJiGXdE57X-K4pLPrIK9TuD8g7zNt09-U,2103
298
313
  truefoundry/ml/autogen/client/models/url.py,sha256=zMyOmdVkp1ANnQnc9GrHt42xlVwES7FTjrpOp_OtHqo,4953
299
- truefoundry/ml/autogen/client/models/user_message.py,sha256=6QOmKT_SDfAVZA8V3Bzofm7_c-Qznn4KsE12NmHG4FM,2783
314
+ truefoundry/ml/autogen/client/models/user_message.py,sha256=3TEM8qH_zT3dgM197bl44uV7m20IWn6sWeLGfStsN90,2784
300
315
  truefoundry/ml/autogen/client/models/validation_error.py,sha256=mFjwoc8g2-Usu1HXZhOQKQ4TGvLy4lwCzk8dHrJ69aA,2597
301
316
  truefoundry/ml/autogen/client/models/validation_error_loc_inner.py,sha256=nThJ5Gmy8W2Wok-ZOI4sK7uRe1BAkLS0qzq-XZbq8zs,4915
317
+ truefoundry/ml/autogen/client/models/xg_boost_framework.py,sha256=7Yw9FRJB0qzhQx_YHIlMgcJWP1Z3pNIcaPxuXI1ocBI,2874
302
318
  truefoundry/ml/autogen/client/rest.py,sha256=9goba8qHjQuVx5O_yRaTKu7PvBnb7r7swfy3dwuTEgk,14281
303
- truefoundry/ml/autogen/client_README.md,sha256=ehPzJCsvWR_ghMgIcP-UXMG4AgqcJI6cbpuz1rcsqME,33871
304
- truefoundry/ml/autogen/entities/artifacts.py,sha256=yXLrEsX28aCxpgRA8x8YM5M55LLlLiWoJqEWRAZu6_Y,16147
319
+ truefoundry/ml/autogen/client_README.md,sha256=NfKhrVmoFK5NVx4WuaOv0CQAhq__BuOudDauhijKdEU,35569
320
+ truefoundry/ml/autogen/entities/artifacts.py,sha256=jUVJVssuFIi2UgDdRZiCoSyjTEqU07pM0-NlJBlWWaA,18707
321
+ truefoundry/ml/autogen/models/__init__.py,sha256=--TGRea9SQBWFfwtcl3ekb1XGfFTdEkQGSG8a2SJ60I,187
322
+ truefoundry/ml/autogen/models/exceptions.py,sha256=q3n7FGBrg_hUy1UyoefhMnhcXUAaqXlLIGHoOVzn_d8,1390
323
+ truefoundry/ml/autogen/models/schema.py,sha256=IhpO9qbygLqEamP3NIt3m90SseJXCOm1ZTqNbNbW-M0,55772
324
+ truefoundry/ml/autogen/models/signature.py,sha256=EppDGjws10CTatxcTBTuT-b3jJX9lmR6ZX98eC6PB5w,4942
325
+ truefoundry/ml/autogen/models/utils.py,sha256=Z52SnAF7UL7uluNtA_VXuB9iPju-q9bpTTFJnUh0ZTQ,24289
305
326
  truefoundry/ml/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
306
327
  truefoundry/ml/cli/cli.py,sha256=ckBcjUpqfhgrPE1okqT_G2iouOLt-0KjpLhHp2YdVFU,256
307
328
  truefoundry/ml/cli/commands/__init__.py,sha256=diDUiRUX4l6TtNLI4iF-ZblczkELM7FRViJ-8gGNJQY,82
@@ -317,11 +338,11 @@ truefoundry/ml/exceptions.py,sha256=8aJm2NYtAWWsRLu4MbzaoOqHsQZ6RjOFwBWQWqb6qrc,
317
338
  truefoundry/ml/git_info.py,sha256=jvAVm9ilqivnGq8qJdUvYdd8Siv0PLtqurB-PXsS5ho,2023
318
339
  truefoundry/ml/internal_namespace.py,sha256=QcqMHp6-C2im2H_02hlhi01EIcr1HhNaZprszs13EMU,1790
319
340
  truefoundry/ml/log_types/__init__.py,sha256=g4u4D4Jaj0aBK5GtrLV88-qThKZR9pSZ17vFEkN-LmM,125
320
- truefoundry/ml/log_types/artifacts/artifact.py,sha256=n2EwAupOigDcUXQQFIIESRqp7zipLZieec0vLQ2DVRQ,17593
341
+ truefoundry/ml/log_types/artifacts/artifact.py,sha256=6X4lO23DwM7yTgUOY4RRoYMrf9m2AbiBBo2WftS2-dc,20457
321
342
  truefoundry/ml/log_types/artifacts/constants.py,sha256=qKxQ5mMvJE4j83BvGW3qNTKunxCiBg_EEjTdgbgJtyE,1036
322
343
  truefoundry/ml/log_types/artifacts/dataset.py,sha256=a4dxd2EN8p7Ci-cLGGiDOboN3t0395_XhWE1dmTw1Q4,13112
323
- truefoundry/ml/log_types/artifacts/general_artifact.py,sha256=_EOlNGMg2PFjlevlD6LEOsaQBBwRWs60PkzJases6tE,3927
324
- truefoundry/ml/log_types/artifacts/model.py,sha256=Q4Phy8-5E8hDxHC-Zg-V1uj_-V3p1z6Wh6JC-zot0Vs,21912
344
+ truefoundry/ml/log_types/artifacts/general_artifact.py,sha256=B4XErLr-m6RmQWtxMTu3wlFRFcqSwPYp6J0OL4Ng6L0,3179
345
+ truefoundry/ml/log_types/artifacts/model.py,sha256=MKtMenaDahNw0ib0YS4ZpC7q6z05ITMGrZSSEdUrJeo,21930
325
346
  truefoundry/ml/log_types/artifacts/model_extras.py,sha256=TIE73bLKfwIVzNiVcjmaZ841A70BHBwu4XAM6ZAQRFI,1045
326
347
  truefoundry/ml/log_types/artifacts/utils.py,sha256=3FVOYlfcvZiW8vTbMe7Ft1cjNPR2GW7J69M3dyAY-qc,6299
327
348
  truefoundry/ml/log_types/image/__init__.py,sha256=fcOq8yQnNj1rkLcPeIjLXBpdA1WIeiPsXOlAAvMxx7M,76
@@ -333,8 +354,9 @@ truefoundry/ml/log_types/plot.py,sha256=HuYvvRA5r8V0xAIuuqMME2IHb9d3SfGHUiuEkOP3
333
354
  truefoundry/ml/log_types/pydantic_base.py,sha256=eBlw_AEyAz4iJKDP4zgJOCFWcldwQqpf7FADW1jzIQY,272
334
355
  truefoundry/ml/log_types/utils.py,sha256=xjJ21jdPScvFmw3TbVh5NCzbzJwaqiXJyiiT4xxX1EI,335
335
356
  truefoundry/ml/logger.py,sha256=VT-BF3BnBYTWVq87O58F0c8uXMu94gYzsiFlGY3_7Ao,458
336
- truefoundry/ml/mlfoundry_api.py,sha256=lVsD7WBqAZMNSEauKeiF1jCg_Fnt6IFEPRr4mwn1IMU,60820
337
- truefoundry/ml/mlfoundry_run.py,sha256=rNJl130iJkpjW3MNoe5-d_J9VJJQBqWHEJCfYeiZCbE,45123
357
+ truefoundry/ml/mlfoundry_api.py,sha256=ApaCBTp-cB6pLeOoFv-Y_t0FsPp1WeKuEW7maDo2ebg,60406
358
+ truefoundry/ml/mlfoundry_run.py,sha256=C4fhMc9o1m_ubkRsR8R8rk888ktpqWd0pkqZZQ-Pr4k,44691
359
+ truefoundry/ml/model_framework.py,sha256=TosB73eEpTRlsh6v1AY_LnnW_4OoaSlzENnBXqkVRl4,4778
338
360
  truefoundry/ml/run_utils.py,sha256=0W208wSLUrbdfk2pjNcZlkUi9bNxG2JORqoe-5rVqHI,2423
339
361
  truefoundry/ml/session.py,sha256=F83GTC5WwGBjnJ69Ct8MqMnlutYc56JCc6YhEY1Wl-A,5394
340
362
  truefoundry/ml/validation_utils.py,sha256=XBSUd9OoyriWJpT3M5LKz17iWY3yVMr3hM5vdaVjtf0,12082
@@ -355,7 +377,7 @@ truefoundry/workflow/remote_filesystem/tfy_signed_url_client.py,sha256=5mBCIc-ON
355
377
  truefoundry/workflow/remote_filesystem/tfy_signed_url_fs.py,sha256=Hf6Dk6Fu6P7DqsK5ULgraf9DStjgigf-kjaRAMBW-RU,8680
356
378
  truefoundry/workflow/task.py,sha256=ToitYiKcNzFCtOVQwz1W8sRjbR97eVS7vQBdbgUQtKg,1779
357
379
  truefoundry/workflow/workflow.py,sha256=WaTqUjhwfAXDWu4E5ehuwAxrCbDJkoAf1oWmR2E9Qy0,4575
358
- truefoundry-0.4.9rc1.dist-info/METADATA,sha256=9IU6anotmcm0swYYWFYpLojpa5xBZaGzLB59yczTOo0,3102
359
- truefoundry-0.4.9rc1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
360
- truefoundry-0.4.9rc1.dist-info/entry_points.txt,sha256=TXvUxQkI6zmqJuycPsyxEIMr3oqfDjgrWj0m_9X12x4,95
361
- truefoundry-0.4.9rc1.dist-info/RECORD,,
380
+ truefoundry-0.5.0.dist-info/METADATA,sha256=eVVfsnXPs-cBGsL-1JVzTELBYI5pDNQx2Ujp9EXdMO8,3099
381
+ truefoundry-0.5.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
382
+ truefoundry-0.5.0.dist-info/entry_points.txt,sha256=TXvUxQkI6zmqJuycPsyxEIMr3oqfDjgrWj0m_9X12x4,95
383
+ truefoundry-0.5.0.dist-info/RECORD,,
@@ -1,201 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- FastAPI
5
-
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
-
8
- The version of the OpenAPI document: 0.1.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
-
11
- Do not edit the class manually.
12
- """ # noqa: E501
13
-
14
- import re # noqa: F401
15
-
16
- from truefoundry.ml.autogen.client.api_client import ApiClient
17
- from truefoundry.ml.autogen.client.api_response import ApiResponse
18
- from truefoundry.ml.autogen.client.exceptions import ( # noqa: F401
19
- ApiTypeError,
20
- ApiValueError,
21
- )
22
- from truefoundry.ml.autogen.client.models.create_python_deployment_config_request_dto import (
23
- CreatePythonDeploymentConfigRequestDto,
24
- )
25
- from truefoundry.ml.autogen.client.models.create_python_deployment_config_response_dto import (
26
- CreatePythonDeploymentConfigResponseDto,
27
- )
28
- from truefoundry.pydantic_v1 import validate_arguments
29
-
30
-
31
- class PythonDeploymentConfigApi:
32
- """NOTE: This class is auto generated by OpenAPI Generator
33
- Ref: https://openapi-generator.tech
34
-
35
- Do not edit the class manually.
36
- """
37
-
38
- def __init__(self, api_client=None) -> None:
39
- if api_client is None:
40
- api_client = ApiClient.get_default()
41
- self.api_client = api_client
42
-
43
- @validate_arguments
44
- def generate_py_development_config_post(
45
- self,
46
- create_python_deployment_config_request_dto: CreatePythonDeploymentConfigRequestDto,
47
- **kwargs,
48
- ) -> CreatePythonDeploymentConfigResponseDto: # noqa: E501
49
- """Generate Py Development Config # noqa: E501
50
-
51
- Generate Python Deployment Config # noqa: E501
52
- This method makes a synchronous HTTP request by default. To make an
53
- asynchronous HTTP request, please pass async_req=True
54
-
55
- >>> thread = api.generate_py_development_config_post(create_python_deployment_config_request_dto, async_req=True)
56
- >>> result = thread.get()
57
-
58
- :param create_python_deployment_config_request_dto: (required)
59
- :type create_python_deployment_config_request_dto: CreatePythonDeploymentConfigRequestDto
60
- :param async_req: Whether to execute the request asynchronously.
61
- :type async_req: bool, optional
62
- :param _request_timeout: timeout setting for this request.
63
- If one number provided, it will be total request
64
- timeout. It can also be a pair (tuple) of
65
- (connection, read) timeouts.
66
- :return: Returns the result object.
67
- If the method is called asynchronously,
68
- returns the request thread.
69
- :rtype: CreatePythonDeploymentConfigResponseDto
70
- """
71
- kwargs["_return_http_data_only"] = True
72
- if "_preload_content" in kwargs:
73
- message = "Error! Please call the generate_py_development_config_post_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
74
- raise ValueError(message)
75
- return self.generate_py_development_config_post_with_http_info(
76
- create_python_deployment_config_request_dto, **kwargs
77
- ) # noqa: E501
78
-
79
- @validate_arguments
80
- def generate_py_development_config_post_with_http_info(
81
- self,
82
- create_python_deployment_config_request_dto: CreatePythonDeploymentConfigRequestDto,
83
- **kwargs,
84
- ) -> ApiResponse: # noqa: E501
85
- """Generate Py Development Config # noqa: E501
86
-
87
- Generate Python Deployment Config # noqa: E501
88
- This method makes a synchronous HTTP request by default. To make an
89
- asynchronous HTTP request, please pass async_req=True
90
-
91
- >>> thread = api.generate_py_development_config_post_with_http_info(create_python_deployment_config_request_dto, async_req=True)
92
- >>> result = thread.get()
93
-
94
- :param create_python_deployment_config_request_dto: (required)
95
- :type create_python_deployment_config_request_dto: CreatePythonDeploymentConfigRequestDto
96
- :param async_req: Whether to execute the request asynchronously.
97
- :type async_req: bool, optional
98
- :param _preload_content: if False, the ApiResponse.data will
99
- be set to none and raw_data will store the
100
- HTTP response body without reading/decoding.
101
- Default is True.
102
- :type _preload_content: bool, optional
103
- :param _return_http_data_only: response data instead of ApiResponse
104
- object with status code, headers, etc
105
- :type _return_http_data_only: bool, optional
106
- :param _request_timeout: timeout setting for this request. If one
107
- number provided, it will be total request
108
- timeout. It can also be a pair (tuple) of
109
- (connection, read) timeouts.
110
- :param _request_auth: set to override the auth_settings for an a single
111
- request; this effectively ignores the authentication
112
- in the spec for a single request.
113
- :type _request_auth: dict, optional
114
- :type _content_type: string, optional: force content-type for the request
115
- :return: Returns the result object.
116
- If the method is called asynchronously,
117
- returns the request thread.
118
- :rtype: tuple(CreatePythonDeploymentConfigResponseDto, status_code(int), headers(HTTPHeaderDict))
119
- """
120
-
121
- _params = locals()
122
-
123
- _all_params = ["create_python_deployment_config_request_dto"]
124
- _all_params.extend(
125
- [
126
- "async_req",
127
- "_return_http_data_only",
128
- "_preload_content",
129
- "_request_timeout",
130
- "_request_auth",
131
- "_content_type",
132
- "_headers",
133
- ]
134
- )
135
-
136
- # validate the arguments
137
- for _key, _val in _params["kwargs"].items():
138
- if _key not in _all_params:
139
- raise ApiTypeError(
140
- "Got an unexpected keyword argument '%s'"
141
- " to method generate_py_development_config_post" % _key
142
- )
143
- _params[_key] = _val
144
- del _params["kwargs"]
145
-
146
- _collection_formats = {}
147
-
148
- # process the path parameters
149
- _path_params = {}
150
-
151
- # process the query parameters
152
- _query_params = []
153
- # process the header parameters
154
- _header_params = dict(_params.get("_headers", {}))
155
- # process the form parameters
156
- _form_params = []
157
- _files = {}
158
- # process the body parameter
159
- _body_params = None
160
- if _params["create_python_deployment_config_request_dto"] is not None:
161
- _body_params = _params["create_python_deployment_config_request_dto"]
162
-
163
- # set the HTTP header `Accept`
164
- _header_params["Accept"] = self.api_client.select_header_accept(
165
- ["application/json"]
166
- ) # noqa: E501
167
-
168
- # set the HTTP header `Content-Type`
169
- _content_types_list = _params.get(
170
- "_content_type",
171
- self.api_client.select_header_content_type(["application/json"]),
172
- )
173
- if _content_types_list:
174
- _header_params["Content-Type"] = _content_types_list
175
-
176
- # authentication setting
177
- _auth_settings = [] # noqa: E501
178
-
179
- _response_types_map = {
180
- "200": "CreatePythonDeploymentConfigResponseDto",
181
- "422": "HTTPValidationError",
182
- }
183
-
184
- return self.api_client.call_api(
185
- "/api/2.0/mlflow/python-deployment-config/generate",
186
- "POST",
187
- _path_params,
188
- _query_params,
189
- _header_params,
190
- body=_body_params,
191
- post_params=_form_params,
192
- files=_files,
193
- response_types_map=_response_types_map,
194
- auth_settings=_auth_settings,
195
- async_req=_params.get("async_req"),
196
- _return_http_data_only=_params.get("_return_http_data_only"), # noqa: E501
197
- _preload_content=_params.get("_preload_content", True),
198
- _request_timeout=_params.get("_request_timeout"),
199
- collection_formats=_collection_formats,
200
- _request_auth=_params.get("_request_auth"),
201
- )
@@ -1,85 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- FastAPI
5
-
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
-
8
- The version of the OpenAPI document: 0.1.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
-
11
- Do not edit the class manually.
12
- """ # noqa: E501
13
-
14
- from __future__ import annotations
15
-
16
- import json
17
- import pprint
18
- import re # noqa: F401
19
- from typing import Optional
20
-
21
- from truefoundry.ml.autogen.client.models.feature_dto import FeatureDto
22
- from truefoundry.ml.autogen.client.models.prediction_type import PredictionType
23
- from truefoundry.pydantic_v1 import BaseModel, conlist
24
-
25
-
26
- class ModelSchemaDto(BaseModel):
27
- """
28
- ModelSchemaDto
29
- """
30
-
31
- features: Optional[conlist(FeatureDto)] = None
32
- prediction: Optional[PredictionType] = None
33
- __properties = ["features", "prediction"]
34
-
35
- class Config:
36
- """Pydantic configuration"""
37
-
38
- allow_population_by_field_name = True
39
- validate_assignment = True
40
-
41
- def to_str(self) -> str:
42
- """Returns the string representation of the model using alias"""
43
- return pprint.pformat(self.dict(by_alias=True))
44
-
45
- def to_json(self) -> str:
46
- """Returns the JSON representation of the model using alias"""
47
- return json.dumps(self.to_dict())
48
-
49
- @classmethod
50
- def from_json(cls, json_str: str) -> ModelSchemaDto:
51
- """Create an instance of ModelSchemaDto from a JSON string"""
52
- return cls.from_dict(json.loads(json_str))
53
-
54
- def to_dict(self):
55
- """Returns the dictionary representation of the model using alias"""
56
- _dict = self.dict(by_alias=True, exclude={}, exclude_none=True)
57
- # override the default output from truefoundry.pydantic_v1 by calling `to_dict()` of each item in features (list)
58
- _items = []
59
- if self.features:
60
- for _item in self.features:
61
- if _item:
62
- _items.append(_item.to_dict())
63
- _dict["features"] = _items
64
- return _dict
65
-
66
- @classmethod
67
- def from_dict(cls, obj: dict) -> ModelSchemaDto:
68
- """Create an instance of ModelSchemaDto from a dict"""
69
- if obj is None:
70
- return None
71
-
72
- if not isinstance(obj, dict):
73
- return ModelSchemaDto.parse_obj(obj)
74
-
75
- _obj = ModelSchemaDto.parse_obj(
76
- {
77
- "features": [
78
- FeatureDto.from_dict(_item) for _item in obj.get("features")
79
- ]
80
- if obj.get("features") is not None
81
- else None,
82
- "prediction": obj.get("prediction"),
83
- }
84
- )
85
- return _obj
@@ -1,34 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- FastAPI
5
-
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
-
8
- The version of the OpenAPI document: 0.1.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
-
11
- Do not edit the class manually.
12
- """ # noqa: E501
13
-
14
- import json
15
- import re # noqa: F401
16
-
17
- from aenum import Enum
18
-
19
-
20
- class PredictionType(str, Enum):
21
- """
22
- An enumeration.
23
- """
24
-
25
- """
26
- allowed enum values
27
- """
28
- CATEGORICAL = "categorical"
29
- NUMERIC = "numeric"
30
-
31
- @classmethod
32
- def from_json(cls, json_str: str) -> PredictionType:
33
- """Create an instance of PredictionType from a JSON string"""
34
- return PredictionType(json.loads(json_str))