codemie-sdk-python 0.1.219__py3-none-any.whl → 0.1.222__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.
codemie_sdk/__init__.py CHANGED
@@ -18,6 +18,42 @@ Basic usage:
18
18
  """
19
19
 
20
20
  from .client.client import CodeMieClient
21
+ from .models.vendor_assistant import (
22
+ VendorType,
23
+ VendorAssistantSetting,
24
+ VendorAssistantSettingsResponse,
25
+ VendorAssistant,
26
+ VendorAssistantVersion,
27
+ VendorAssistantStatus,
28
+ VendorAssistantsResponse,
29
+ VendorAssistantAlias,
30
+ VendorAssistantAliasesResponse,
31
+ VendorAssistantInstallRequest,
32
+ VendorAssistantInstallSummary,
33
+ VendorAssistantInstallResponse,
34
+ VendorAssistantUninstallResponse,
35
+ PaginationInfo,
36
+ TokenPagination,
37
+ )
38
+ from .services.vendor import VendorService
21
39
 
22
- __version__ = "0.2.7"
23
- __all__ = ["CodeMieClient"]
40
+ __version__ = "0.2.9"
41
+ __all__ = [
42
+ "CodeMieClient",
43
+ "VendorType",
44
+ "VendorAssistantSetting",
45
+ "VendorAssistantSettingsResponse",
46
+ "VendorAssistant",
47
+ "VendorAssistantVersion",
48
+ "VendorAssistantStatus",
49
+ "VendorAssistantsResponse",
50
+ "VendorAssistantAlias",
51
+ "VendorAssistantAliasesResponse",
52
+ "VendorAssistantInstallRequest",
53
+ "VendorAssistantInstallSummary",
54
+ "VendorAssistantInstallResponse",
55
+ "VendorAssistantUninstallResponse",
56
+ "PaginationInfo",
57
+ "TokenPagination",
58
+ "VendorService",
59
+ ]
@@ -13,6 +13,7 @@ from ..services.user import UserService
13
13
  from ..services.workflow import WorkflowService
14
14
  from ..services.files import FileOperationService
15
15
  from ..services.webhook import WebhookService
16
+ from ..services.vendor import VendorService
16
17
 
17
18
 
18
19
  class CodeMieClient:
@@ -89,6 +90,9 @@ class CodeMieClient:
89
90
  self.webhook = WebhookService(
90
91
  self._api_domain, self._token, verify_ssl=self._verify_ssl
91
92
  )
93
+ self.vendors = VendorService(
94
+ self._api_domain, self._token, verify_ssl=self._verify_ssl
95
+ )
92
96
 
93
97
  @property
94
98
  def token(self) -> str:
@@ -135,4 +139,7 @@ class CodeMieClient:
135
139
  self.conversations = ConversationService(
136
140
  self._api_domain, self._token, verify_ssl=self._verify_ssl
137
141
  )
142
+ self.vendors = VendorService(
143
+ self._api_domain, self._token, verify_ssl=self._verify_ssl
144
+ )
138
145
  return self._token
@@ -0,0 +1,187 @@
1
+ """Models for vendor assistant settings."""
2
+
3
+ from datetime import datetime
4
+ from enum import Enum
5
+ from typing import Optional, List
6
+
7
+ from pydantic import BaseModel, ConfigDict, Field
8
+
9
+
10
+ class VendorType(str, Enum):
11
+ """Supported cloud vendor types."""
12
+
13
+ AWS = "aws"
14
+ AZURE = "azure"
15
+ GCP = "gcp"
16
+
17
+
18
+ class VendorAssistantStatus(str, Enum):
19
+ """Status of vendor assistant."""
20
+
21
+ PREPARED = "PREPARED"
22
+ NOT_PREPARED = "NOT_PREPARED"
23
+
24
+
25
+ class VendorAssistantSetting(BaseModel):
26
+ """Model representing a vendor assistant setting."""
27
+
28
+ model_config = ConfigDict(extra="ignore")
29
+
30
+ setting_id: str = Field(..., description="Unique identifier for the setting")
31
+ setting_name: str = Field(..., description="Name of the setting")
32
+ project: str = Field(..., description="Project associated with the setting")
33
+ entities: List[str] = Field(
34
+ default_factory=list, description="List of entities associated with the setting"
35
+ )
36
+ invalid: Optional[bool] = Field(None, description="Whether the setting is invalid")
37
+ error: Optional[str] = Field(
38
+ None, description="Error message if the setting is invalid"
39
+ )
40
+
41
+
42
+ class PaginationInfo(BaseModel):
43
+ """Pagination information for list responses."""
44
+
45
+ model_config = ConfigDict(extra="ignore")
46
+
47
+ total: int = Field(..., description="Total number of items")
48
+ pages: int = Field(..., description="Total number of pages")
49
+ page: int = Field(..., description="Current page number (0-based)")
50
+ per_page: int = Field(..., description="Number of items per page")
51
+
52
+
53
+ class VendorAssistantSettingsResponse(BaseModel):
54
+ """Response model for vendor assistant settings list."""
55
+
56
+ model_config = ConfigDict(extra="ignore")
57
+
58
+ data: List[VendorAssistantSetting] = Field(
59
+ ..., description="List of vendor assistant settings"
60
+ )
61
+ pagination: PaginationInfo = Field(..., description="Pagination information")
62
+
63
+
64
+ class VendorAssistant(BaseModel):
65
+ """Model representing a vendor assistant."""
66
+
67
+ model_config = ConfigDict(extra="ignore")
68
+
69
+ id: str = Field(..., description="Unique identifier for the assistant")
70
+ name: str = Field(..., description="Name of the assistant")
71
+ status: VendorAssistantStatus = Field(..., description="Status of the assistant")
72
+ description: Optional[str] = Field(None, description="Description of the assistant")
73
+ updatedAt: datetime = Field(
74
+ ..., description="Last update timestamp", alias="updatedAt"
75
+ )
76
+
77
+
78
+ class VendorAssistantVersion(BaseModel):
79
+ """Model representing a specific version of a vendor assistant with detailed information."""
80
+
81
+ model_config = ConfigDict(extra="ignore")
82
+
83
+ id: str = Field(..., description="Unique identifier for the assistant")
84
+ name: str = Field(..., description="Name of the assistant")
85
+ status: VendorAssistantStatus = Field(..., description="Status of the assistant")
86
+ version: str = Field(..., description="Version of the assistant")
87
+ instruction: str = Field(..., description="Instructions for the assistant")
88
+ foundationModel: str = Field(
89
+ ...,
90
+ description="ARN or identifier of the foundation model",
91
+ alias="foundationModel",
92
+ )
93
+ description: Optional[str] = Field(None, description="Description of the assistant")
94
+ createdAt: datetime = Field(
95
+ ..., description="Creation timestamp", alias="createdAt"
96
+ )
97
+ updatedAt: datetime = Field(
98
+ ..., description="Last update timestamp", alias="updatedAt"
99
+ )
100
+
101
+
102
+ class TokenPagination(BaseModel):
103
+ """Token-based pagination information."""
104
+
105
+ model_config = ConfigDict(extra="ignore")
106
+
107
+ next_token: Optional[str] = Field(None, description="Token for the next page")
108
+
109
+
110
+ class VendorAssistantsResponse(BaseModel):
111
+ """Response model for vendor assistants list."""
112
+
113
+ model_config = ConfigDict(extra="ignore")
114
+
115
+ data: List[VendorAssistant] = Field(..., description="List of vendor assistants")
116
+ pagination: TokenPagination = Field(
117
+ ..., description="Token-based pagination information"
118
+ )
119
+
120
+
121
+ class VendorAssistantAlias(BaseModel):
122
+ """Model representing a vendor assistant alias."""
123
+
124
+ model_config = ConfigDict(extra="ignore")
125
+
126
+ id: str = Field(..., description="Unique identifier for the alias")
127
+ name: str = Field(..., description="Name of the alias")
128
+ status: VendorAssistantStatus = Field(..., description="Status of the alias")
129
+ description: Optional[str] = Field(None, description="Description of the alias")
130
+ version: str = Field(..., description="Version of the alias")
131
+ createdAt: datetime = Field(
132
+ ..., description="Creation timestamp", alias="createdAt"
133
+ )
134
+ updatedAt: datetime = Field(
135
+ ..., description="Last update timestamp", alias="updatedAt"
136
+ )
137
+
138
+
139
+ class VendorAssistantAliasesResponse(BaseModel):
140
+ """Response model for vendor assistant aliases list."""
141
+
142
+ model_config = ConfigDict(extra="ignore")
143
+
144
+ data: List[VendorAssistantAlias] = Field(
145
+ ..., description="List of vendor assistant aliases"
146
+ )
147
+ pagination: TokenPagination = Field(
148
+ ..., description="Token-based pagination information"
149
+ )
150
+
151
+
152
+ class VendorAssistantInstallRequest(BaseModel):
153
+ """Model for a single assistant installation request."""
154
+
155
+ model_config = ConfigDict(extra="ignore")
156
+
157
+ id: str = Field(..., description="Assistant ID to install")
158
+ agentAliasId: str = Field(..., description="Alias ID to use for the assistant")
159
+ setting_id: str = Field(..., description="Vendor setting ID")
160
+
161
+
162
+ class VendorAssistantInstallSummary(BaseModel):
163
+ """Model for assistant installation summary."""
164
+
165
+ model_config = ConfigDict(extra="ignore")
166
+
167
+ agentId: str = Field(..., description="Installed assistant ID")
168
+ agentAliasId: str = Field(..., description="Alias ID used for installation")
169
+ aiRunId: str = Field(..., description="AI run ID for the installation")
170
+
171
+
172
+ class VendorAssistantInstallResponse(BaseModel):
173
+ """Response model for assistant installation."""
174
+
175
+ model_config = ConfigDict(extra="ignore")
176
+
177
+ summary: List[VendorAssistantInstallSummary] = Field(
178
+ ..., description="List of installation summaries"
179
+ )
180
+
181
+
182
+ class VendorAssistantUninstallResponse(BaseModel):
183
+ """Response model for assistant uninstallation."""
184
+
185
+ model_config = ConfigDict(extra="ignore")
186
+
187
+ success: bool = Field(..., description="Whether the uninstallation was successful")
@@ -0,0 +1,364 @@
1
+ """Vendor service implementation for managing cloud vendor assistant settings."""
2
+
3
+ from typing import Union, Optional, List
4
+
5
+ from ..models.vendor_assistant import (
6
+ VendorType,
7
+ VendorAssistantSettingsResponse,
8
+ VendorAssistantsResponse,
9
+ VendorAssistant,
10
+ VendorAssistantVersion,
11
+ VendorAssistantAliasesResponse,
12
+ VendorAssistantInstallRequest,
13
+ VendorAssistantInstallResponse,
14
+ VendorAssistantUninstallResponse,
15
+ )
16
+ from ..utils import ApiRequestHandler
17
+
18
+
19
+ class VendorService:
20
+ """Service for managing cloud vendor assistant settings (AWS, Azure, GCP)."""
21
+
22
+ def __init__(self, api_domain: str, token: str, verify_ssl: bool = True):
23
+ """Initialize the vendor service.
24
+
25
+ Args:
26
+ api_domain: Base URL for the CodeMie API
27
+ token: Authentication token
28
+ verify_ssl: Whether to verify SSL certificates
29
+ """
30
+ self._api = ApiRequestHandler(api_domain, token, verify_ssl)
31
+
32
+ def get_assistant_settings(
33
+ self,
34
+ vendor: Union[VendorType, str],
35
+ page: int = 0,
36
+ per_page: int = 10,
37
+ ) -> VendorAssistantSettingsResponse:
38
+ """Get assistant settings for a specific cloud vendor.
39
+
40
+ Args:
41
+ vendor: Cloud vendor type (aws, azure, gcp). Can be VendorType enum or string.
42
+ page: Page number for pagination (0-based)
43
+ per_page: Number of items per page
44
+
45
+ Returns:
46
+ VendorAssistantSettingsResponse containing list of settings and pagination info
47
+
48
+ Example:
49
+ >>> # Using enum
50
+ >>> settings = client.vendors.get_assistant_settings(VendorType.AWS, page=0, per_page=10)
51
+ >>> # Using string
52
+ >>> settings = client.vendors.get_assistant_settings("aws", page=0, per_page=10)
53
+ """
54
+ # Convert enum to string value if needed
55
+ vendor_str = vendor.value if isinstance(vendor, VendorType) else vendor
56
+
57
+ params = {
58
+ "page": page,
59
+ "per_page": per_page,
60
+ }
61
+
62
+ return self._api.get(
63
+ f"/v1/vendors/{vendor_str}/assistants/settings",
64
+ VendorAssistantSettingsResponse,
65
+ params=params,
66
+ wrap_response=False,
67
+ )
68
+
69
+ def get_assistants(
70
+ self,
71
+ vendor: Union[VendorType, str],
72
+ setting_id: str,
73
+ per_page: int = 10,
74
+ next_token: Optional[str] = None,
75
+ ) -> VendorAssistantsResponse:
76
+ """Get assistants for a specific vendor setting.
77
+
78
+ Args:
79
+ vendor: Cloud vendor type (aws, azure, gcp). Can be VendorType enum or string.
80
+ setting_id: ID of the vendor setting to retrieve assistants for
81
+ per_page: Number of items per page
82
+ next_token: Token for pagination (optional, for retrieving next page)
83
+
84
+ Returns:
85
+ VendorAssistantsResponse containing list of assistants and pagination token
86
+
87
+ Example:
88
+ >>> # Get first page
89
+ >>> assistants = client.vendors.get_assistants(
90
+ ... vendor=VendorType.AWS,
91
+ ... setting_id="cac90788-39b7-4ffe-8b57-e8b047fa1f6c",
92
+ ... per_page=8
93
+ ... )
94
+ >>> # Get next page if available
95
+ >>> if assistants.pagination.next_token:
96
+ ... next_page = client.vendors.get_assistants(
97
+ ... vendor=VendorType.AWS,
98
+ ... setting_id="cac90788-39b7-4ffe-8b57-e8b047fa1f6c",
99
+ ... per_page=8,
100
+ ... next_token=assistants.pagination.next_token
101
+ ... )
102
+ """
103
+ # Convert enum to string value if needed
104
+ vendor_str = vendor.value if isinstance(vendor, VendorType) else vendor
105
+
106
+ params = {
107
+ "setting_id": setting_id,
108
+ "per_page": per_page,
109
+ }
110
+
111
+ if next_token:
112
+ params["next_token"] = next_token
113
+
114
+ return self._api.get(
115
+ f"/v1/vendors/{vendor_str}/assistants",
116
+ VendorAssistantsResponse,
117
+ params=params,
118
+ wrap_response=False,
119
+ )
120
+
121
+ def get_assistant(
122
+ self,
123
+ vendor: Union[VendorType, str],
124
+ assistant_id: str,
125
+ setting_id: str,
126
+ ) -> VendorAssistant:
127
+ """Get a specific assistant by ID for a vendor setting.
128
+
129
+ Args:
130
+ vendor: Cloud vendor type (aws, azure, gcp). Can be VendorType enum or string.
131
+ assistant_id: ID of the assistant to retrieve
132
+ setting_id: ID of the vendor setting
133
+
134
+ Returns:
135
+ VendorAssistant containing assistant details
136
+
137
+ Example:
138
+ >>> assistant = client.vendors.get_assistant(
139
+ ... vendor=VendorType.AWS,
140
+ ... assistant_id="TJBKR0DGWT",
141
+ ... setting_id="cac90788-39b7-4ffe-8b57-e8b047fa1f6c"
142
+ ... )
143
+ >>> print(f"Name: {assistant.name}, Status: {assistant.status}")
144
+ """
145
+ # Convert enum to string value if needed
146
+ vendor_str = vendor.value if isinstance(vendor, VendorType) else vendor
147
+
148
+ params = {
149
+ "setting_id": setting_id,
150
+ }
151
+
152
+ return self._api.get(
153
+ f"/v1/vendors/{vendor_str}/assistants/{assistant_id}",
154
+ VendorAssistant,
155
+ params=params,
156
+ wrap_response=False,
157
+ )
158
+
159
+ def get_assistant_version(
160
+ self,
161
+ vendor: Union[VendorType, str],
162
+ assistant_id: str,
163
+ version: str,
164
+ setting_id: str,
165
+ ) -> VendorAssistantVersion:
166
+ """Get a specific version of a vendor assistant with detailed information.
167
+
168
+ Args:
169
+ vendor: Cloud vendor type (aws, azure, gcp). Can be VendorType enum or string.
170
+ assistant_id: ID of the assistant to retrieve
171
+ version: Version number to retrieve (e.g., "1", "DRAFT")
172
+ setting_id: ID of the vendor setting
173
+
174
+ Returns:
175
+ VendorAssistantVersion containing detailed version information including
176
+ instruction, foundation model, and timestamps
177
+
178
+ Example:
179
+ >>> version_details = client.vendors.get_assistant_version(
180
+ ... vendor=VendorType.AWS,
181
+ ... assistant_id="TJBKR0DGWT",
182
+ ... version="1",
183
+ ... setting_id="cac90788-39b7-4ffe-8b57-e8b047fa1f6c"
184
+ ... )
185
+ >>> print(f"Name: {version_details.name}")
186
+ >>> print(f"Version: {version_details.version}")
187
+ >>> print(f"Instruction: {version_details.instruction}")
188
+ >>> print(f"Model: {version_details.foundationModel}")
189
+ """
190
+ # Convert enum to string value if needed
191
+ vendor_str = vendor.value if isinstance(vendor, VendorType) else vendor
192
+
193
+ params = {
194
+ "setting_id": setting_id,
195
+ }
196
+
197
+ return self._api.get(
198
+ f"/v1/vendors/{vendor_str}/assistants/{assistant_id}/{version}",
199
+ VendorAssistantVersion,
200
+ params=params,
201
+ wrap_response=False,
202
+ )
203
+
204
+ def get_assistant_aliases(
205
+ self,
206
+ vendor: Union[VendorType, str],
207
+ assistant_id: str,
208
+ setting_id: str,
209
+ per_page: int = 10,
210
+ next_token: Optional[str] = None,
211
+ ) -> VendorAssistantAliasesResponse:
212
+ """Get aliases for a specific vendor assistant.
213
+
214
+ Args:
215
+ vendor: Cloud vendor type (aws, azure, gcp). Can be VendorType enum or string.
216
+ assistant_id: ID of the assistant to retrieve aliases for
217
+ setting_id: ID of the vendor setting
218
+ per_page: Number of items per page
219
+ next_token: Token for pagination (optional, for retrieving next page)
220
+
221
+ Returns:
222
+ VendorAssistantAliasesResponse containing list of aliases and pagination token
223
+
224
+ Example:
225
+ >>> # Get first page of aliases
226
+ >>> aliases = client.vendors.get_assistant_aliases(
227
+ ... vendor=VendorType.AWS,
228
+ ... assistant_id="TJBKR0DGWT",
229
+ ... setting_id="cac90788-39b7-4ffe-8b57-e8b047fa1f6c",
230
+ ... per_page=5
231
+ ... )
232
+ >>> for alias in aliases.data:
233
+ ... print(f"{alias.name} (v{alias.version}): {alias.status}")
234
+ >>> # Get next page if available
235
+ >>> if aliases.pagination.next_token:
236
+ ... next_page = client.vendors.get_assistant_aliases(
237
+ ... vendor=VendorType.AWS,
238
+ ... assistant_id="TJBKR0DGWT",
239
+ ... setting_id="cac90788-39b7-4ffe-8b57-e8b047fa1f6c",
240
+ ... per_page=5,
241
+ ... next_token=aliases.pagination.next_token
242
+ ... )
243
+ """
244
+ # Convert enum to string value if needed
245
+ vendor_str = vendor.value if isinstance(vendor, VendorType) else vendor
246
+
247
+ params = {
248
+ "setting_id": setting_id,
249
+ "per_page": per_page,
250
+ }
251
+
252
+ if next_token:
253
+ params["next_token"] = next_token
254
+
255
+ return self._api.get(
256
+ f"/v1/vendors/{vendor_str}/assistants/{assistant_id}/aliases",
257
+ VendorAssistantAliasesResponse,
258
+ params=params,
259
+ wrap_response=False,
260
+ )
261
+
262
+ def install_assistants(
263
+ self,
264
+ vendor: Union[VendorType, str],
265
+ assistants: List[VendorAssistantInstallRequest],
266
+ ) -> VendorAssistantInstallResponse:
267
+ """Install/activate vendor assistants.
268
+
269
+ Args:
270
+ vendor: Cloud vendor type (aws, azure, gcp). Can be VendorType enum or string.
271
+ assistants: List of assistant installation requests with assistant ID, alias ID, and setting ID
272
+
273
+ Returns:
274
+ VendorAssistantInstallResponse containing installation summary with AI run IDs
275
+
276
+ Example:
277
+ >>> from codemie_sdk import VendorAssistantInstallRequest
278
+ >>> # Install single assistant
279
+ >>> install_request = VendorAssistantInstallRequest(
280
+ ... id="TJBKR0DGWT",
281
+ ... agentAliasId="MNULODIW4N",
282
+ ... setting_id="cac90788-39b7-4ffe-8b57-e8b047fa1f6c"
283
+ ... )
284
+ >>> response = client.vendors.install_assistants(
285
+ ... vendor=VendorType.AWS,
286
+ ... assistants=[install_request]
287
+ ... )
288
+ >>> for item in response.summary:
289
+ ... print(f"Installed {item.agentId} with run ID: {item.aiRunId}")
290
+ >>>
291
+ >>> # Install multiple assistants
292
+ >>> requests = [
293
+ ... VendorAssistantInstallRequest(
294
+ ... id="ASSISTANT_ID_1",
295
+ ... agentAliasId="ALIAS_ID_1",
296
+ ... setting_id="SETTING_ID"
297
+ ... ),
298
+ ... VendorAssistantInstallRequest(
299
+ ... id="ASSISTANT_ID_2",
300
+ ... agentAliasId="ALIAS_ID_2",
301
+ ... setting_id="SETTING_ID"
302
+ ... )
303
+ ... ]
304
+ >>> response = client.vendors.install_assistants(
305
+ ... vendor=VendorType.AWS,
306
+ ... assistants=requests
307
+ ... )
308
+ """
309
+ # Convert enum to string value if needed
310
+ vendor_str = vendor.value if isinstance(vendor, VendorType) else vendor
311
+
312
+ # Convert list of Pydantic models to list of dicts
313
+ payload = [assistant.model_dump(by_alias=True) for assistant in assistants]
314
+
315
+ return self._api.post(
316
+ f"/v1/vendors/{vendor_str}/assistants",
317
+ VendorAssistantInstallResponse,
318
+ json_data=payload,
319
+ wrap_response=False,
320
+ )
321
+
322
+ def uninstall_assistant(
323
+ self,
324
+ vendor: Union[VendorType, str],
325
+ ai_run_id: str,
326
+ ) -> VendorAssistantUninstallResponse:
327
+ """Uninstall/deactivate a vendor assistant.
328
+
329
+ Args:
330
+ vendor: Cloud vendor type (aws, azure, gcp). Can be VendorType enum or string.
331
+ ai_run_id: AI run ID returned from the install operation
332
+
333
+ Returns:
334
+ VendorAssistantUninstallResponse with success status
335
+
336
+ Example:
337
+ >>> # First, install an assistant
338
+ >>> install_request = VendorAssistantInstallRequest(
339
+ ... id="TJBKR0DGWT",
340
+ ... agentAliasId="MNULODIW4N",
341
+ ... setting_id="cac90788-39b7-4ffe-8b57-e8b047fa1f6c"
342
+ ... )
343
+ >>> install_response = client.vendors.install_assistants(
344
+ ... vendor=VendorType.AWS,
345
+ ... assistants=[install_request]
346
+ ... )
347
+ >>> ai_run_id = install_response.summary[0].aiRunId
348
+ >>>
349
+ >>> # Later, uninstall the assistant using the AI run ID
350
+ >>> response = client.vendors.uninstall_assistant(
351
+ ... vendor=VendorType.AWS,
352
+ ... ai_run_id=ai_run_id
353
+ ... )
354
+ >>> if response.success:
355
+ ... print("Assistant successfully uninstalled!")
356
+ """
357
+ # Convert enum to string value if needed
358
+ vendor_str = vendor.value if isinstance(vendor, VendorType) else vendor
359
+
360
+ return self._api.delete(
361
+ f"/v1/vendors/{vendor_str}/assistants/{ai_run_id}",
362
+ VendorAssistantUninstallResponse,
363
+ wrap_response=False,
364
+ )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: codemie-sdk-python
3
- Version: 0.1.219
3
+ Version: 0.1.222
4
4
  Summary: CodeMie SDK for Python
5
5
  Author: Vadym Vlasenko
6
6
  Author-email: vadym_vlasenko@epam.com
@@ -1,8 +1,8 @@
1
- codemie_sdk/__init__.py,sha256=P9drJ7-2e75g3u2EhqJbrmtC_d6v4bDb8UGbyRAwoLQ,566
1
+ codemie_sdk/__init__.py,sha256=R0qglC50fdlkiD9NQenN2FEa3BHepwwL7GI8t4U2_Cg,1576
2
2
  codemie_sdk/auth/__init__.py,sha256=IksEj223xEZtJ-cQ0AT9L0Bs9psIJ8QNzDXrPTUQ3xQ,126
3
3
  codemie_sdk/auth/credentials.py,sha256=OzR_CXPBNTEC6VmNdzcCHF7rWWGrVf3agAlGKgPtTiU,4361
4
4
  codemie_sdk/client/__init__.py,sha256=yf6C39MmrJ6gK9ZHMhBeynKwUUYVSUTQbKxU8-4qpKg,101
5
- codemie_sdk/client/client.py,sha256=TkKZ9qhzfyUw9hZP5xtZrr3jQQp71NiHmxndlOG6Dqo,5514
5
+ codemie_sdk/client/client.py,sha256=s148DzRVkE0Rc5krpceoZnIX2HEgDdpEavK-d9pkVU4,5796
6
6
  codemie_sdk/exceptions.py,sha256=XoVPyognx-JmyVxLHkZPAcX1CMi1OoT1diBFJLU54so,1183
7
7
  codemie_sdk/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  codemie_sdk/models/assistant.py,sha256=zb_k9EZ7rVFD7T2BwSqu_UA0psLKn7VHbY6JB6SyMOo,10946
@@ -14,6 +14,7 @@ codemie_sdk/models/integration.py,sha256=IxTbbyEHsD8HWWFDtZDoWuE1ZwR9wwiBk3XUwlf
14
14
  codemie_sdk/models/llm.py,sha256=ppb9-1dx1UFhRuJpSR3ij7H6Pfhe9nO4C4BEOIbToy4,1192
15
15
  codemie_sdk/models/task.py,sha256=J4ZFRY3s8qBGrqB5NLQF0rMbInLh4s7OEZ0ZfmnW0Ho,1476
16
16
  codemie_sdk/models/user.py,sha256=Q0rjimZh-IbeaPfq6b6fk6ZaCtwLqWHEIlU863suCS4,1777
17
+ codemie_sdk/models/vendor_assistant.py,sha256=4xPBwE-x2eWNNHAVsdOrZSDKvvp4UqlsunR0Q9pQccc,6409
17
18
  codemie_sdk/models/workflow.py,sha256=qfk0rBJnFUMpcEDq_E5GB3hzYKbe_bb2NYJlLZJwUEE,2453
18
19
  codemie_sdk/models/workflow_execution_payload.py,sha256=iEGkdw1jm09aniZiXswbQeLtoiUYIxhc3vsBvZL00JE,515
19
20
  codemie_sdk/models/workflow_state.py,sha256=okEMKzkiBU3GHs9VNBoiEMOnOeZRMXGYtpL0NYSg-FY,1374
@@ -26,12 +27,13 @@ codemie_sdk/services/integration.py,sha256=SdwFwR3hCPyJYilzzlkpKPLNbO89nfqmIXXoT
26
27
  codemie_sdk/services/llm.py,sha256=0-e4_7RvLHs2giCyoQ5U4KDTh6p5VXgPKNxnDP9ZDFU,1100
27
28
  codemie_sdk/services/task.py,sha256=3e9t8_LMkR4xfeMBwMCo7ZF87PxPS-ZbzDg85ilda2M,1031
28
29
  codemie_sdk/services/user.py,sha256=7B-Qw451qKPD5Io6qLda-kbFDaPRQ3TamJamiGwCQu4,1013
30
+ codemie_sdk/services/vendor.py,sha256=aJFTPZmeO-6MJ6JsVcT7jHleA-My9_OoJ_8p2mgrMQ0,13356
29
31
  codemie_sdk/services/webhook.py,sha256=QhRKo7y9BcboYJm_cPdPqYDhmv_OWTf9eodsT3UkAjM,1210
30
32
  codemie_sdk/services/workflow.py,sha256=cAGv2jEnb3dOSk5xxqg3L15mTcSkAVxaZHVZwTYjT-w,5407
31
33
  codemie_sdk/services/workflow_execution.py,sha256=P57fz3fsUnKLg8qUYszMxCn_ykovh22BQuUk0EGnC9I,4654
32
34
  codemie_sdk/services/workflow_execution_state.py,sha256=tXoaa8yT09xgYEUNiHhVULe76TwGwVgZupMIUyyLxdo,2070
33
35
  codemie_sdk/utils/__init__.py,sha256=BXAJJfAzO89-kMYvWWo9wSNhSbGgF3vB1In9sePFhMM,109
34
36
  codemie_sdk/utils/http.py,sha256=1eNjCoVh_hq0TIsDSlsXZWmqODznIXvPpRrIn-KeftY,9759
35
- codemie_sdk_python-0.1.219.dist-info/METADATA,sha256=gzwrWrLCopqiQ4L4hVBjOVYN7fuXYgmy93nvsrVRIJA,24882
36
- codemie_sdk_python-0.1.219.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
37
- codemie_sdk_python-0.1.219.dist-info/RECORD,,
37
+ codemie_sdk_python-0.1.222.dist-info/METADATA,sha256=keWZtqQaeGZfGT5CBFSxm1vDKJ3qMG1azDtc2l4F8Ko,24882
38
+ codemie_sdk_python-0.1.222.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
39
+ codemie_sdk_python-0.1.222.dist-info/RECORD,,