platform-api-python-client 4.8.3__py3-none-any.whl → 4.9.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.
- platform_api_python_client/__init__.py +1 -4
- platform_api_python_client/api/external_api.py +9 -838
- platform_api_python_client/api_client.py +1 -1
- platform_api_python_client/configuration.py +1 -1
- platform_api_python_client/models/__init__.py +0 -3
- platform_api_python_client/models/create_c_serve_v2_deployment_request.py +8 -1
- platform_api_python_client/models/create_c_serve_v3_deployment_request.py +11 -2
- platform_api_python_client/models/create_compute_deployment_request.py +8 -1
- platform_api_python_client/models/create_inference_deployment_request.py +8 -1
- platform_api_python_client/models/create_inference_v3_deployment_request.py +8 -1
- platform_api_python_client/models/get_c_serve_v2_deployment_response.py +8 -1
- platform_api_python_client/models/get_c_serve_v3_deployment_response.py +11 -2
- platform_api_python_client/models/get_compute_deployment_response.py +8 -1
- platform_api_python_client/models/get_deployment_response.py +9 -2
- platform_api_python_client/models/get_inference_deployment_response.py +8 -1
- platform_api_python_client/models/get_inference_v3_deployment_response.py +8 -1
- {platform_api_python_client-4.8.3.dist-info → platform_api_python_client-4.9.0.dist-info}/METADATA +1 -1
- {platform_api_python_client-4.8.3.dist-info → platform_api_python_client-4.9.0.dist-info}/RECORD +20 -23
- platform_api_python_client/models/create_rag_deployment_request.py +0 -157
- platform_api_python_client/models/create_rag_deployment_response.py +0 -92
- platform_api_python_client/models/get_rag_deployment_response.py +0 -166
- {platform_api_python_client-4.8.3.dist-info → platform_api_python_client-4.9.0.dist-info}/WHEEL +0 -0
- {platform_api_python_client-4.8.3.dist-info → platform_api_python_client-4.9.0.dist-info}/top_level.txt +0 -0
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "4.
|
|
17
|
+
__version__ = "4.9.0"
|
|
18
18
|
|
|
19
19
|
# import apis into sdk package
|
|
20
20
|
from platform_api_python_client.api.external_api import EXTERNALApi
|
|
@@ -49,8 +49,6 @@ from platform_api_python_client.models.create_inference_deployment_response impo
|
|
|
49
49
|
from platform_api_python_client.models.create_inference_v3_deployment_request import CreateInferenceV3DeploymentRequest
|
|
50
50
|
from platform_api_python_client.models.create_organization_request import CreateOrganizationRequest
|
|
51
51
|
from platform_api_python_client.models.create_organization_response import CreateOrganizationResponse
|
|
52
|
-
from platform_api_python_client.models.create_rag_deployment_request import CreateRagDeploymentRequest
|
|
53
|
-
from platform_api_python_client.models.create_rag_deployment_response import CreateRagDeploymentResponse
|
|
54
52
|
from platform_api_python_client.models.create_url_request import CreateUrlRequest
|
|
55
53
|
from platform_api_python_client.models.create_url_response import CreateUrlResponse
|
|
56
54
|
from platform_api_python_client.models.credits_response import CreditsResponse
|
|
@@ -73,7 +71,6 @@ from platform_api_python_client.models.get_deployment_revision_response import G
|
|
|
73
71
|
from platform_api_python_client.models.get_deployment_usage_response import GetDeploymentUsageResponse
|
|
74
72
|
from platform_api_python_client.models.get_inference_deployment_response import GetInferenceDeploymentResponse
|
|
75
73
|
from platform_api_python_client.models.get_inference_v3_deployment_response import GetInferenceV3DeploymentResponse
|
|
76
|
-
from platform_api_python_client.models.get_rag_deployment_response import GetRagDeploymentResponse
|
|
77
74
|
from platform_api_python_client.models.gpu_type_capacity import GpuTypeCapacity
|
|
78
75
|
from platform_api_python_client.models.http_validation_error import HTTPValidationError
|
|
79
76
|
from platform_api_python_client.models.hardware_instance_response import HardwareInstanceResponse
|