amigo_sdk 0.88.0__py3-none-any.whl → 0.90.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 CHANGED
@@ -1,4 +1,4 @@
1
- __version__ = "0.88.0"
1
+ __version__ = "0.90.0"
2
2
  from .sdk_client import AmigoClient, AsyncAmigoClient
3
3
 
4
4
  __all__ = ["__version__", "AmigoClient", "AsyncAmigoClient"]
@@ -1,6 +1,6 @@
1
1
  # generated by datamodel-codegen:
2
2
  # filename: <stdin>
3
- # timestamp: 2025-12-13T02:45:44+00:00
3
+ # timestamp: 2025-12-13T11:10:09+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
@@ -1635,6 +1635,11 @@ class AmigoLibMongoCollectionsRoleRolePermissionGrantAction(Enum):
1635
1635
  deny = 'Deny'
1636
1636
 
1637
1637
 
1638
+ class AmigoLibMongoCollectionsServiceServiceTag(BaseModel):
1639
+ key: str = Field(..., title='Key')
1640
+ value: Optional[str] = Field(..., title='Value')
1641
+
1642
+
1638
1643
  class AmigoLibMongoCollectionsServiceServiceVersionSet(BaseModel):
1639
1644
  agent_version_number: Optional[int] = Field(
1640
1645
  ...,
@@ -1668,11 +1673,6 @@ AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo = (
1668
1673
  )
1669
1674
 
1670
1675
 
1671
- class AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag(BaseModel):
1672
- key: str = Field(..., title='Key')
1673
- value: Optional[str] = Field(..., title='Value')
1674
-
1675
-
1676
1676
  class AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetUnitTestRunDescriptor(
1677
1677
  BaseModel
1678
1678
  ):
@@ -1709,12 +1709,6 @@ AmigoLibMongoCollectionsSimulationUnitTestSetRunSimulationUnitTestSetRunUserInfo
1709
1709
  )
1710
1710
 
1711
1711
 
1712
- class AmigoLibMongoCollectionsToolInvocationToolInvocationVersion(BaseModel):
1713
- major: int = Field(..., title='Major')
1714
- minor: int = Field(..., title='Minor')
1715
- patch: int = Field(..., title='Patch')
1716
-
1717
-
1718
1712
  class AmigoLibMongoCollectionsToolVersionToolVersionUserInfo(BaseModel):
1719
1713
  user_id: str = Field(..., description='The ID of the user.', title='User Id')
1720
1714
  user_org_id: str = Field(
@@ -1722,6 +1716,12 @@ class AmigoLibMongoCollectionsToolVersionToolVersionUserInfo(BaseModel):
1722
1716
  )
1723
1717
 
1724
1718
 
1719
+ class AmigoLibMongoCollectionsToolVersionToolVersionVersion(BaseModel):
1720
+ major: int = Field(..., title='Major')
1721
+ minor: int = Field(..., title='Minor')
1722
+ patch: int = Field(..., title='Patch')
1723
+
1724
+
1725
1725
  class AmigoLibMongoCollectionsUserUserPreferences(BaseModel):
1726
1726
  enable_response_recommendation: Optional[bool] = Field(
1727
1727
  False,
@@ -1965,6 +1965,20 @@ class DynamicBehaviorSetGetDynamicBehaviorInvocationsResponse(BaseModel):
1965
1965
  )
1966
1966
 
1967
1967
 
1968
+ class DynamicBehaviorSetGetDynamicBehaviorSetsResponseDynamicBehaviorSetInstance(
1969
+ BaseModel
1970
+ ):
1971
+ id: str = Field(..., title='Id')
1972
+ name: str = Field(..., title='Name')
1973
+ is_active: bool = Field(..., title='Is Active')
1974
+ applied_to_services: List[str] = Field(..., title='Applied To Services')
1975
+ tags: Dict[str, Optional[str]] = Field(..., title='Tags')
1976
+ created_at: AwareDatetime = Field(..., title='Created At')
1977
+ creator: AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1978
+ updated_at: AwareDatetime = Field(..., title='Updated At')
1979
+ updated_by: AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1980
+
1981
+
1968
1982
  class DynamicBehaviorSetGetDynamicBehaviorSetsResponseFilterValues(BaseModel):
