amigo_sdk 0.100.0__py3-none-any.whl → 0.101.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.
- amigo_sdk/__init__.py +1 -1
- amigo_sdk/generated/model.py +134 -153
- {amigo_sdk-0.100.0.dist-info → amigo_sdk-0.101.0.dist-info}/METADATA +1 -1
- {amigo_sdk-0.100.0.dist-info → amigo_sdk-0.101.0.dist-info}/RECORD +7 -7
- {amigo_sdk-0.100.0.dist-info → amigo_sdk-0.101.0.dist-info}/WHEEL +0 -0
- {amigo_sdk-0.100.0.dist-info → amigo_sdk-0.101.0.dist-info}/entry_points.txt +0 -0
- {amigo_sdk-0.100.0.dist-info → amigo_sdk-0.101.0.dist-info}/licenses/LICENSE +0 -0
amigo_sdk/__init__.py
CHANGED
amigo_sdk/generated/model.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: <stdin>
|
|
3
|
-
# timestamp: 2026-01-
|
|
3
|
+
# timestamp: 2026-01-11T00:33:21+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
@@ -1224,31 +1224,12 @@ class VersionComponent(RootModel[int | Literal['latest']]):
|
|
|
1224
1224
|
root: int | Literal['latest']
|
|
1225
1225
|
|
|
1226
1226
|
|
|
1227
|
-
class
|
|
1228
|
-
|
|
1229
|
-
integer_44100 = 44100
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
class SampleWidth1(IntEnum):
|
|
1233
|
-
integer_4 = 4
|
|
1234
|
-
integer_8 = 8
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
class VoiceResponseMP3AudioFormat(BaseModel):
|
|
1238
|
-
type: Literal['mp3'] = Field('mp3', title='Type')
|
|
1239
|
-
sample_rate: SampleRate = Field(..., title='Sample Rate')
|
|
1240
|
-
sample_width: SampleWidth1 = Field(..., title='Sample Width')
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
class SampleRate1(IntEnum):
|
|
1244
|
-
integer_8000 = 8000
|
|
1245
|
-
integer_16000 = 16000
|
|
1246
|
-
integer_44100 = 44100
|
|
1227
|
+
class VoiceResponseMP3AudioFormat(MP3UserMessageAudioConfig):
|
|
1228
|
+
pass
|
|
1247
1229
|
|
|
1248
1230
|
|
|
1249
1231
|
class VoiceResponsePCMAudioFormat(BaseModel):
|
|
1250
1232
|
type: Literal['pcm'] = Field('pcm', title='Type')
|
|
1251
|
-
sample_rate: SampleRate1 = Field(..., title='Sample Rate')
|
|
1252
1233
|
|
|
1253
1234
|
|
|
1254
1235
|
class WebhookDeliveryStatus(Enum):
|
|
@@ -1529,6 +1510,12 @@ class MongoCollectionsToolToolTag(BaseModel):
|
|
|
1529
1510
|
value: str | None = Field(..., title='Value')
|
|
1530
1511
|
|
|
1531
1512
|
|
|
1513
|
+
class MongoCollectionsToolInvocationToolInvocationVersion(BaseModel):
|
|
1514
|
+
major: int = Field(..., title='Major')
|
|
1515
|
+
minor: int = Field(..., title='Minor')
|
|
1516
|
+
patch: int = Field(..., title='Patch')
|
|
1517
|
+
|
|
1518
|
+
|
|
1532
1519
|
class MongoCollectionsToolVersionToolVersionUserInfo(BaseModel):
|
|
1533
1520
|
user_id: str = Field(..., description='The ID of the user.', title='User Id')
|
|
1534
1521
|
user_org_id: str = Field(
|
|
@@ -1536,12 +1523,6 @@ class MongoCollectionsToolVersionToolVersionUserInfo(BaseModel):
|
|
|
1536
1523
|
)
|
|
1537
1524
|
|
|
1538
1525
|
|
|
1539
|
-
class MongoCollectionsToolVersionToolVersionVersion(BaseModel):
|
|
1540
|
-
major: int = Field(..., title='Major')
|
|
1541
|
-
minor: int = Field(..., title='Minor')
|
|
1542
|
-
patch: int = Field(..., title='Patch')
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
1526
|
class MongoCollectionsUserUserPreferences(BaseModel):
|
|
1546
1527
|
enable_response_recommendation: bool | None = Field(
|
|
1547
1528
|
False,
|
|
@@ -1822,6 +1803,20 @@ class DynamicBehaviorSetGetDynamicBehaviorInvocationsResponse(BaseModel):
|
|
|
1822
1803
|
)
|
|
1823
1804
|
|
|
1824
1805
|
|
|
1806
|
+
class DynamicBehaviorSetGetDynamicBehaviorSetsResponseDynamicBehaviorSetInstance(
|
|
1807
|
+
BaseModel
|
|
1808
|
+
):
|
|
1809
|
+
id: str = Field(..., title='Id')
|
|
1810
|
+
name: str = Field(..., title='Name')
|
|
1811
|
+
is_active: bool = Field(..., title='Is Active')
|
|
1812
|
+
applied_to_services: list[str] = Field(..., title='Applied To Services')
|
|
1813
|
+
tags: dict[str, str | None] = Field(..., title='Tags')
|
|
1814
|
+
created_at: AwareDatetime = Field(..., title='Created At')
|
|
1815
|
+
creator: MongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
|
|
1816
|
+
updated_at: AwareDatetime = Field(..., title='Updated At')
|
|
1817
|
+
updated_by: MongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
|
|
1818
|
+
|
|
1819
|
+
|
|
1825
1820
|
class DynamicBehaviorSetGetDynamicBehaviorSetsResponseFilterValues(BaseModel):
|
|
1826
1821
|
applied_to_services_ids: list[str] = Field(
|
|
1827
1822
|
...,
|
|
@@ -1842,18 +1837,14 @@ class DynamicBehaviorSetGetDynamicBehaviorSetsResponseFilterValues(BaseModel):
|
|
|
1842
1837
|
)
|
|
1843
1838
|
|
|
1844
1839
|
|
|
1845
|
-
class
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
created_at: AwareDatetime = Field(..., title='Created At')
|
|
1854
|
-
creator: MongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
|
|
1855
|
-
updated_at: AwareDatetime = Field(..., title='Updated At')
|
|
1856
|
-
updated_by: MongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
|
|
1840
|
+
class DynamicBehaviorSetSearchDynamicBehaviorSetsResponse(BaseModel):
|
|
1841
|
+
dynamic_behavior_sets: list[
|
|
1842
|
+
DynamicBehaviorSetGetDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
|
|
1843
|
+
] = Field(
|
|
1844
|
+
...,
|
|
1845
|
+
description='The retrieved dynamic behavior sets.',
|
|
1846
|
+
title='Dynamic Behavior Sets',
|
|
1847
|
+
)
|
|
1857
1848
|
|
|
1858
1849
|
|
|
1859
1850
|
class DynamicBehaviorSetUpdateDynamicBehaviorSetRequest(BaseModel):
|
|
@@ -11101,6 +11092,37 @@ class SimulationGetSimulationScenariosResponseFilterValues(BaseModel):
|
|
|
11101
11092
|
)
|
|
11102
11093
|
|
|
11103
11094
|
|
|
11095
|
+
class SimulationGetSimulationScenariosResponseSimulationScenarioInstance(BaseModel):
|
|
11096
|
+
id: str = Field(..., description='The ID of the simulation scenario.', title='Id')
|
|
11097
|
+
name: str = Field(
|
|
11098
|
+
..., description='The name of the simulation scenario.', title='Name'
|
|
11099
|
+
)
|
|
11100
|
+
tags: dict[str, str | None] = Field(
|
|
11101
|
+
..., description='The tags of the simulation scenario.', title='Tags'
|
|
11102
|
+
)
|
|
11103
|
+
is_deleted: bool = Field(
|
|
11104
|
+
...,
|
|
11105
|
+
description='Whether the simulation scenario is deleted.',
|
|
11106
|
+
title='Is Deleted',
|
|
11107
|
+
)
|
|
11108
|
+
created_at: AwareDatetime = Field(
|
|
11109
|
+
...,
|
|
11110
|
+
description='The timestamp when the simulation scenario was created.',
|
|
11111
|
+
title='Created At',
|
|
11112
|
+
)
|
|
11113
|
+
creator: MongoCollectionsSimulationScenarioSimulationScenarioUserInfo = Field(
|
|
11114
|
+
..., description='The user who created the simulation scenario.'
|
|
11115
|
+
)
|
|
11116
|
+
updated_at: AwareDatetime = Field(
|
|
11117
|
+
...,
|
|
11118
|
+
description='The timestamp when the simulation scenario was last updated.',
|
|
11119
|
+
title='Updated At',
|
|
11120
|
+
)
|
|
11121
|
+
updated_by: MongoCollectionsSimulationScenarioSimulationScenarioUserInfo = Field(
|
|
11122
|
+
..., description='The user who last updated the simulation scenario.'
|
|
11123
|
+
)
|
|
11124
|
+
|
|
11125
|
+
|
|
11104
11126
|
class SimulationGetSimulationUnitTestSetRunArtifactsResponse(BaseModel):
|
|
11105
11127
|
presigned_url: str = Field(
|
|
11106
11128
|
...,
|
|
@@ -11223,34 +11245,13 @@ class SimulationSearchSimulationPersonasResponseSimulationPersonaInstance(BaseMo
|
|
|
11223
11245
|
)
|
|
11224
11246
|
|
|
11225
11247
|
|
|
11226
|
-
class
|
|
11227
|
-
|
|
11228
|
-
|
|
11229
|
-
|
|
11230
|
-
)
|
|
11231
|
-
tags: dict[str, str | None] = Field(
|
|
11232
|
-
..., description='The tags of the simulation scenario.', title='Tags'
|
|
11233
|
-
)
|
|
11234
|
-
is_deleted: bool = Field(
|
|
11235
|
-
...,
|
|
11236
|
-
description='Whether the simulation scenario is deleted.',
|
|
11237
|
-
title='Is Deleted',
|
|
11238
|
-
)
|
|
11239
|
-
created_at: AwareDatetime = Field(
|
|
11240
|
-
...,
|
|
11241
|
-
description='The timestamp when the simulation scenario was created.',
|
|
11242
|
-
title='Created At',
|
|
11243
|
-
)
|
|
11244
|
-
creator: MongoCollectionsSimulationScenarioSimulationScenarioUserInfo = Field(
|
|
11245
|
-
..., description='The user who created the simulation scenario.'
|
|
11246
|
-
)
|
|
11247
|
-
updated_at: AwareDatetime = Field(
|
|
11248
|
+
class SimulationSearchSimulationScenariosResponse(BaseModel):
|
|
11249
|
+
simulation_scenarios: list[
|
|
11250
|
+
SimulationGetSimulationScenariosResponseSimulationScenarioInstance
|
|
11251
|
+
] = Field(
|
|
11248
11252
|
...,
|
|
11249
|
-
description='The
|
|
11250
|
-
title='
|
|
11251
|
-
)
|
|
11252
|
-
updated_by: MongoCollectionsSimulationScenarioSimulationScenarioUserInfo = Field(
|
|
11253
|
-
..., description='The user who last updated the simulation scenario.'
|
|
11253
|
+
description='The list of simulation scenarios.',
|
|
11254
|
+
title='Simulation Scenarios',
|
|
11254
11255
|
)
|
|
11255
11256
|
|
|
11256
11257
|
|
|
@@ -11538,7 +11539,7 @@ class UserGetMemoriesResponse(BaseModel):
|
|
|
11538
11539
|
)
|
|
11539
11540
|
|
|
11540
11541
|
|
|
11541
|
-
class
|
|
11542
|
+
class UserSearchUsersResponseUserInstanceUserStats(BaseModel):
|
|
11542
11543
|
num_conversations: int = Field(
|
|
11543
11544
|
...,
|
|
11544
11545
|
description='The number of conversations the user has created.',
|
|
@@ -11556,31 +11557,6 @@ class UserGetUsersResponseUserInstanceUserStats(BaseModel):
|
|
|
11556
11557
|
)
|
|
11557
11558
|
|
|
11558
11559
|
|
|
11559
|
-
class UserSearchUsersResponseUserInstance(BaseModel):
|
|
11560
|
-
org_id: str = Field(
|
|
11561
|
-
...,
|
|
11562
|
-
description='The ID of the organization that this user belongs to.',
|
|
11563
|
-
title='Org Id',
|
|
11564
|
-
)
|
|
11565
|
-
user_id: str = Field(
|
|
11566
|
-
..., description='The identifier of the user.', title='User Id'
|
|
11567
|
-
)
|
|
11568
|
-
first_name: str = Field(
|
|
11569
|
-
..., description='The first name of the user.', title='First Name'
|
|
11570
|
-
)
|
|
11571
|
-
last_name: str = Field(
|
|
11572
|
-
..., description='The last name of the user.', title='Last Name'
|
|
11573
|
-
)
|
|
11574
|
-
email: str = Field(..., description='Email of the user.', title='Email')
|
|
11575
|
-
user_stats: UserGetUsersResponseUserInstanceUserStats = Field(
|
|
11576
|
-
..., description="Statistics about the user's usage of the Amigo platform."
|
|
11577
|
-
)
|
|
11578
|
-
role: str = Field(..., description='The ID of the role of the user.', title='Role')
|
|
11579
|
-
preferences: MongoCollectionsUserUserPreferences = Field(
|
|
11580
|
-
..., description='The preferences of the user.'
|
|
11581
|
-
)
|
|
11582
|
-
|
|
11583
|
-
|
|
11584
11560
|
class UserSignInWithApiKeyResponse(BaseModel):
|
|
11585
11561
|
id_token: str = Field(
|
|
11586
11562
|
...,
|
|
@@ -11982,7 +11958,7 @@ class GetConversationMessagesParametersQuery(BaseModel):
|
|
|
11982
11958
|
title='Id',
|
|
11983
11959
|
)
|
|
11984
11960
|
message_type: list[MessageType] | None = Field(
|
|
11985
|
-
['
|
|
11961
|
+
['user-message', 'agent-message', 'external-event'],
|
|
11986
11962
|
description='The type of messages to retrieve.',
|
|
11987
11963
|
title='Message Type',
|
|
11988
11964
|
)
|
|
@@ -13853,7 +13829,7 @@ class ToolVersionInstance(BaseModel):
|
|
|
13853
13829
|
description='The ID of the tool that this version belongs to.',
|
|
13854
13830
|
title='Tool Id',
|
|
13855
13831
|
)
|
|
13856
|
-
version:
|
|
13832
|
+
version: MongoCollectionsToolInvocationToolInvocationVersion = Field(
|
|
13857
13833
|
..., description='The version of the tool.'
|
|
13858
13834
|
)
|
|
13859
13835
|
required_envvars: list[str] = Field(
|
|
@@ -14133,7 +14109,7 @@ class DynamicBehaviorSetCreateDynamicBehaviorSetVersionRequestChangeToolCandidat
|
|
|
14133
14109
|
|
|
14134
14110
|
class DynamicBehaviorSetGetDynamicBehaviorSetsResponse(BaseModel):
|
|
14135
14111
|
dynamic_behavior_sets: list[
|
|
14136
|
-
|
|
14112
|
+
DynamicBehaviorSetGetDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
|
|
14137
14113
|
] = Field(
|
|
14138
14114
|
...,
|
|
14139
14115
|
description='The retrieved dynamic behavior sets.',
|
|
@@ -14157,16 +14133,6 @@ class DynamicBehaviorSetGetDynamicBehaviorSetsResponse(BaseModel):
|
|
|
14157
14133
|
)
|
|
14158
14134
|
|
|
14159
14135
|
|
|
14160
|
-
class DynamicBehaviorSetSearchDynamicBehaviorSetsResponse(BaseModel):
|
|
14161
|
-
dynamic_behavior_sets: list[
|
|
14162
|
-
DynamicBehaviorSetSearchDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
|
|
14163
|
-
] = Field(
|
|
14164
|
-
...,
|
|
14165
|
-
description='The retrieved dynamic behavior sets.',
|
|
14166
|
-
title='Dynamic Behavior Sets',
|
|
14167
|
-
)
|
|
14168
|
-
|
|
14169
|
-
|
|
14170
14136
|
class MetricCreateMetricRequest(BaseModel):
|
|
14171
14137
|
name: str = Field(
|
|
14172
14138
|
...,
|
|
@@ -14446,7 +14412,7 @@ class OrganizationModifyOrganizationRequest(BaseModel):
|
|
|
14446
14412
|
)
|
|
14447
14413
|
|
|
14448
14414
|
|
|
14449
|
-
class
|
|
14415
|
+
class RoleModifyRoleRequestPermissionGrant(BaseModel):
|
|
14450
14416
|
action: Action = Field(
|
|
14451
14417
|
...,
|
|
14452
14418
|
description='Whether this grant allows or denies the specified access.',
|
|
@@ -14461,22 +14427,6 @@ class RoleCreateRoleRequestPermissionGrant(BaseModel):
|
|
|
14461
14427
|
description: PydanticBaseModelStrippedNonemptyString1 | None = None
|
|
14462
14428
|
|
|
14463
14429
|
|
|
14464
|
-
class RoleModifyRoleRequest(BaseModel):
|
|
14465
|
-
description: PydanticBaseModelStrippedNonemptyString1 | None = Field(
|
|
14466
|
-
None,
|
|
14467
|
-
description='A description about the role. Only updated if specified. This field is a mutable field.',
|
|
14468
|
-
)
|
|
14469
|
-
permission_grants: list[RoleCreateRoleRequestPermissionGrant] | None = Field(
|
|
14470
|
-
None,
|
|
14471
|
-
description='A list of permission grants associated with this role. Only updated if specified. This field is an immutable field.',
|
|
14472
|
-
title='Permission Grants',
|
|
14473
|
-
)
|
|
14474
|
-
frontend_view: FrontendView | None = Field(
|
|
14475
|
-
None,
|
|
14476
|
-
description='The frontend view for the user of this role. Only updated if specified. This field is an immutable field.',
|
|
14477
|
-
)
|
|
14478
|
-
|
|
14479
|
-
|
|
14480
14430
|
class ServiceCreateServiceRequestVersionSet(BaseModel):
|
|
14481
14431
|
agent_version_number: int | None = Field(
|
|
14482
14432
|
...,
|
|
@@ -14604,7 +14554,7 @@ class SimulationGetSimulationPersonasResponse(BaseModel):
|
|
|
14604
14554
|
|
|
14605
14555
|
class SimulationGetSimulationScenariosResponse(BaseModel):
|
|
14606
14556
|
simulation_scenarios: list[
|
|
14607
|
-
|
|
14557
|
+
SimulationGetSimulationScenariosResponseSimulationScenarioInstance
|
|
14608
14558
|
] = Field(
|
|
14609
14559
|
...,
|
|
14610
14560
|
description='The list of simulation scenarios.',
|
|
@@ -14658,16 +14608,6 @@ class SimulationSearchSimulationPersonasResponse(BaseModel):
|
|
|
14658
14608
|
)
|
|
14659
14609
|
|
|
14660
14610
|
|
|
14661
|
-
class SimulationSearchSimulationScenariosResponse(BaseModel):
|
|
14662
|
-
simulation_scenarios: list[
|
|
14663
|
-
SimulationSearchSimulationScenariosResponseSimulationScenarioInstance
|
|
14664
|
-
] = Field(
|
|
14665
|
-
...,
|
|
14666
|
-
description='The list of simulation scenarios.',
|
|
14667
|
-
title='Simulation Scenarios',
|
|
14668
|
-
)
|
|
14669
|
-
|
|
14670
|
-
|
|
14671
14611
|
class SimulationSearchSimulationUnitTestSetResponse(BaseModel):
|
|
14672
14612
|
simulation_unit_test_sets: list[SimulationUnitTestSet] = Field(
|
|
14673
14613
|
...,
|
|
@@ -14788,22 +14728,33 @@ class UserGetUserModelResponse(BaseModel):
|
|
|
14788
14728
|
)
|
|
14789
14729
|
|
|
14790
14730
|
|
|
14791
|
-
class
|
|
14792
|
-
|
|
14793
|
-
...,
|
|
14731
|
+
class UserGetUsersResponseUserInstance(BaseModel):
|
|
14732
|
+
org_id: str = Field(
|
|
14733
|
+
...,
|
|
14734
|
+
description='The ID of the organization that this user belongs to.',
|
|
14735
|
+
title='Org Id',
|
|
14794
14736
|
)
|
|
14795
|
-
|
|
14796
|
-
..., description='
|
|
14737
|
+
user_id: str = Field(
|
|
14738
|
+
..., description='The identifier of the user.', title='User Id'
|
|
14797
14739
|
)
|
|
14798
|
-
|
|
14799
|
-
...,
|
|
14800
|
-
|
|
14801
|
-
|
|
14740
|
+
first_name: str = Field(
|
|
14741
|
+
..., description='The first name of the user.', title='First Name'
|
|
14742
|
+
)
|
|
14743
|
+
last_name: str = Field(
|
|
14744
|
+
..., description='The last name of the user.', title='Last Name'
|
|
14745
|
+
)
|
|
14746
|
+
email: str = Field(..., description='Email of the user.', title='Email')
|
|
14747
|
+
user_stats: UserSearchUsersResponseUserInstanceUserStats = Field(
|
|
14748
|
+
..., description="Statistics about the user's usage of the Amigo platform."
|
|
14749
|
+
)
|
|
14750
|
+
role: str = Field(..., description='The ID of the role of the user.', title='Role')
|
|
14751
|
+
preferences: MongoCollectionsUserUserPreferences = Field(
|
|
14752
|
+
..., description='The preferences of the user.'
|
|
14802
14753
|
)
|
|
14803
14754
|
|
|
14804
14755
|
|
|
14805
14756
|
class UserSearchUsersResponse(BaseModel):
|
|
14806
|
-
users: list[
|
|
14757
|
+
users: list[UserGetUsersResponseUserInstance] = Field(
|
|
14807
14758
|
..., description='Users in this organization.', title='Users'
|
|
14808
14759
|
)
|
|
14809
14760
|
|
|
@@ -15467,7 +15418,7 @@ class RoleCreateRoleRequest(BaseModel):
|
|
|
15467
15418
|
description: str = Field(
|
|
15468
15419
|
..., description='A description about the role.', min_length=1
|
|
15469
15420
|
)
|
|
15470
|
-
permission_grants: list[
|
|
15421
|
+
permission_grants: list[RoleModifyRoleRequestPermissionGrant] = Field(
|
|
15471
15422
|
...,
|
|
15472
15423
|
description='A list of permission grants associated with this role.',
|
|
15473
15424
|
title='Permission Grants',
|
|
@@ -15483,6 +15434,22 @@ class RoleGetRolesResponse(BaseModel):
|
|
|
15483
15434
|
)
|
|
15484
15435
|
|
|
15485
15436
|
|
|
15437
|
+
class RoleModifyRoleRequest(BaseModel):
|
|
15438
|
+
description: PydanticBaseModelStrippedNonemptyString1 | None = Field(
|
|
15439
|
+
None,
|
|
15440
|
+
description='A description about the role. Only updated if specified. This field is a mutable field.',
|
|
15441
|
+
)
|
|
15442
|
+
permission_grants: list[RoleModifyRoleRequestPermissionGrant] | None = Field(
|
|
15443
|
+
None,
|
|
15444
|
+
description='A list of permission grants associated with this role. Only updated if specified. This field is an immutable field.',
|
|
15445
|
+
title='Permission Grants',
|
|
15446
|
+
)
|
|
15447
|
+
frontend_view: FrontendView | None = Field(
|
|
15448
|
+
None,
|
|
15449
|
+
description='The frontend view for the user of this role. Only updated if specified. This field is an immutable field.',
|
|
15450
|
+
)
|
|
15451
|
+
|
|
15452
|
+
|
|
15486
15453
|
class ServiceCreateServiceRequest(BaseModel):
|
|
15487
15454
|
service_hierarchical_state_machine_id: str = Field(
|
|
15488
15455
|
...,
|
|
@@ -15647,7 +15614,7 @@ class SimulationUpdateSimulationUnitTestRequest(BaseModel):
|
|
|
15647
15614
|
)
|
|
15648
15615
|
|
|
15649
15616
|
|
|
15650
|
-
class
|
|
15617
|
+
class ToolSearchToolInvocationsResponseToolInvocationInstance(BaseModel):
|
|
15651
15618
|
id: str = Field(..., description='The ID of the tool invocation.', title='Id')
|
|
15652
15619
|
org_id: str = Field(..., description='The ID of the organization.', title='Org Id')
|
|
15653
15620
|
created_at: AwareDatetime | None = Field(None, title='Created At')
|
|
@@ -15669,16 +15636,22 @@ class ToolGetToolInvocationsResponseToolInvocationInstance(BaseModel):
|
|
|
15669
15636
|
tool_id: str = Field(
|
|
15670
15637
|
..., description='The ID of the tool that was invoked.', title='Tool Id'
|
|
15671
15638
|
)
|
|
15672
|
-
tool_version:
|
|
15639
|
+
tool_version: MongoCollectionsToolInvocationToolInvocationVersion = Field(
|
|
15673
15640
|
..., description='The version of the tool that was invoked.'
|
|
15674
15641
|
)
|
|
15675
15642
|
|
|
15676
15643
|
|
|
15677
|
-
class
|
|
15678
|
-
|
|
15679
|
-
|
|
15680
|
-
|
|
15681
|
-
|
|
15644
|
+
class UserGetUsersResponse(BaseModel):
|
|
15645
|
+
users: list[UserGetUsersResponseUserInstance] = Field(
|
|
15646
|
+
..., description='Users in this organization.', title='Users'
|
|
15647
|
+
)
|
|
15648
|
+
has_more: bool = Field(
|
|
15649
|
+
..., description='Whether there are more users to retrieve.', title='Has More'
|
|
15650
|
+
)
|
|
15651
|
+
continuation_token: int | None = Field(
|
|
15652
|
+
...,
|
|
15653
|
+
description='A token to supply to the next request to retrieve the next page of users. Only populated if `has_more` is `True`.',
|
|
15654
|
+
title='Continuation Token',
|
|
15682
15655
|
)
|
|
15683
15656
|
|
|
15684
15657
|
|
|
@@ -15886,7 +15859,7 @@ class SimulationGetSimulationUnitTestSetRunsResponse(BaseModel):
|
|
|
15886
15859
|
|
|
15887
15860
|
|
|
15888
15861
|
class ToolGetToolInvocationsResponse(BaseModel):
|
|
15889
|
-
tool_invocations: list[
|
|
15862
|
+
tool_invocations: list[ToolSearchToolInvocationsResponseToolInvocationInstance] = (
|
|
15890
15863
|
Field(
|
|
15891
15864
|
..., description='The list of tool invocations.', title='Tool Invocations'
|
|
15892
15865
|
)
|
|
@@ -15901,3 +15874,11 @@ class ToolGetToolInvocationsResponse(BaseModel):
|
|
|
15901
15874
|
description='The continuation token to retrieve the next page of tool invocations, or null if there are no more tool invocations.',
|
|
15902
15875
|
title='Continuation Token',
|
|
15903
15876
|
)
|
|
15877
|
+
|
|
15878
|
+
|
|
15879
|
+
class ToolSearchToolInvocationsResponse(BaseModel):
|
|
15880
|
+
tool_invocations: list[ToolSearchToolInvocationsResponseToolInvocationInstance] = (
|
|
15881
|
+
Field(
|
|
15882
|
+
..., description='The list of tool invocations.', title='Tool Invocations'
|
|
15883
|
+
)
|
|
15884
|
+
)
|
|
@@ -2,7 +2,7 @@ scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
2
2
|
scripts/aliases.json,sha256=c1_bkZyvNDQ8iMrKtUuZQqdP87GdLnRPrb3wjX533eQ,322
|
|
3
3
|
scripts/check.py,sha256=ikFavw1IjX51FNjO-kIzXjYdep3on0dKZHYvPElPFtc,2872
|
|
4
4
|
scripts/gen_models.py,sha256=c4J_gHYQIBL3CcKg5z8oUusLvPePytfvLdZ7STHBcNk,3553
|
|
5
|
-
amigo_sdk/__init__.py,sha256=
|
|
5
|
+
amigo_sdk/__init__.py,sha256=NSTXBTjs3uCHrXsjzDlo7D-Q2jFXrrDQDAEIhsDJzcA,140
|
|
6
6
|
amigo_sdk/_retry_utils.py,sha256=VbA_Uwv268J80d11R9XfnCjZiV-NwE1aXRsSlRjjRio,2108
|
|
7
7
|
amigo_sdk/auth.py,sha256=WaM9PcEcnaC6CzNsgRKueHkdSAxNbRylzpR_3Q6guQ0,1765
|
|
8
8
|
amigo_sdk/config.py,sha256=0eZIo-hcJ8ODftKAr-mwB-FGJxGO5PT5T4dRpyWPqAg,1491
|
|
@@ -10,13 +10,13 @@ amigo_sdk/errors.py,sha256=Yn12AxIQ6zE9jnGLWO0MUVbBsmw77Kzh82AijyreOkA,4818
|
|
|
10
10
|
amigo_sdk/http_client.py,sha256=tfMXHqMTmlz2ja7aJhOVgbwAiJNlKCzPcK4UGNqXHO8,13488
|
|
11
11
|
amigo_sdk/models.py,sha256=V-G6iL43_ZNOPDcatCJCSszGWGz-nzp_RSyGNm-rBAc,45
|
|
12
12
|
amigo_sdk/sdk_client.py,sha256=5nj8hzjHSFRs9JMNabdYIhQAcFE2G1jI_r7SHVGr9No,6106
|
|
13
|
-
amigo_sdk/generated/model.py,sha256=
|
|
13
|
+
amigo_sdk/generated/model.py,sha256=QLTBWs3hxDuM2yd4O8jbK1O9DmtTv09n2LreINnzx68,443599
|
|
14
14
|
amigo_sdk/resources/conversation.py,sha256=X47PbPA6NqdkqXgxAPOjlO1E0W7t695tn1tPWSikMOk,14807
|
|
15
15
|
amigo_sdk/resources/organization.py,sha256=yX4UlOHNegRzFW4gCJrCxjiLCAGnGegasjviR1yad_Q,1211
|
|
16
16
|
amigo_sdk/resources/service.py,sha256=t1iA3nS9co-wuR-x5jBhAXXTWfMeGsLwfQcLycwVrCA,1536
|
|
17
17
|
amigo_sdk/resources/user.py,sha256=P14lN-3fmIvELUjn_vpSaYpNsK-xd8zNmUV_KfcZPAU,4138
|
|
18
|
-
amigo_sdk-0.
|
|
19
|
-
amigo_sdk-0.
|
|
20
|
-
amigo_sdk-0.
|
|
21
|
-
amigo_sdk-0.
|
|
22
|
-
amigo_sdk-0.
|
|
18
|
+
amigo_sdk-0.101.0.dist-info/METADATA,sha256=AmXMv0xgaHjP7jWcqtxft3CuE7KGcvpiqMKZ1Iz4FLo,8500
|
|
19
|
+
amigo_sdk-0.101.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
20
|
+
amigo_sdk-0.101.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
|
|
21
|
+
amigo_sdk-0.101.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
|
|
22
|
+
amigo_sdk-0.101.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|