stackit-modelserving 0.0.1a0__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 (30) hide show
  1. stackit/modelserving/__init__.py +55 -0
  2. stackit/modelserving/api/__init__.py +4 -0
  3. stackit/modelserving/api/default_api.py +2137 -0
  4. stackit/modelserving/api_client.py +627 -0
  5. stackit/modelserving/api_response.py +23 -0
  6. stackit/modelserving/configuration.py +138 -0
  7. stackit/modelserving/exceptions.py +199 -0
  8. stackit/modelserving/models/__init__.py +36 -0
  9. stackit/modelserving/models/chat_model_details.py +189 -0
  10. stackit/modelserving/models/create_token_payload.py +108 -0
  11. stackit/modelserving/models/create_token_response.py +93 -0
  12. stackit/modelserving/models/embedding_model_details.py +160 -0
  13. stackit/modelserving/models/error_message_response.py +83 -0
  14. stackit/modelserving/models/get_chat_model_response.py +93 -0
  15. stackit/modelserving/models/get_embeddings_model_resp.py +93 -0
  16. stackit/modelserving/models/get_token_response.py +93 -0
  17. stackit/modelserving/models/list_models_response.py +99 -0
  18. stackit/modelserving/models/list_token_resp.py +99 -0
  19. stackit/modelserving/models/message_response.py +82 -0
  20. stackit/modelserving/models/model.py +153 -0
  21. stackit/modelserving/models/partial_update_token_payload.py +104 -0
  22. stackit/modelserving/models/sku.py +84 -0
  23. stackit/modelserving/models/token.py +122 -0
  24. stackit/modelserving/models/token_created.py +131 -0
  25. stackit/modelserving/models/update_token_response.py +93 -0
  26. stackit/modelserving/py.typed +0 -0
  27. stackit/modelserving/rest.py +149 -0
  28. stackit_modelserving-0.0.1a0.dist-info/METADATA +45 -0
  29. stackit_modelserving-0.0.1a0.dist-info/RECORD +30 -0
  30. stackit_modelserving-0.0.1a0.dist-info/WHEEL +4 -0