1969
1983
  applied_to_services_ids: List[str] = Field(
1970
1984
  ...,
@@ -1985,18 +1999,14 @@ class DynamicBehaviorSetGetDynamicBehaviorSetsResponseFilterValues(BaseModel):
1985
1999
  )
1986
2000
 
1987
2001
 
1988
- class DynamicBehaviorSetSearchDynamicBehaviorSetsResponseDynamicBehaviorSetInstance(
1989
- BaseModel
1990
- ):
1991
- id: str = Field(..., title='Id')
1992
- name: str = Field(..., title='Name')
1993
- is_active: bool = Field(..., title='Is Active')
1994
- applied_to_services: List[str] = Field(..., title='Applied To Services')
1995
- tags: Dict[str, Optional[str]] = Field(..., title='Tags')
1996
- created_at: AwareDatetime = Field(..., title='Created At')
1997
- creator: AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1998
- updated_at: AwareDatetime = Field(..., title='Updated At')
1999
- updated_by: AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
2002
+ class DynamicBehaviorSetSearchDynamicBehaviorSetsResponse(BaseModel):
2003
+ dynamic_behavior_sets: List[
2004
+ DynamicBehaviorSetGetDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
2005
+ ] = Field(
2006
+ ...,
2007
+ description='The retrieved dynamic behavior sets.',
2008
+ title='Dynamic Behavior Sets',
2009
+ )
2000
2010
 
2001
2011
 
2002
2012
  class DynamicBehaviorSetUpdateDynamicBehaviorSetRequestAppliedToService(
@@ -11257,37 +11267,6 @@ class SimulationGetSimulationScenariosResponseFilterValues(BaseModel):
11257
11267
  )
11258
11268
 
11259
11269
 
11260
- class SimulationGetSimulationScenariosResponseSimulationScenarioInstance(BaseModel):
11261
- id: str = Field(..., description='The ID of the simulation scenario.', title='Id')
11262
- name: str = Field(
11263
- ..., description='The name of the simulation scenario.', title='Name'
11264
- )
11265
- tags: Dict[str, Optional[str]] = Field(
11266
- ..., description='The tags of the simulation scenario.', title='Tags'
11267
- )
11268
- is_deleted: bool = Field(
11269
- ...,
11270
- description='Whether the simulation scenario is deleted.',
11271
- title='Is Deleted',
11272
- )
11273
- created_at: AwareDatetime = Field(
11274
- ...,
11275
- description='The timestamp when the simulation scenario was created.',
11276
- title='Created At',
11277
- )
11278
- creator: AmigoLibMongoCollectionsSimulationScenarioSimulationScenarioUserInfo = (
11279
- Field(..., description='The user who created the simulation scenario.')
11280
- )
11281
- updated_at: AwareDatetime = Field(
11282
- ...,
11283
- description='The timestamp when the simulation scenario was last updated.',
11284
- title='Updated At',
11285
- )
11286
- updated_by: AmigoLibMongoCollectionsSimulationScenarioSimulationScenarioUserInfo = (
11287
- Field(..., description='The user who last updated the simulation scenario.')
11288
- )
11289
-
11290
-
11291
11270
  class SimulationGetSimulationUnitTestSetRunArtifactsResponse(BaseModel):
