asteroid-odyssey 1.6.135__py3-none-any.whl → 1.6.146__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.
@@ -354,8 +354,9 @@ class AgentsApi:
354
354
  _headers: Optional[Dict[StrictStr, Any]] = None,
355
355
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
356
356
  ) -> AgentList200Response:
357
- """agent_list
357
+ """List Agents
358
358
 
359
+ List all agents for an organization
359
360
 
360
361
  :param organization_id:
361
362
  :type organization_id: str
@@ -442,8 +443,9 @@ class AgentsApi:
442
443
  _headers: Optional[Dict[StrictStr, Any]] = None,
443
444
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
444
445
  ) -> ApiResponse[AgentList200Response]:
445
- """agent_list
446
+ """List Agents
446
447
 
448
+ List all agents for an organization
447
449
 
448
450
  :param organization_id:
449
451
  :type organization_id: str
@@ -530,8 +532,9 @@ class AgentsApi:
530
532
  _headers: Optional[Dict[StrictStr, Any]] = None,
531
533
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
532
534
  ) -> RESTResponseType:
533
- """agent_list
535
+ """List Agents
534
536
 
537
+ List all agents for an organization
535
538
 
536
539
  :param organization_id:
537
540
  :type organization_id: str
@@ -16,9 +16,8 @@ from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
16
16
  from typing import Any, Dict, List, Optional, Tuple, Union
17
17
  from typing_extensions import Annotated
18
18
 
19
- from pydantic import Field, StrictBytes, StrictStr, field_validator
19
+ from pydantic import StrictBytes, StrictStr, field_validator
20
20
  from typing import List, Tuple, Union
21
- from typing_extensions import Annotated
22
21
  from asteroid_odyssey.models.agents_files_file import AgentsFilesFile
23
22
  from asteroid_odyssey.models.agents_files_temp_files_response import AgentsFilesTempFilesResponse
24
23
 
@@ -57,8 +56,9 @@ class FilesApi:
57
56
  _headers: Optional[Dict[StrictStr, Any]] = None,
58
57
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
59
58
  ) -> List[AgentsFilesFile]:
60
- """execution_context_files_get
59
+ """Get Execution Context Files
61
60
 
61
+ Get all context files attached to an execution
62
62
 
63
63
  :param execution_id: (required)
64
64
  :type execution_id: str
@@ -124,8 +124,9 @@ class FilesApi:
124
124
  _headers: Optional[Dict[StrictStr, Any]] = None,
125
125
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
126
126
  ) -> ApiResponse[List[AgentsFilesFile]]:
127
- """execution_context_files_get
127
+ """Get Execution Context Files
128
128
 
129
+ Get all context files attached to an execution
129
130
 
130
131
  :param execution_id: (required)
131
132
  :type execution_id: str
@@ -191,8 +192,9 @@ class FilesApi:
191
192
  _headers: Optional[Dict[StrictStr, Any]] = None,
192
193
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
193
194
  ) -> RESTResponseType:
194
- """execution_context_files_get
195
+ """Get Execution Context Files
195
196
 
197
+ Get all context files attached to an execution
196
198
 
197
199
  :param execution_id: (required)
198
200
  :type execution_id: str
@@ -305,7 +307,7 @@ class FilesApi:
305
307
  @validate_call
306
308
  def execution_context_files_upload(
307
309
  self,
308
- execution_id: Annotated[StrictStr, Field(description="Upload files to a running execution that is already in progress. If you want to attach files to an execution that is not yet running, see the /temp-files endpoint.")],
310
+ execution_id: StrictStr,
309
311
  files: List[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]],
310
312
  _request_timeout: Union[
311
313
  None,
@@ -320,10 +322,11 @@ class FilesApi:
320
322
  _headers: Optional[Dict[StrictStr, Any]] = None,
321
323
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
322
324
  ) -> str:
323
- """execution_context_files_upload
325
+ """Upload Execution Context Files
324
326
 
327
+ Upload files to a running execution that is already in progress. If you want to attach files to an execution that is not yet running, see the /temp-files endpoint.
325
328
 
326
- :param execution_id: Upload files to a running execution that is already in progress. If you want to attach files to an execution that is not yet running, see the /temp-files endpoint. (required)
329
+ :param execution_id: (required)
327
330
  :type execution_id: str
328
331
  :param files: (required)
329
332
  :type files: List[bytearray]
@@ -377,7 +380,7 @@ class FilesApi:
377
380
  @validate_call
378
381
  def execution_context_files_upload_with_http_info(
379
382
  self,
380
- execution_id: Annotated[StrictStr, Field(description="Upload files to a running execution that is already in progress. If you want to attach files to an execution that is not yet running, see the /temp-files endpoint.")],
383
+ execution_id: StrictStr,
381
384
  files: List[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]],
382
385
  _request_timeout: Union[
383
386
  None,
@@ -392,10 +395,11 @@ class FilesApi:
392
395
  _headers: Optional[Dict[StrictStr, Any]] = None,
393
396
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
394
397
  ) -> ApiResponse[str]:
395
- """execution_context_files_upload
398
+ """Upload Execution Context Files
396
399
 
400
+ Upload files to a running execution that is already in progress. If you want to attach files to an execution that is not yet running, see the /temp-files endpoint.
397
401
 
398
- :param execution_id: Upload files to a running execution that is already in progress. If you want to attach files to an execution that is not yet running, see the /temp-files endpoint. (required)
402
+ :param execution_id: (required)
399
403
  :type execution_id: str