@@ -0,0 +1,122 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ STACKIT Model Serving API
5
+
6
+ This API provides endpoints for the model serving api
7
+
8
+ The version of the OpenAPI document: 1.0.0
9
+ Contact: model-serving@mail.schwarz
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501 docstring might be too long
14
+
15
+ from __future__ import annotations
16
+
17
+ import json
18
+ import pprint
19
+ import re
20
+ from datetime import datetime
21
+ from typing import Any, ClassVar, Dict, List, Optional, Set
22
+
23
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
24
+ from typing_extensions import Annotated, Self
25
+
26
+
27
+ class Token(BaseModel):
28
+ """
29
+ Token
30
+ """
31
+
32
+ description: Optional[Annotated[str, Field(strict=True, max_length=2000)]] = None
33
+ id: StrictStr
34
+ name: Annotated[str, Field(min_length=1, strict=True, max_length=200)]
35
+ region: StrictStr
36
+ state: StrictStr
37
+ valid_until: datetime = Field(alias="validUntil")
38
+ __properties: ClassVar[List[str]] = ["description", "id", "name", "region", "state", "validUntil"]
39
+
40
+ @field_validator("description")
41
+ def description_validate_regular_expression(cls, value):
42
+ """Validates the regular expression"""
43
+ if value is None:
44
+ return value
45
+
46
+ if not re.match(r"^[0-9a-zA-Z\s.:\/\-]+$", value):
47
+ raise ValueError(r"must validate the regular expression /^[0-9a-zA-Z\s.:\/\-]+$/")
48
+ return value
49
+
50
+ @field_validator("name")
51
+ def name_validate_regular_expression(cls, value):
52
+ """Validates the regular expression"""
53
+ if not re.match(r"^[0-9a-zA-Z\s_-]+$", value):
54
+ raise ValueError(r"must validate the regular expression /^[0-9a-zA-Z\s_-]+$/")
55
+ return value
56
+
57
+ @field_validator("state")
58
+ def state_validate_enum(cls, value):
59
+ """Validates the enum"""
60
+ if value not in set(["creating", "active", "deleting", "inactive"]):
61
+ raise ValueError("must be one of enum values ('creating', 'active', 'deleting', 'inactive')")
62
+ return value
63
+
64
+ model_config = ConfigDict(
65
+ populate_by_name=True,
66
+ validate_assignment=True,
67
+ protected_namespaces=(),
68
+ )
69
+
70
+ def to_str(self) -> str:
71
+ """Returns the string representation of the model using alias"""
72
+ return pprint.pformat(self.model_dump(by_alias=True))
73
+
74
+ def to_json(self) -> str:
75
+ """Returns the JSON representation of the model using alias"""
76
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
77
+ return json.dumps(self.to_dict())
78
+
79
+ @classmethod
80
+ def from_json(cls, json_str: str) -> Optional[Self]:
81
+ """Create an instance of Token from a JSON string"""
82
+ return cls.from_dict(json.loads(json_str))
83
+
84
+ def to_dict(self) -> Dict[str, Any]:
85
+ """Return the dictionary representation of the model using alias.
86
+
87
+ This has the following differences from calling pydantic's
88
+ `self.model_dump(by_alias=True)`:
89
+
90
+ * `None` is only added to the output dict for nullable fields that
91
+ were set at model initialization. Other fields with value `None`
92
+ are ignored.
93
+ """
94
+ excluded_fields: Set[str] = set([])
95
+
96
+ _dict = self.model_dump(
97
+ by_alias=True,
98
+ exclude=excluded_fields,
99
+ exclude_none=True,
100
+ )
101
+ return _dict
102
+
103
+ @classmethod
104
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
105
+ """Create an instance of Token from a dict"""
106
+ if obj is None:
107
+ return None
108
+
109
+ if not isinstance(obj, dict):
110
+ return cls.model_validate(obj)
111
+
112
+ _obj = cls.model_validate(
113
+ {
114
+ "description": obj.get("description"),
115
+ "id": obj.get("id"),
116
+ "name": obj.get("name"),
117
+ "region": obj.get("region"),
118
+ "state": obj.get("state"),
119
+ "validUntil": obj.get("validUntil"),
120
+ }
121
+ )
122
+ return _obj
@@ -0,0 +1,131 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ STACKIT Model Serving API
5
+
6
+ This API provides endpoints for the model serving api
7
+
8
+ The version of the OpenAPI document: 1.0.0
9
+ Contact: model-serving@mail.schwarz
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501 docstring might be too long
14
+
15
+ from __future__ import annotations
16
+
17
+ import json
18
+ import pprint
19
+ import re
20
+ from datetime import datetime
21
+ from typing import Any, ClassVar, Dict, List, Optional, Set
22
+
23
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
24
+ from typing_extensions import Annotated, Self
25
+
26
+
27
+ class TokenCreated(BaseModel):
28
+ """
29
+ TokenCreated
30
+ """
31
+
32
+ content: Annotated[str, Field(min_length=1, strict=True, max_length=200)]
33
+ description: Optional[Annotated[str, Field(strict=True, max_length=2000)]] = None
34
+ id: StrictStr
35
+ name: Annotated[str, Field(min_length=1, strict=True, max_length=200)]
36
+ region: StrictStr
37
+ state: StrictStr
38
+ valid_until: datetime = Field(alias="validUntil")
39
+ __properties: ClassVar[List[str]] = ["content", "description", "id", "name", "region", "state", "validUntil"]
40
+
41
+ @field_validator("content")
42
+ def content_validate_regular_expression(cls, value):
43
+ """Validates the regular expression"""
44
+ if not re.match(r"^[0-9a-zA-Z\s_-]+$", value):
45
+ raise ValueError(r"must validate the regular expression /^[0-9a-zA-Z\s_-]+$/")
46
+ return value
47
+
48
+ @field_validator("description")
49
+ def description_validate_regular_expression(cls, value):
50
+ """Validates the regular expression"""
51
+ if value is None:
52
+ return value
53
+
54
+ if not re.match(r"^[0-9a-zA-Z\s.:\/\-]+$", value):
55
+ raise ValueError(r"must validate the regular expression /^[0-9a-zA-Z\s.:\/\-]+$/")
56
+ return value
57
+
58
+ @field_validator("name")
59
+ def name_validate_regular_expression(cls, value):
60
+ """Validates the regular expression"""
61
+ if not re.match(r"^[0-9a-zA-Z\s_-]+$", value):
62
+ raise ValueError(r"must validate the regular expression /^[0-9a-zA-Z\s_-]+$/")
63
+ return value
64
+
65
+ @field_validator("state")
66
+ def state_validate_enum(cls, value):
67
+ """Validates the enum"""
68
+ if value not in set(["creating", "active", "deleting"]):
69
+ raise ValueError("must be one of enum values ('creating', 'active', 'deleting')")
70
+ return value
71
+
72
+ model_config = ConfigDict(
73
+ populate_by_name=True,
74
+ validate_assignment=True,
75
+ protected_namespaces=(),
76
+ )
77
+
78
+ def to_str(self) -> str:
79
+ """Returns the string representation of the model using alias"""
80
+ return pprint.pformat(self.model_dump(by_alias=True))
81
+
82
+ def to_json(self) -> str:
83
+ """Returns the JSON representation of the model using alias"""
84
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
85
+ return json.dumps(self.to_dict())
86
+
87
+ @classmethod
88
+ def from_json(cls, json_str: str) -> Optional[Self]:
89
+ """Create an instance of TokenCreated from a JSON string"""
90
+ return cls.from_dict(json.loads(json_str))
91
+
92
+ def to_dict(self) -> Dict[str, Any]:
93
+ """Return the dictionary representation of the model using alias.
94
+
95
+ This has the following differences from calling pydantic's
96
+ `self.model_dump(by_alias=True)`:
97
+
98
+ * `None` is only added to the output dict for nullable fields that
99
+ were set at model initialization. Other fields with value `None`
100
+ are ignored.
101
+ """
102
+ excluded_fields: Set[str] = set([])
103
+
104
+ _dict = self.model_dump(
105
+ by_alias=True,
106
+ exclude=excluded_fields,
107
+ exclude_none=True,
108
+ )
109
+ return _dict
110
+
111
+ @classmethod
112
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
113
+ """Create an instance of TokenCreated from a dict"""
114
+ if obj is None:
115
+ return None
116
+
117
+ if not isinstance(obj, dict):
118
+ return cls.model_validate(obj)
119
+
120
+ _obj = cls.model_validate(
121
+ {
122
+ "content": obj.get("content"),
123
+ "description": obj.get("description"),
124
+ "id": obj.get("id"),
125
+ "name": obj.get("name"),
126
+ "region": obj.get("region"),
127
+ "state": obj.get("state"),
128
+ "validUntil": obj.get("validUntil"),
129
+ }
130
+ )
131
+ return _obj
@@ -0,0 +1,93 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ STACKIT Model Serving API
5
+
6
+ This API provides endpoints for the model serving api
7
+
8
+ The version of the OpenAPI document: 1.0.0
9
+ Contact: model-serving@mail.schwarz
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501 docstring might be too long
14
+
15
+ from __future__ import annotations
16
+
17
+ import json
18
+ import pprint
19
+ from typing import Any, ClassVar, Dict, List, Optional, Set
20
+
21
+ from pydantic import BaseModel, ConfigDict, StrictStr
22
+ from typing_extensions import Self
23
+
24
+ from stackit.modelserving.models.token import Token
25
+
26
+
27
+ class UpdateTokenResponse(BaseModel):
28
+ """
29
+ UpdateTokenResponse
30
+ """
31
+
32
+ message: Optional[StrictStr] = None
33
+ token: Token
34
+ __properties: ClassVar[List[str]] = ["message", "token"]
35
+
36
+ model_config = ConfigDict(
37
+ populate_by_name=True,
38
+ validate_assignment=True,
39
+ protected_namespaces=(),
40
+ )
41
+
42
+ def to_str(self) -> str:
43
+ """Returns the string representation of the model using alias"""
44
+ return pprint.pformat(self.model_dump(by_alias=True))
45
+
46
+ def to_json(self) -> str:
47
+ """Returns the JSON representation of the model using alias"""
48
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
49
+ return json.dumps(self.to_dict())
50
+
51
+ @classmethod
52
+ def from_json(cls, json_str: str) -> Optional[Self]:
53
+ """Create an instance of UpdateTokenResponse from a JSON string"""
54
+ return cls.from_dict(json.loads(json_str))
55
+
56
+ def to_dict(self) -> Dict[str, Any]:
57
+ """Return the dictionary representation of the model using alias.
58
+
59
+ This has the following differences from calling pydantic's
60
+ `self.model_dump(by_alias=True)`:
61
+
62
+ * `None` is only added to the output dict for nullable fields that
63
+ were set at model initialization. Other fields with value `None`
64
+ are ignored.
65
+ """
66
+ excluded_fields: Set[str] = set([])
67
+
68
+ _dict = self.model_dump(
69
+ by_alias=True,
70
+ exclude=excluded_fields,
71
+ exclude_none=True,
72
+ )
73
+ # override the default output from pydantic by calling `to_dict()` of token
74
+ if self.token:
75
+ _dict["token"] = self.token.to_dict()
76
+ return _dict
77
+
78
+ @classmethod
79
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
80
+ """Create an instance of UpdateTokenResponse from a dict"""
81
+ if obj is None:
82
+ return None
83
+
84
+ if not isinstance(obj, dict):
85
+ return cls.model_validate(obj)
86
+
87
+ _obj = cls.model_validate(
88
+ {
89
+ "message": obj.get("message"),
90
+ "token": Token.from_dict(obj["token"]) if obj.get("token") is not None else None,
91
+ }
92
+ )
93
+ return _obj
File without changes
@@ -0,0 +1,149 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ STACKIT Model Serving API
5
+
6
+ This API provides endpoints for the model serving api
7
+
8
+ The version of the OpenAPI document: 1.0.0
9
+ Contact: model-serving@mail.schwarz
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501 docstring might be too long
14
+
15
+ import io
16
+ import json
17
+ import re
18
+
19
+ import requests
20
+ from stackit.core.authorization import Authorization
21
+ from stackit.core.configuration import Configuration
22
+
23
+ from stackit.modelserving.exceptions import ApiException, ApiValueError
24
+
25
+
26
+ RESTResponseType = requests.Response
27
+
28
+
29
+ class RESTResponse(io.IOBase):
30
+
31
+ def __init__(self, resp) -> None:
32
+ self.response = resp
33
+ self.status = resp.status_code
34
+ self.reason = resp.reason
35
+ self.data = None
36
+
37
+ def read(self):
38
+ if self.data is None:
39
+ self.data = self.response.content
40
+ return self.data
41
+
42
+ def getheaders(self):
43
+ """Returns a dictionary of the response headers."""
44
+ return self.response.headers
45
+
46
+ def getheader(self, name, default=None):
47
+ """Returns a given response header."""
48
+ return self.response.headers.get(name, default)
49
+
50
+
51
+ class RESTClientObject:
52
+ def __init__(self, config: Configuration) -> None:
53
+ self.session = config.custom_http_session if config.custom_http_session else requests.Session()
54
+ authorization = Authorization(config)
55
+ self.session.auth = authorization.auth_method
56
+
57
+ def request(self, method, url, headers=None, body=None, post_params=None, _request_timeout=None):
58
+ """Perform requests.
59
+
60
+ :param method: http request method
61
+ :param url: http request url
62
+ :param headers: http request headers
63
+ :param body: request json body, for `application/json`
64
+ :param post_params: request post parameters,
65
+ `application/x-www-form-urlencoded`
66
+ and `multipart/form-data`
67
+ :param _request_timeout: timeout setting for this request. If one
68
+ number provided, it will be total request
69
+ timeout. It can also be a pair (tuple) of
70
+ (connection, read) timeouts.
71
+ """
72
+ method = method.upper()
73
+ if method not in ["GET", "HEAD", "DELETE", "POST", "PUT", "PATCH", "OPTIONS"]:
74
+ raise ValueError("Method %s not allowed", method)
75
+
76
+ if post_params and body:
77
+ raise ApiValueError("body parameter cannot be used with post_params parameter.")
78
+
79
+ post_params = post_params or {}
80
+ headers = headers or {}
81
+
82
+ try:
83
+ # For `POST`, `PUT`, `PATCH`, `OPTIONS`, `DELETE`
84
+ if method in ["POST", "PUT", "PATCH", "OPTIONS", "DELETE"]:
85
+
86
+ # no content type provided or payload is json
87
+ content_type = headers.get("Content-Type")
88
+ if not content_type or re.search("json", content_type, re.IGNORECASE):
89
+ request_body = None
90
+ if body is not None:
91
+ request_body = json.dumps(body)
92
+ r = self.session.request(
93
+ method,
94
+ url,
95
+ data=request_body,
96
+ headers=headers,
97
+ )
98
+ elif content_type == "application/x-www-form-urlencoded":
99
+ r = self.session.request(
100
+ method,
101
+ url,
102
+ params=post_params,
103
+ headers=headers,
104
+ )
105
+ elif content_type == "multipart/form-data":
106
+ # must del headers['Content-Type'], or the correct
107
+ # Content-Type which generated by urllib3 will be
108
+ # overwritten.
109
+ del headers["Content-Type"]
110
+ # Ensures that dict objects are serialized
111
+ post_params = [(a, json.dumps(b)) if isinstance(b, dict) else (a, b) for a, b in post_params]
112
+ r = self.session.request(
113
+ method,
114
+ url,
115
+ files=post_params,
116
+ headers=headers,
117
+ )
118
+ # Pass a `string` parameter directly in the body to support
119
+ # other content types than JSON when `body` argument is
120
+ # provided in serialized form.
121
+ elif isinstance(body, str) or isinstance(body, bytes):
122
+ r = self.session.request(
123
+ method,
124
+ url,
125
+ data=body,
126
+ headers=headers,
127
+ )
128
+ elif headers["Content-Type"] == "text/plain" and isinstance(body, bool):
129
+ request_body = "true" if body else "false"
130
+ r = self.session.request(method, url, data=request_body, headers=headers)
131
+ else:
132
+ # Cannot generate the request from given parameters
133
+ msg = """Cannot prepare a request message for provided
134
+ arguments. Please check that your arguments match
135
+ declared content type."""
136
+ raise ApiException(status=0, reason=msg)
137
+ # For `GET`, `HEAD`
138
+ else:
139
+ r = self.session.request(
140
+ method,
141
+ url,
142
+ params={},
143
+ headers=headers,
144
+ )
145
+ except requests.exceptions.SSLError as e:
146
+ msg = "\n".join([type(e).__name__, str(e)])
147
+ raise ApiException(status=0, reason=msg)
148
+
149
+ return RESTResponse(r)
@@ -0,0 +1,45 @@
1
+ Metadata-Version: 2.1
2
+ Name: stackit-modelserving
3
+ Version: 0.0.1a0
4
+ Summary: STACKIT Model Serving API
5
+ Author: STACKIT Developer Tools
6
+ Author-email: developer-tools@stackit.cloud
7
+ Requires-Python: >=3.8,<4.0
8
+ Classifier: License :: OSI Approved :: Apache Software License
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.8
12
+ Classifier: Programming Language :: Python :: 3.9
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Requires-Dist: pydantic (>=2.9.2)
18
+ Requires-Dist: python-dateutil (>=2.9.0.post0)
19
+ Requires-Dist: requests (>=2.32.3)
20
+ Requires-Dist: stackit-core (>=0.0.1a)
21
+ Description-Content-Type: text/markdown
22
+
23
+ # stackit.modelserving
24
+ This API provides endpoints for the model serving api
25
+
26
+ For more information, please visit [https://developers.stackit.schwarz](https://developers.stackit.schwarz)
27
+
28
+ This package is part of the STACKIT Python SDK. For additional information, please visit the [GitHub repository](https://github.com/stackitcloud/stackit-sdk-python) of the SDK.
29
+
30
+
31
+ ## Installation & Usage
32
+ ### pip install
33
+
34
+ ```sh
35
+ pip install stackit-modelserving
36
+ ```
37
+
38
+ Then import the package:
39
+ ```python
40
+ import stackit.modelserving
41
+ ```
42
+
43
+ ## Getting Started
44
+
45
+ [Examples](https://github.com/stackitcloud/stackit-sdk-python/tree/main/examples) for the usage of the package can be found in the [GitHub repository](https://github.com/stackitcloud/stackit-sdk-python) of the SDK.
@@ -0,0 +1,30 @@
1
+ stackit/modelserving/__init__.py,sha256=fkA2CIHNw60VoWiGJ6tBW7-5iq3Y9QBn3zWGYjjtYOQ,2163
2
+ stackit/modelserving/api/__init__.py,sha256=wpuA9-INAIbI3v_44wY7jKSpBHQjCHdQaPlvU7uMXJg,107
3
+ stackit/modelserving/api/default_api.py,sha256=60RXpVwMfs2ngAiuMZzUn9pUeLegOo-3DuCJeyPGjSc,92177
4
+ stackit/modelserving/api_client.py,sha256=-DJypdllzqOV_nmyp5Aq84oicFPsz-xOfLLQdTFldv8,22745
5
+ stackit/modelserving/api_response.py,sha256=HRYkVqMNIlfODacTQPTbiVj2YdcnutpQrKJdeAoCSpM,642
6
+ stackit/modelserving/configuration.py,sha256=3BJmhtGTcq6-r48C11jWKp3l_phL-DvknL1ZQ0sRZYA,5171
7
+ stackit/modelserving/exceptions.py,sha256=fCLn5SrbBaopi8iAiBawp17TDCWYcsRJdlBzzKBT_EQ,5954
8
+ stackit/modelserving/models/__init__.py,sha256=7r5_VlHsSEAjDvUbCKZsi95N4y0mIHnfi_g_6qeYiZ4,1687
9
+ stackit/modelserving/models/chat_model_details.py,sha256=p8zbXgauJb2PANYOor76Twz2NB2zZhGsIkO2sT2GT4U,6750
10
+ stackit/modelserving/models/create_token_payload.py,sha256=swrXaj5k4kokh5a2GcxY9nEnlCOte1r7T-trxTqYYhs,3641
11
+ stackit/modelserving/models/create_token_response.py,sha256=MYUWi5l9Xq0Wkv_379YuRLW6-uMojhfKeyckqJiSE-4,2883
12
+ stackit/modelserving/models/embedding_model_details.py,sha256=X2Zfjaxr6pDBGeNgv5v2KhxF5i6tDzHPwTcxL_T2Nf0,5765
13
+ stackit/modelserving/models/error_message_response.py,sha256=0vKy6eKieP8s1L8A_9DJT-iPJO9QDrUvfoZVxZfk5rc,2545
14
+ stackit/modelserving/models/get_chat_model_response.py,sha256=MHRUjNZaI-65t47VF48d0CGSff72l3srxTlsliHT8XI,2904
15
+ stackit/modelserving/models/get_embeddings_model_resp.py,sha256=WsNUp7jhugSJdKzY-HLHcdlQq3LB0oXBjDdfDOKoPQU,2932
16
+ stackit/modelserving/models/get_token_response.py,sha256=hQLSx0TOxLt2N6UHmBZmorCUxNsjfJBbH1ayU9DyU10,2842
17
+ stackit/modelserving/models/list_models_response.py,sha256=Ed9mw0yMY6vSf0MOFVEYMPfN6pMl4OTcTYeFr8smTkU,3066
18
+ stackit/modelserving/models/list_token_resp.py,sha256=dqJEQrI5Ky5MpdeVfFQq8IFFpImSfSvRcyEwwxGifwU,3046
19
+ stackit/modelserving/models/message_response.py,sha256=MHDa6porzyjXez9zSEP7NebY4JwbzI9dw-tr4HTTBVI,2451
20
+ stackit/modelserving/models/model.py,sha256=qyklWetuadnqT9ZpK2ebzyBPavkTRt6VVh2WPt0-js0,5259
21
+ stackit/modelserving/models/partial_update_token_payload.py,sha256=1idw4Vq8n-SviMwGoKo6NyvcayroXXHrEn4NNuxptGI,3430
22
+ stackit/modelserving/models/sku.py,sha256=YcNQ9B_ytkXGqpbl3c-eTyTzP7VUDyDBcy-zCaiqPFQ,2534
23
+ stackit/modelserving/models/token.py,sha256=OFe_YIVyh4iFLhRsH7UhMkWqTrxpJeFnELHnkhxGZFk,4032
24
+ stackit/modelserving/models/token_created.py,sha256=JS1HUnU7umrMGRCArMlfYozj5_OpZ4uugLZ6LMxdZCA,4476
25
+ stackit/modelserving/models/update_token_response.py,sha256=_Rns-QJOfiPTe3ciEzeEQ0x3XUkVkScfBOhIfsAc31Y,2854
26
+ stackit/modelserving/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
+ stackit/modelserving/rest.py,sha256=7bS8vy0pYxZszwW-gYQtr6Vf1g9uof7qoTZr9mXD568,5839
28
+ stackit_modelserving-0.0.1a0.dist-info/METADATA,sha256=5vaV_buJoahgnBFMj0gnxnk8qmZ4c3XXvl-BDF_baXE,1617
29
+ stackit_modelserving-0.0.1a0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
30
+ stackit_modelserving-0.0.1a0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 1.9.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any