11292
11271
  presigned_url: str = Field(
11293
11272
  ...,
@@ -11410,13 +11389,34 @@ class SimulationSearchSimulationPersonasResponseSimulationPersonaInstance(BaseMo
11410
11389
  )
11411
11390
 
11412
11391
 
11413
- class SimulationSearchSimulationScenariosResponse(BaseModel):
11414
- simulation_scenarios: List[
11415
- SimulationGetSimulationScenariosResponseSimulationScenarioInstance
11416
- ] = Field(
11392
+ class SimulationSearchSimulationScenariosResponseSimulationScenarioInstance(BaseModel):
11393
+ id: str = Field(..., description='The ID of the simulation scenario.', title='Id')
11394
+ name: str = Field(
11395
+ ..., description='The name of the simulation scenario.', title='Name'
11396
+ )
11397
+ tags: Dict[str, Optional[str]] = Field(
11398
+ ..., description='The tags of the simulation scenario.', title='Tags'
11399
+ )
11400
+ is_deleted: bool = Field(
11417
11401
  ...,
11418
- description='The list of simulation scenarios.',
11419
- title='Simulation Scenarios',
11402
+ description='Whether the simulation scenario is deleted.',
11403
+ title='Is Deleted',
11404
+ )
11405
+ created_at: AwareDatetime = Field(
11406
+ ...,
11407
+ description='The timestamp when the simulation scenario was created.',
11408
+ title='Created At',
11409
+ )
11410
+ creator: AmigoLibMongoCollectionsSimulationScenarioSimulationScenarioUserInfo = (
11411
+ Field(..., description='The user who created the simulation scenario.')
11412
+ )
11413
+ updated_at: AwareDatetime = Field(
11414
+ ...,
11415
+ description='The timestamp when the simulation scenario was last updated.',
11416
+ title='Updated At',
11417
+ )
11418
+ updated_by: AmigoLibMongoCollectionsSimulationScenarioSimulationScenarioUserInfo = (
11419
+ Field(..., description='The user who last updated the simulation scenario.')
11420
11420
  )
11421
11421
 
11422
11422
 
@@ -11682,7 +11682,7 @@ class UserGetMemoriesResponse(BaseModel):
11682
11682
  )
11683
11683
 
11684
11684
 
11685
- class UserSearchUsersResponseUserInstanceUserStats(BaseModel):
11685
+ class UserGetUsersResponseUserInstanceUserStats(BaseModel):
11686
11686
  num_conversations: int = Field(
11687
11687
  ...,
11688
11688
  description='The number of conversations the user has created.',
@@ -12137,7 +12137,7 @@ class GetConversationMessagesParametersQuery(BaseModel):
12137
12137
  [], description='The IDs of the messages to retrieve.', title='Id'
12138
12138
  )
12139
12139
  message_type: Optional[List[MessageType]] = Field(
12140
- ['user-message', 'agent-message', 'external-event'],
12140
+ ['external-event', 'user-message', 'agent-message'],
12141
12141
  description='The type of messages to retrieve.',
12142
12142
  title='Message Type',
12143
12143
  )
@@ -13943,9 +13943,9 @@ class ServiceInstance(BaseModel):
13943
13943
  agent_id: str = Field(
13944
13944
  ..., description='The ID of the agent that this service uses.', title='Agent Id'
13945
13945
  )
13946
- tags: List[
13947
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
13948
- ] = Field(..., description='The tags of the service.', title='Tags')
13946
+ tags: List[AmigoLibMongoCollectionsServiceServiceTag] = Field(
13947
+ ..., description='The tags of the service.', title='Tags'
13948
+ )
13949
13949
 
13950
13950
 
13951
13951
  class SimulationConversationInvocationSource(BaseModel):
@@ -13996,9 +13996,7 @@ class SimulationUnitTestSet(BaseModel):
13996
13996
  description='Whether the unit test set has been deleted.',
13997
13997
  title='Is Deleted',
13998
13998
  )
13999
- tags: List[
14000
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
14001
- ] = Field(
13999
+ tags: List[AmigoLibMongoCollectionsServiceServiceTag] = Field(
14002
14000
  ..., description='The tags of the simulation unit test set.', title='Tags'
14003
14001
  )
14004
14002
  creator: AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetUserInfo
@@ -14037,9 +14035,7 @@ class SimulationUnitTestSetInstance(BaseModel):
14037
14035
  description='Whether the unit test set has been deleted.',
14038
14036
  title='Is Deleted',
14039
14037
  )