400
404
  :param files: (required)
401
405
  :type files: List[bytearray]
@@ -449,7 +453,7 @@ class FilesApi:
449
453
  @validate_call
450
454
  def execution_context_files_upload_without_preload_content(
451
455
  self,
452
- execution_id: Annotated[StrictStr, Field(description="Upload files to a running execution that is already in progress. If you want to attach files to an execution that is not yet running, see the /temp-files endpoint.")],
456
+ execution_id: StrictStr,
453
457
  files: List[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]],
454
458
  _request_timeout: Union[
455
459
  None,
@@ -464,10 +468,11 @@ class FilesApi:
464
468
  _headers: Optional[Dict[StrictStr, Any]] = None,
465
469
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
466
470
  ) -> RESTResponseType:
467
- """execution_context_files_upload
471
+ """Upload Execution Context Files
468
472
 
473
+ Upload files to a running execution that is already in progress. If you want to attach files to an execution that is not yet running, see the /temp-files endpoint.
469
474
 
470
- :param execution_id: Upload files to a running execution that is already in progress. If you want to attach files to an execution that is not yet running, see the /temp-files endpoint. (required)
475
+ :param execution_id: (required)
471
476
  :type execution_id: str
472
477
  :param files: (required)
473
478
  :type files: List[bytearray]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: asteroid-odyssey
3
- Version: 1.6.135
3
+ Version: 1.6.146
4
4
  Summary: Python SDK for the Asteroid Agents API
5
5
  Author-email: Asteroid <founders@asteroid.com>
6
6
  License-Expression: MIT
@@ -7,9 +7,9 @@ asteroid_odyssey/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  asteroid_odyssey/rest.py,sha256=PrQd_XeVrCJrR7bNi85Sv2BKmisgadkYkSvVeXa7xPs,9473
8
8
  asteroid_odyssey/api/__init__.py,sha256=likCMpf7qYN0xwRbFo-DABPSqFclPQtgcXLHUhskPhc,283
9
9
  asteroid_odyssey/api/agent_profiles_api.py,sha256=EzvS-86oCwa_9xF5XBAy5Z0VaUvJmzcs-ZVbEw16L0U,74023
10
- asteroid_odyssey/api/agents_api.py,sha256=EWiMV7wcVBMdas96xbWBNw2mqIs3b04G6S1URXW12-4,26482
10
+ asteroid_odyssey/api/agents_api.py,sha256=nsCQ_ZftDg8WO02EU33Fezov77dXpznc_hfiqaW8Tq8,26617
11
11
  asteroid_odyssey/api/execution_api.py,sha256=vqo84-Aw5BvJ0ZTDfc21SPdpeuSYRWzzBIgPj1u4-as,77059
12
- asteroid_odyssey/api/files_api.py,sha256=3eelhlLfOhN53THJ90LfdLo3kdCnnw5Qml83dtWqPC4,35447
12
+ asteroid_odyssey/api/files_api.py,sha256=8gSph4wEUhnzSNtPMtz5MetwNHUGQt_eFZLob7DIpZs,34998
13
13
  asteroid_odyssey/models/__init__.py,sha256=YcsjFjl5eWw3uP-8aRK2_-qHd4IZUgHVuVgRgbW52_Q,13349
14
14
  asteroid_odyssey/models/agent_list200_response.py,sha256=fZNz18hRSrvKPHPAe16A5p1K1RopKj0Unn6Npglhu7w,3235
15
15
  asteroid_odyssey/models/agent_profile_clear_browser_cache200_response.py,sha256=R7svpgREt63we4utbMFsBPxw2-oycWLwi5xfINc6wL4,2591
@@ -128,7 +128,7 @@ asteroid_odyssey/models/common_sort_direction.py,sha256=UBW99PM3QRGRRE7dB5OSBhmh
128
128
  asteroid_odyssey/models/common_unauthorized_error_body.py,sha256=Ng62vZVuPWEkTvdnYimbItSKhUGT9G52ZOapMQ2O7Xg,2897
129
129
  asteroid_odyssey/models/executions_list200_response.py,sha256=hbMbbsh7F8Cjl3S2hhRkcH4cvHCL24TVz8fwhGE9LfI,3288
130
130
  asteroid_odyssey/models/version.py,sha256=Vjiri_a5CcDJ1lSziRqif5HuFpaxneVDLIB1r8SFIkE,707
131
- asteroid_odyssey-1.6.135.dist-info/METADATA,sha256=vwBV8nVVHB5f2hcuzrjmylQnLqtP5h1EnrOqDNpbkUU,1891
132
- asteroid_odyssey-1.6.135.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
133
- asteroid_odyssey-1.6.135.dist-info/top_level.txt,sha256=h4T6NKscnThJ4Nhzors2NKlJeZzepnM7XvDgsnfi5HA,17
134
- asteroid_odyssey-1.6.135.dist-info/RECORD,,
131
+ asteroid_odyssey-1.6.146.dist-info/METADATA,sha256=IgwuJdY2HvPaIkdrNAqxBl7lGGVYrxJMrZtoxnCNFqw,1891
132
+ asteroid_odyssey-1.6.146.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
133
+ asteroid_odyssey-1.6.146.dist-info/top_level.txt,sha256=h4T6NKscnThJ4Nhzors2NKlJeZzepnM7XvDgsnfi5HA,17
134
+ asteroid_odyssey-1.6.146.dist-info/RECORD,,