14040
- tags: List[
14041
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
14042
- ] = Field(
14038
+ tags: List[AmigoLibMongoCollectionsServiceServiceTag] = Field(
14043
14039
  ..., description='The tags of the simulation unit test set.', title='Tags'
14044
14040
  )
14045
14041
  creator: AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetUserInfo
@@ -14155,9 +14151,9 @@ class ToolInstance(BaseModel):
14155
14151
  description='A list of encrypted environment variables that some versions of this tool uses.',
14156
14152
  title='Secret Envvars',
14157
14153
  )
14158
- tags: List[
14159
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
14160
- ] = Field(..., description='The tags of the simulation persona.', title='Tags')
14154
+ tags: List[AmigoLibMongoCollectionsServiceServiceTag] = Field(
14155
+ ..., description='The tags of the simulation persona.', title='Tags'
14156
+ )
14161
14157
 
14162
14158
 
14163
14159
  class ToolVersionInstance(BaseModel):
@@ -14170,7 +14166,7 @@ class ToolVersionInstance(BaseModel):
14170
14166
  description='The ID of the tool that this version belongs to.',
14171
14167
  title='Tool Id',
14172
14168
  )
14173
- version: AmigoLibMongoCollectionsToolInvocationToolInvocationVersion = Field(
14169
+ version: AmigoLibMongoCollectionsToolVersionToolVersionVersion = Field(
14174
14170
  ..., description='The version of the tool.'
14175
14171
  )
14176
14172
  required_envvars: List[str] = Field(
@@ -14486,7 +14482,7 @@ class DynamicBehaviorSetGetDynamicBehaviorSetVersionsResponse(BaseModel):
14486
14482
 
14487
14483
  class DynamicBehaviorSetGetDynamicBehaviorSetsResponse(BaseModel):
14488
14484
  dynamic_behavior_sets: List[
14489
- DynamicBehaviorSetSearchDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
14485
+ DynamicBehaviorSetGetDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
14490
14486
  ] = Field(
14491
14487
  ...,
14492
14488
  description='The retrieved dynamic behavior sets.',
@@ -14510,16 +14506,6 @@ class DynamicBehaviorSetGetDynamicBehaviorSetsResponse(BaseModel):
14510
14506
  )
14511
14507
 
14512
14508
 
14513
- class DynamicBehaviorSetSearchDynamicBehaviorSetsResponse(BaseModel):
14514
- dynamic_behavior_sets: List[
14515
- DynamicBehaviorSetSearchDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
14516
- ] = Field(
14517
- ...,
14518
- description='The retrieved dynamic behavior sets.',
14519
- title='Dynamic Behavior Sets',
14520
- )
14521
-
14522
-
14523
14509
  class MetricCreateMetricRequest(BaseModel):
14524
14510
  name: str = Field(
14525
14511
  ...,
@@ -14947,7 +14933,7 @@ class SimulationGetSimulationPersonasResponse(BaseModel):
14947
14933
 
14948
14934
  class SimulationGetSimulationScenariosResponse(BaseModel):
14949
14935
  simulation_scenarios: List[
14950
- SimulationGetSimulationScenariosResponseSimulationScenarioInstance
14936
+ SimulationSearchSimulationScenariosResponseSimulationScenarioInstance
14951
14937
  ] = Field(
14952
14938
  ...,
14953
14939
  description='The list of simulation scenarios.',
@@ -15003,6 +14989,16 @@ class SimulationSearchSimulationPersonasResponse(BaseModel):
15003
14989
  )
15004
14990
 
15005
14991
 
14992
+ class SimulationSearchSimulationScenariosResponse(BaseModel):
14993
+ simulation_scenarios: List[
14994
+ SimulationSearchSimulationScenariosResponseSimulationScenarioInstance
14995
+ ] = Field(
14996
+ ...,
14997
+ description='The list of simulation scenarios.',
14998
+ title='Simulation Scenarios',
14999
+ )
15000
+
15001
+
15006
15002
  class SimulationSearchSimulationUnitTestSetResponse(BaseModel):
15007
15003
  simulation_unit_test_sets: List[SimulationUnitTestSet] = Field(
15008
15004
  ...,
@@ -15154,7 +15150,7 @@ class UserGetUserModelResponse(BaseModel):
15154
15150
  )
15155
15151
 
15156
15152
 
15157
- class UserSearchUsersResponseUserInstance(BaseModel):
15153
+ class UserGetUsersResponseUserInstance(BaseModel):
15158
15154
  org_id: str = Field(
15159
15155
  ...,
15160
15156
  description='The ID of the organization that this user belongs to.',
@@ -15170,7 +15166,7 @@ class UserSearchUsersResponseUserInstance(BaseModel):
15170
15166
  ..., description='The last name of the user.', title='Last Name'
15171
15167
  )
15172
15168
  email: str = Field(..., description='Email of the user.', title='Email')
15173
- user_stats: UserSearchUsersResponseUserInstanceUserStats = Field(
15169
+ user_stats: UserGetUsersResponseUserInstanceUserStats = Field(
15174
15170
  ..., description="Statistics about the user's usage of the Amigo platform."
15175
15171
  )
15176
15172
  role: str = Field(..., description='The ID of the role of the user.', title='Role')
@@ -15179,6 +15175,12 @@ class UserSearchUsersResponseUserInstance(BaseModel):
15179
15175
  )
15180
15176
 
15181
15177
 
15178
+ class UserSearchUsersResponse(BaseModel):
15179
+ users: List[UserGetUsersResponseUserInstance] = Field(
15180
+ ..., description='Users in this organization.', title='Users'
15181
+ )
15182
+
15183
+
15182
15184
  class WebhookDestinationGetWebhookDeliveriesResponse(BaseModel):
15183
15185
  webhook_deliveries: List[WebhookDeliveryInstance] = Field(
15184
15186
  ..., description='The retrieved webhook deliveries.', title='Webhook Deliveries'
@@ -15420,9 +15422,9 @@ class Metric(BaseModel):
15420
15422
  additional_notes: Optional[str] = Field(
15421
15423
  ..., description='Additional notes about the metric.', title='Additional Notes'
15422
15424
  )
15423
- tags: List[
15424
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
15425
- ] = Field(..., description='The tags of the metric.', title='Tags')
15425
+ tags: List[AmigoLibMongoCollectionsServiceServiceTag] = Field(
15426
+ ..., description='The tags of the metric.', title='Tags'
15427
+ )
15426
15428
  creator: AmigoLibMongoCollectionsMetricMetricUserInfo = Field(
15427
15429
  ..., description='The user who created the metric.'
15428
15430
  )
@@ -15490,9 +15492,9 @@ class MetricInstance(BaseModel):
15490
15492
  additional_notes: Optional[str] = Field(
15491
15493
  ..., description='Additional notes about the metric.', title='Additional Notes'
15492
15494
  )
15493
- tags: List[
15494
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
15495
- ] = Field(..., description='The tags of the metric.', title='Tags')
15495
+ tags: List[AmigoLibMongoCollectionsServiceServiceTag] = Field(
15496
+ ..., description='The tags of the metric.', title='Tags'
15497
+ )
15496
15498
  creator: AmigoLibMongoCollectionsMetricMetricUserInfo = Field(
15497
15499
  ..., description='The user who created the metric.'
15498
15500
  )
@@ -15692,9 +15694,9 @@ class SimulationUnitTest(BaseModel):
15692
15694
  is_deleted: bool = Field(
15693
15695
  ..., description='Whether the unit test has been deleted.', title='Is Deleted'
15694
15696
  )
15695
- tags: List[
15696
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
15697
- ] = Field(..., description='The tags of the simulation persona.', title='Tags')
15697
+ tags: List[AmigoLibMongoCollectionsServiceServiceTag] = Field(
15698
+ ..., description='The tags of the simulation persona.', title='Tags'
15699
+ )
15698
15700
  creator: AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
15699
15701
  updated_by: AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
15700
15702
 
@@ -15737,9 +15739,9 @@ class SimulationUnitTestInstance(BaseModel):
15737
15739
  is_deleted: bool = Field(
15738
15740
  ..., description='Whether the unit test has been deleted.', title='Is Deleted'
15739
15741
  )
15740
- tags: List[
15741
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
15742
- ] = Field(..., description='The tags of the simulation persona.', title='Tags')
15742
+ tags: List[AmigoLibMongoCollectionsServiceServiceTag] = Field(
15743
+ ..., description='The tags of the simulation persona.', title='Tags'
15744
+ )
15743
15745
  creator: AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
15744
15746
  updated_by: AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
15745
15747
 
@@ -16233,7 +16235,7 @@ class SimulationUpdateSimulationUnitTestRequest(BaseModel):
16233
16235
  )
16234
16236
 
16235
16237
 
16236
- class ToolSearchToolInvocationsResponseToolInvocationInstance(BaseModel):
16238
+ class ToolGetToolInvocationsResponseToolInvocationInstance(BaseModel):
16237
16239
  id: str = Field(..., description='The ID of the tool invocation.', title='Id')
16238
16240
  org_id: str = Field(..., description='The ID of the organization.', title='Org Id')
16239
16241
  created_at: Optional[AwareDatetime] = Field(None, title='Created At')
@@ -16255,13 +16257,21 @@ class ToolSearchToolInvocationsResponseToolInvocationInstance(BaseModel):
16255
16257
  tool_id: str = Field(
16256
16258
  ..., description='The ID of the tool that was invoked.', title='Tool Id'
16257
16259
  )
16258
- tool_version: AmigoLibMongoCollectionsToolInvocationToolInvocationVersion = Field(
16260
+ tool_version: AmigoLibMongoCollectionsToolVersionToolVersionVersion = Field(
16259
16261
  ..., description='The version of the tool that was invoked.'
16260
16262
  )
16261
16263
 
16262
16264
 
16265
+ class ToolSearchToolInvocationsResponse(BaseModel):
16266
+ tool_invocations: List[ToolGetToolInvocationsResponseToolInvocationInstance] = (
16267
+ Field(
16268
+ ..., description='The list of tool invocations.', title='Tool Invocations'
16269
+ )
16270
+ )
16271
+
16272
+
16263
16273
  class UserGetUsersResponse(BaseModel):
16264
- users: List[UserSearchUsersResponseUserInstance] = Field(
16274
+ users: List[UserGetUsersResponseUserInstance] = Field(
16265
16275
  ..., description='Users in this organization.', title='Users'
16266
16276
  )
16267
16277
  has_more: bool = Field(
@@ -16274,12 +16284,6 @@ class UserGetUsersResponse(BaseModel):
16274
16284
  )
16275
16285
 
16276
16286
 
16277
- class UserSearchUsersResponse(BaseModel):
16278
- users: List[UserSearchUsersResponseUserInstance] = Field(
16279
- ..., description='Users in this organization.', title='Users'
16280
- )
16281
-
16282
-
16283
16287
  class SimulationUnitTestSetRunInstance(BaseModel):
16284
16288
  org_id: str = Field(..., title='Org Id')
16285
16289
  id: str = Field(..., title='Id')
@@ -16379,7 +16383,7 @@ class SimulationGetSimulationUnitTestSetRunsResponse(BaseModel):
16379
16383
 
16380
16384
 
16381
16385
  class ToolGetToolInvocationsResponse(BaseModel):
16382
- tool_invocations: List[ToolSearchToolInvocationsResponseToolInvocationInstance] = (
16386
+ tool_invocations: List[ToolGetToolInvocationsResponseToolInvocationInstance] = (
16383
16387
  Field(
16384
16388
  ..., description='The list of tool invocations.', title='Tool Invocations'
16385
16389
  )
@@ -16394,11 +16398,3 @@ class ToolGetToolInvocationsResponse(BaseModel):
16394
16398
  description='The continuation token to retrieve the next page of tool invocations, or null if there are no more tool invocations.',
16395
16399
  title='Continuation Token',
16396
16400
  )
16397
-
16398
-
16399
- class ToolSearchToolInvocationsResponse(BaseModel):
16400
- tool_invocations: List[ToolSearchToolInvocationsResponseToolInvocationInstance] = (
16401
- Field(
16402
- ..., description='The list of tool invocations.', title='Tool Invocations'
16403
- )
16404
- )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amigo_sdk
3
- Version: 0.88.0
3
+ Version: 0.90.0
4
4
  Summary: Amigo AI Python SDK
5
5
  Author: Amigo AI
6
6
  License-File: LICENSE
@@ -1,4 +1,4 @@
1
- amigo_sdk/__init__.py,sha256=FKbIt8-kJa6zNHoEaDBdEDeXQhCtCg_q6LDaMKsME2A,139
1
+ amigo_sdk/__init__.py,sha256=Mxe_TpbSCMUnWJ10nBK8qAyp4UYKGdxV7vy9wfe0L-g,139
2
2
  amigo_sdk/_retry_utils.py,sha256=VbA_Uwv268J80d11R9XfnCjZiV-NwE1aXRsSlRjjRio,2108
3
3
  amigo_sdk/auth.py,sha256=WaM9PcEcnaC6CzNsgRKueHkdSAxNbRylzpR_3Q6guQ0,1765
4
4
  amigo_sdk/config.py,sha256=0eZIo-hcJ8ODftKAr-mwB-FGJxGO5PT5T4dRpyWPqAg,1491
@@ -6,13 +6,13 @@ amigo_sdk/errors.py,sha256=Yn12AxIQ6zE9jnGLWO0MUVbBsmw77Kzh82AijyreOkA,4818
6
6
  amigo_sdk/http_client.py,sha256=tfMXHqMTmlz2ja7aJhOVgbwAiJNlKCzPcK4UGNqXHO8,13488
7
7
  amigo_sdk/models.py,sha256=V-G6iL43_ZNOPDcatCJCSszGWGz-nzp_RSyGNm-rBAc,45
8
8
  amigo_sdk/sdk_client.py,sha256=5nj8hzjHSFRs9JMNabdYIhQAcFE2G1jI_r7SHVGr9No,6106
9
- amigo_sdk/generated/model.py,sha256=Yu1EgbOhCb5OZkhrvcg-yVhCxQYV1IeX5R6-4BM7Ftc,459766
9
+ amigo_sdk/generated/model.py,sha256=dDPj9a9EKB686jU0GAkgIZ2S6ck7gF62__tSuetlqbE,459444
10
10
  amigo_sdk/resources/conversation.py,sha256=u4kOx5LPbhX92L41UnmPmaF9TkQA5bGev8N00dMoP9I,14805
11
11
  amigo_sdk/resources/organization.py,sha256=yX4UlOHNegRzFW4gCJrCxjiLCAGnGegasjviR1yad_Q,1211
12
12
  amigo_sdk/resources/service.py,sha256=t1iA3nS9co-wuR-x5jBhAXXTWfMeGsLwfQcLycwVrCA,1536
13
13
  amigo_sdk/resources/user.py,sha256=zikijiuGXgmkBVtrldor6XQGQK6jWXonDvNFuQs6XK4,3472
14
- amigo_sdk-0.88.0.dist-info/METADATA,sha256=5sYuYXPAgHl1hMJcDGrhEXd5_iBdvNFr5I-0GI_YPQo,8499
15
- amigo_sdk-0.88.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
16
- amigo_sdk-0.88.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
17
- amigo_sdk-0.88.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
18
- amigo_sdk-0.88.0.dist-info/RECORD,,
14
+ amigo_sdk-0.90.0.dist-info/METADATA,sha256=3uCo-lU99nVRntaSm9B4-oJmYD0c8m0phNMMpfLpBdI,8499
15
+ amigo_sdk-0.90.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
16
+ amigo_sdk-0.90.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
17
+ amigo_sdk-0.90.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
18
+ amigo_sdk-0.90.0.dist-info/RECORD,,