amigo_sdk 0.68.0__py3-none-any.whl → 0.69.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.68.0"
1
+ __version__ = "0.69.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-03T10:03:06+00:00
3
+ # timestamp: 2025-12-03T11:17:35+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
@@ -1630,6 +1630,11 @@ class AmigoLibMongoCollectionsRoleRolePermissionGrantAction(Enum):
1630
1630
  deny = 'Deny'
1631
1631
 
1632
1632
 
1633
+ class AmigoLibMongoCollectionsServiceServiceTag(BaseModel):
1634
+ key: str = Field(..., title='Key')
1635
+ value: Optional[str] = Field(..., title='Value')
1636
+
1637
+
1633
1638
  class AmigoLibMongoCollectionsServiceServiceVersionSet(BaseModel):
1634
1639
  agent_version_number: Optional[int] = Field(
1635
1640
  ...,
@@ -1658,11 +1663,6 @@ AmigoLibMongoCollectionsSimulationScenarioSimulationScenarioUserInfo = (
1658
1663
  )
1659
1664
 
1660
1665
 
1661
- class AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestTag(BaseModel):
1662
- key: str = Field(..., title='Key')
1663
- value: Optional[str] = Field(..., title='Value')
1664
-
1665
-
1666
1666
  AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo = (
1667
1667
  AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1668
1668
  )
@@ -1955,6 +1955,20 @@ class DynamicBehaviorSetGetDynamicBehaviorInvocationsResponse(BaseModel):
1955
1955
  )
1956
1956
 
1957
1957
 
1958
+ class DynamicBehaviorSetGetDynamicBehaviorSetsResponseDynamicBehaviorSetInstance(
1959
+ BaseModel
1960
+ ):
1961
+ id: str = Field(..., title='Id')
1962
+ name: str = Field(..., title='Name')
1963
+ is_active: bool = Field(..., title='Is Active')
1964
+ applied_to_services: List[str] = Field(..., title='Applied To Services')
1965
+ tags: Dict[str, Optional[str]] = Field(..., title='Tags')
1966
+ created_at: AwareDatetime = Field(..., title='Created At')
1967
+ creator: AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1968
+ updated_at: AwareDatetime = Field(..., title='Updated At')
1969
+ updated_by: AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1970
+
1971
+
1958
1972
  class DynamicBehaviorSetGetDynamicBehaviorSetsResponseFilterValues(BaseModel):
1959
1973
  applied_to_services_ids: List[str] = Field(
1960
1974
  ...,
@@ -1975,18 +1989,14 @@ class DynamicBehaviorSetGetDynamicBehaviorSetsResponseFilterValues(BaseModel):
1975
1989
  )
1976
1990
 
1977
1991
 
1978
- class DynamicBehaviorSetSearchDynamicBehaviorSetsResponseDynamicBehaviorSetInstance(
1979
- BaseModel
1980
- ):
1981
- id: str = Field(..., title='Id')
1982
- name: str = Field(..., title='Name')
1983
- is_active: bool = Field(..., title='Is Active')
1984
- applied_to_services: List[str] = Field(..., title='Applied To Services')
1985
- tags: Dict[str, Optional[str]] = Field(..., title='Tags')
1986
- created_at: AwareDatetime = Field(..., title='Created At')
1987
- creator: AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1988
- updated_at: AwareDatetime = Field(..., title='Updated At')
1989
- updated_by: AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1992
+ class DynamicBehaviorSetSearchDynamicBehaviorSetsResponse(BaseModel):
1993
+ dynamic_behavior_sets: List[
1994
+ DynamicBehaviorSetGetDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
1995
+ ] = Field(
1996
+ ...,
1997
+ description='The retrieved dynamic behavior sets.',
1998
+ title='Dynamic Behavior Sets',
1999
+ )
1990
2000
 
1991
2001
 
1992
2002
  class DynamicBehaviorSetUpdateDynamicBehaviorSetRequestAppliedToService(
@@ -10772,19 +10782,19 @@ class OrganizationCreateServiceHierarchicalStateMachineResponse(BaseModel):
10772
10782
  )
10773
10783
 
10774
10784
 
10775
- class OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitConditionNextState(
10785
+ class OrganizationCreateServiceHierarchicalStateMachineVersionRequestDecisionStateExitConditionNextState(
10776
10786
  AnnotationStateInputNextState
10777
10787
  ):
10778
10788
  pass
10779
10789
 
10780
10790
 
10781
- class OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitCondition(
10791
+ class OrganizationCreateServiceHierarchicalStateMachineVersionRequestDecisionStateExitCondition(
10782
10792
  BaseModel
10783
10793
  ):
10784
10794
  description: str = Field(..., min_length=1)
10785
10795
  next_state: Union[
10786
10796
  StateOrRefName,
10787
- OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitConditionNextState,
10797
+ OrganizationCreateServiceHierarchicalStateMachineVersionRequestDecisionStateExitConditionNextState,
10788
10798
  ] = Field(..., title='Next State')
10789
10799
 
10790
10800
 
@@ -10952,6 +10962,13 @@ class RoleModifyRoleResponse(BaseModel):
10952
10962
  )
10953
10963
 
10954
10964
 
10965
+ class ServiceCreateServiceRequestVersionSetLLMConfig(BaseModel):
10966
+ llm_name: LLMType
10967
+ params: Optional[Dict[str, Any]] = Field(
10968
+ {}, description='LLM-specific parameters to use.', title='Params'
10969
+ )
10970
+
10971
+
10955
10972
  class ServiceCreateServiceResponse(BaseModel):
10956
10973
  id: str = Field(..., description='The ID of the newly created service.', title='Id')
10957
10974
 
@@ -11011,13 +11028,6 @@ class ServiceUpdateServiceRequest(BaseModel):
11011
11028
  )
11012
11029
 
11013
11030
 
11014
- class ServiceUpsertServiceVersionSetRequestVersionSetLLMConfig(BaseModel):
11015
- llm_name: LLMType
11016
- params: Optional[Dict[str, Any]] = Field(
11017
- {}, description='LLM-specific parameters to use.', title='Params'
11018
- )
11019
-
11020
-
11021
11031
  class SimulationCreateSimulationPersonaRequestInitialVersion(BaseModel):
11022
11032
  background: str = Field(
11023
11033
  ..., description='The background of the simulation persona.', min_length=1
@@ -11205,6 +11215,40 @@ class SimulationGetSimulationPersonasResponseFilterValues(BaseModel):
11205
11215
  )
11206
11216
 
11207
11217
 
11218
+ class SimulationGetSimulationPersonasResponseSimulationPersonaInstance(BaseModel):
11219
+ id: str = Field(..., description='The ID of the simulation persona.', title='Id')
11220
+ name: str = Field(
11221
+ ..., description='The name of the simulation persona.', title='Name'
11222
+ )
11223
+ role: str = Field(
11224
+ ..., description='The role of the simulation persona.', title='Role'
11225
+ )
11226
+ tags: Dict[str, Optional[str]] = Field(
11227
+ ..., description='The tags of the simulation persona.', title='Tags'
11228
+ )
11229
+ is_deleted: bool = Field(
11230
+ ...,
11231
+ description='Whether the simulation persona is deleted.',
11232
+ title='Is Deleted',
11233
+ )
11234
+ created_at: AwareDatetime = Field(
11235
+ ...,
11236
+ description='The timestamp when the simulation persona was created.',
11237
+ title='Created At',
11238
+ )
11239
+ creator: AmigoLibMongoCollectionsSimulationPersonaSimulationPersonaUserInfo = Field(
11240
+ ..., description='The user who created the simulation persona.'
11241
+ )
11242
+ updated_at: AwareDatetime = Field(
11243
+ ...,
11244
+ description='The timestamp when the simulation persona was last updated.',
11245
+ title='Updated At',
11246
+ )
11247
+ updated_by: AmigoLibMongoCollectionsSimulationPersonaSimulationPersonaUserInfo = (
11248
+ Field(..., description='The user who last updated the simulation persona.')
11249
+ )
11250
+
11251
+
11208
11252
  class SimulationGetSimulationScenarioVersionsResponse(BaseModel):
11209
11253
  simulation_scenario_versions: List[SimulationScenarioVersion] = Field(
11210
11254
  ...,
@@ -11355,37 +11399,11 @@ class SimulationGetSimulationUnitTestsResponseFilterValues(BaseModel):
11355
11399
  )
11356
11400
 
11357
11401
 
11358
- class SimulationSearchSimulationPersonasResponseSimulationPersonaInstance(BaseModel):
11359
- id: str = Field(..., description='The ID of the simulation persona.', title='Id')
11360
- name: str = Field(
11361
- ..., description='The name of the simulation persona.', title='Name'
11362
- )
11363
- role: str = Field(
11364
- ..., description='The role of the simulation persona.', title='Role'
11365
- )
11366
- tags: Dict[str, Optional[str]] = Field(
11367
- ..., description='The tags of the simulation persona.', title='Tags'
11368
- )
11369
- is_deleted: bool = Field(
11370
- ...,
11371
- description='Whether the simulation persona is deleted.',
11372
- title='Is Deleted',
11373
- )
11374
- created_at: AwareDatetime = Field(
11375
- ...,
11376
- description='The timestamp when the simulation persona was created.',
11377
- title='Created At',
11378
- )
11379
- creator: AmigoLibMongoCollectionsSimulationPersonaSimulationPersonaUserInfo = Field(
11380
- ..., description='The user who created the simulation persona.'
11381
- )
11382
- updated_at: AwareDatetime = Field(
11383
- ...,
11384
- description='The timestamp when the simulation persona was last updated.',
11385
- title='Updated At',
11386
- )
11387
- updated_by: AmigoLibMongoCollectionsSimulationPersonaSimulationPersonaUserInfo = (
11388
- Field(..., description='The user who last updated the simulation persona.')
11402
+ class SimulationSearchSimulationPersonasResponse(BaseModel):
11403
+ simulation_personas: List[
11404
+ SimulationGetSimulationPersonasResponseSimulationPersonaInstance
11405
+ ] = Field(
11406
+ ..., description='The list of simulation personas.', title='Simulation Personas'
11389
11407
  )
11390
11408
 
11391
11409
 
@@ -11669,6 +11687,31 @@ class UserGetUsersResponseUserInstanceUserStats(BaseModel):
11669
11687
  )
11670
11688
 
11671
11689
 
11690
+ class UserSearchUsersResponseUserInstance(BaseModel):
11691
+ org_id: str = Field(
11692
+ ...,
11693
+ description='The ID of the organization that this user belongs to.',
11694
+ title='Org Id',
11695
+ )
11696
+ user_id: str = Field(
11697
+ ..., description='The identifier of the user.', title='User Id'
11698
+ )
11699
+ first_name: str = Field(
11700
+ ..., description='The first name of the user.', title='First Name'
11701
+ )
11702
+ last_name: str = Field(
11703
+ ..., description='The last name of the user.', title='Last Name'
11704
+ )
11705
+ email: str = Field(..., description='Email of the user.', title='Email')
11706
+ user_stats: UserGetUsersResponseUserInstanceUserStats = Field(
11707
+ ..., description="Statistics about the user's usage of the Amigo platform."
11708
+ )
11709
+ role: str = Field(..., description='The ID of the role of the user.', title='Role')
11710
+ preferences: AmigoLibMongoCollectionsUserUserPreferences = Field(
11711
+ ..., description='The preferences of the user.'
11712
+ )
11713
+
11714
+
11672
11715
  class UserSignInWithApiKeyResponse(BaseModel):
11673
11716
  id_token: str = Field(
11674
11717
  ...,
@@ -12090,7 +12133,7 @@ class GetConversationMessagesParametersQuery(BaseModel):
12090
12133
  [], description='The IDs of the messages to retrieve.', title='Id'
12091
12134
  )
12092
12135
  message_type: Optional[List[MessageType]] = Field(
12093
- ['user-message', 'external-event', 'agent-message'],
12136
+ ['external-event', 'agent-message', 'user-message'],
12094
12137
  description='The type of messages to retrieve.',
12095
12138
  title='Message Type',
12096
12139
  )
@@ -13896,7 +13939,7 @@ class ServiceInstance(BaseModel):
13896
13939
  agent_id: str = Field(
13897
13940
  ..., description='The ID of the agent that this service uses.', title='Agent Id'
13898
13941
  )
13899
- tags: List[AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestTag] = Field(
13942
+ tags: List[AmigoLibMongoCollectionsServiceServiceTag] = Field(
13900
13943
  ..., description='The tags of the service.', title='Tags'
13901
13944
  )
13902
13945
 
@@ -13949,7 +13992,7 @@ class SimulationUnitTestSet(BaseModel):
13949
13992
  description='Whether the unit test set has been deleted.',
13950
13993
  title='Is Deleted',
13951
13994
  )
13952
- tags: List[AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestTag] = Field(
13995
+ tags: List[AmigoLibMongoCollectionsServiceServiceTag] = Field(
13953
13996
  ..., description='The tags of the simulation unit test set.', title='Tags'
13954
13997
  )
13955
13998
  creator: AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetUserInfo
@@ -13988,7 +14031,7 @@ class SimulationUnitTestSetInstance(BaseModel):
13988
14031
  description='Whether the unit test set has been deleted.',
13989
14032
  title='Is Deleted',
13990
14033
  )
13991
- tags: List[AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestTag] = Field(
14034
+ tags: List[AmigoLibMongoCollectionsServiceServiceTag] = Field(
13992
14035
  ..., description='The tags of the simulation unit test set.', title='Tags'
13993
14036
  )
13994
14037
  creator: AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetUserInfo
@@ -14104,7 +14147,7 @@ class ToolInstance(BaseModel):
14104
14147
  description='A list of encrypted environment variables that some versions of this tool uses.',
14105
14148
  title='Secret Envvars',
14106
14149
  )
14107
- tags: List[AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestTag] = Field(
14150
+ tags: List[AmigoLibMongoCollectionsServiceServiceTag] = Field(
14108
14151
  ..., description='The tags of the simulation persona.', title='Tags'
14109
14152
  )
14110
14153
 
@@ -14435,7 +14478,7 @@ class DynamicBehaviorSetGetDynamicBehaviorSetVersionsResponse(BaseModel):
14435
14478
 
14436
14479
  class DynamicBehaviorSetGetDynamicBehaviorSetsResponse(BaseModel):
14437
14480
  dynamic_behavior_sets: List[
14438
- DynamicBehaviorSetSearchDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
14481
+ DynamicBehaviorSetGetDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
14439
14482
  ] = Field(
14440
14483
  ...,
14441
14484
  description='The retrieved dynamic behavior sets.',
@@ -14459,16 +14502,6 @@ class DynamicBehaviorSetGetDynamicBehaviorSetsResponse(BaseModel):
14459
14502
  )
14460
14503
 
14461
14504
 
14462
- class DynamicBehaviorSetSearchDynamicBehaviorSetsResponse(BaseModel):
14463
- dynamic_behavior_sets: List[
14464
- DynamicBehaviorSetSearchDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
14465
- ] = Field(
14466
- ...,
14467
- description='The retrieved dynamic behavior sets.',
14468
- title='Dynamic Behavior Sets',
14469
- )
14470
-
14471
-
14472
14505
  class MetricCreateMetricRequest(BaseModel):
14473
14506
  name: str = Field(
14474
14507
  ...,
@@ -14766,6 +14799,22 @@ class RoleModifyRoleRequest(BaseModel):
14766
14799
  )
14767
14800
 
14768
14801
 
14802
+ class ServiceCreateServiceRequestVersionSet(BaseModel):
14803
+ agent_version_number: Optional[int] = Field(
14804
+ ...,
14805
+ description='The version number of the agent to be used. If None, the latest agent version will be used.',
14806
+ title='Agent Version Number',
14807
+ )
14808
+ service_hierarchical_state_machine_version_number: Optional[int] = Field(
14809
+ ...,
14810
+ description='The version number of the state machine to be used. If None, the latest state machine version will be used.',
14811
+ title='Service Hierarchical State Machine Version Number',
14812
+ )
14813
+ llm_model_preferences: Dict[str, ServiceCreateServiceRequestVersionSetLLMConfig] = (
14814
+ Field(..., title='Llm Model Preferences')
14815
+ )
14816
+
14817
+
14769
14818
  class ServiceGetServicesResponse(BaseModel):
14770
14819
  services: List[ServiceInstance] = Field(
14771
14820
  ..., description='The services that are found.', title='Services'
@@ -14786,20 +14835,10 @@ class ServiceGetServicesResponse(BaseModel):
14786
14835
  )
14787
14836
 
14788
14837
 
14789
- class ServiceUpsertServiceVersionSetRequestVersionSet(BaseModel):
14790
- agent_version_number: Optional[int] = Field(
14791
- ...,
14792
- description='The version number of the agent to be used. If None, the latest agent version will be used.',
14793
- title='Agent Version Number',
14794
- )
14795
- service_hierarchical_state_machine_version_number: Optional[int] = Field(
14796
- ...,
14797
- description='The version number of the state machine to be used. If None, the latest state machine version will be used.',
14798
- title='Service Hierarchical State Machine Version Number',
14838
+ class ServiceUpsertServiceVersionSetRequest(BaseModel):
14839
+ version_set: ServiceCreateServiceRequestVersionSet = Field(
14840
+ ..., description='The version set to upsert.'
14799
14841
  )
14800
- llm_model_preferences: Dict[
14801
- str, ServiceUpsertServiceVersionSetRequestVersionSetLLMConfig
14802
- ] = Field(..., title='Llm Model Preferences')
14803
14842
 
14804
14843
 
14805
14844
  class SimulationCreateSimulationPersonaRequest(BaseModel):
@@ -14865,7 +14904,7 @@ class SimulationCreateSimulationUnitTestSetRequest(BaseModel):
14865
14904
 
14866
14905
  class SimulationGetSimulationPersonasResponse(BaseModel):
14867
14906
  simulation_personas: List[
14868
- SimulationSearchSimulationPersonasResponseSimulationPersonaInstance
14907
+ SimulationGetSimulationPersonasResponseSimulationPersonaInstance
14869
14908
  ] = Field(
14870
14909
  ..., description='The list of simulation personas.', title='Simulation Personas'
14871
14910
  )
@@ -14937,14 +14976,6 @@ class SimulationGetSimulationUnitTestSetsResponse(BaseModel):
14937
14976
  )
14938
14977
 
14939
14978
 
14940
- class SimulationSearchSimulationPersonasResponse(BaseModel):
14941
- simulation_personas: List[
14942
- SimulationSearchSimulationPersonasResponseSimulationPersonaInstance
14943
- ] = Field(
14944
- ..., description='The list of simulation personas.', title='Simulation Personas'
14945
- )
14946
-
14947
-
14948
14979
  class SimulationSearchSimulationUnitTestSetResponse(BaseModel):
14949
14980
  simulation_unit_test_sets: List[SimulationUnitTestSet] = Field(
14950
14981
  ...,
@@ -15091,33 +15122,22 @@ class UserGetUserModelResponse(BaseModel):
15091
15122
  )
15092
15123
 
15093
15124
 
15094
- class UserGetUsersResponseUserInstance(BaseModel):
15095
- org_id: str = Field(
15096
- ...,
15097
- description='The ID of the organization that this user belongs to.',
15098
- title='Org Id',
15099
- )
15100
- user_id: str = Field(
15101
- ..., description='The identifier of the user.', title='User Id'
15102
- )
15103
- first_name: str = Field(
15104
- ..., description='The first name of the user.', title='First Name'
15105
- )
15106
- last_name: str = Field(
15107
- ..., description='The last name of the user.', title='Last Name'
15125
+ class UserGetUsersResponse(BaseModel):
15126
+ users: List[UserSearchUsersResponseUserInstance] = Field(
15127
+ ..., description='Users in this organization.', title='Users'
15108
15128
  )
15109
- email: str = Field(..., description='Email of the user.', title='Email')
15110
- user_stats: UserGetUsersResponseUserInstanceUserStats = Field(
15111
- ..., description="Statistics about the user's usage of the Amigo platform."
15129
+ has_more: bool = Field(
15130
+ ..., description='Whether there are more users to retrieve.', title='Has More'
15112
15131
  )
15113
- role: str = Field(..., description='The ID of the role of the user.', title='Role')
15114
- preferences: AmigoLibMongoCollectionsUserUserPreferences = Field(
15115
- ..., description='The preferences of the user.'
15132
+ continuation_token: Optional[int] = Field(
15133
+ ...,
15134
+ description='A token to supply to the next request to retrieve the next page of users. Only populated if `has_more` is `True`.',
15135
+ title='Continuation Token',
15116
15136
  )
15117
15137
 
15118
15138
 
15119
15139
  class UserSearchUsersResponse(BaseModel):
15120
- users: List[UserGetUsersResponseUserInstance] = Field(
15140
+ users: List[UserSearchUsersResponseUserInstance] = Field(
15121
15141
  ..., description='Users in this organization.', title='Users'
15122
15142
  )
15123
15143
 
@@ -15217,7 +15237,7 @@ class ActionStateInput(BaseModel):
15217
15237
  Field(..., title='Boundary Constraints')
15218
15238
  )
15219
15239
  exit_conditions: List[
15220
- OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitCondition
15240
+ OrganizationCreateServiceHierarchicalStateMachineVersionRequestDecisionStateExitCondition
15221
15241
  ] = Field(..., title='Exit Conditions')
15222
15242
  action_tool_call_specs: List[ToolCallSpecInput] = Field(
15223
15243
  ..., title='Action Tool Call Specs'
@@ -15326,7 +15346,7 @@ class DecisionStateInput(BaseModel):
15326
15346
  type: Literal['decision'] = Field(..., title='Type')
15327
15347
  name: str = Field(..., pattern='^[A-Za-z0-9_]+$')
15328
15348
  exit_conditions: List[
15329
- OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitCondition
15349
+ OrganizationCreateServiceHierarchicalStateMachineVersionRequestDecisionStateExitCondition
15330
15350
  ] = Field(..., title='Exit Conditions')
15331
15351
  decision_guidelines: List[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
15332
15352
  ..., title='Decision Guidelines'
@@ -15367,7 +15387,7 @@ class Metric(BaseModel):
15367
15387
  additional_notes: Optional[str] = Field(
15368
15388
  ..., description='Additional notes about the metric.', title='Additional Notes'
15369
15389
  )
15370
- tags: List[AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestTag] = Field(
15390
+ tags: List[AmigoLibMongoCollectionsServiceServiceTag] = Field(
15371
15391
  ..., description='The tags of the metric.', title='Tags'
15372
15392
  )
15373
15393
  creator: AmigoLibMongoCollectionsMetricMetricUserInfo = Field(
@@ -15437,7 +15457,7 @@ class MetricInstance(BaseModel):
15437
15457
  additional_notes: Optional[str] = Field(
15438
15458
  ..., description='Additional notes about the metric.', title='Additional Notes'
15439
15459
  )
15440
- tags: List[AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestTag] = Field(
15460
+ tags: List[AmigoLibMongoCollectionsServiceServiceTag] = Field(
15441
15461
  ..., description='The tags of the metric.', title='Tags'
15442
15462
  )
15443
15463
  creator: AmigoLibMongoCollectionsMetricMetricUserInfo = Field(
@@ -15639,7 +15659,7 @@ class SimulationUnitTest(BaseModel):
15639
15659
  is_deleted: bool = Field(
15640
15660
  ..., description='Whether the unit test has been deleted.', title='Is Deleted'
15641
15661
  )
15642
- tags: List[AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestTag] = Field(
15662
+ tags: List[AmigoLibMongoCollectionsServiceServiceTag] = Field(
15643
15663
  ..., description='The tags of the simulation persona.', title='Tags'
15644
15664
  )
15645
15665
  creator: AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
@@ -15684,7 +15704,7 @@ class SimulationUnitTestInstance(BaseModel):
15684
15704
  is_deleted: bool = Field(
15685
15705
  ..., description='Whether the unit test has been deleted.', title='Is Deleted'
15686
15706
  )
15687
- tags: List[AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestTag] = Field(
15707
+ tags: List[AmigoLibMongoCollectionsServiceServiceTag] = Field(
15688
15708
  ..., description='The tags of the simulation persona.', title='Tags'
15689
15709
  )
15690
15710
  creator: AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
@@ -16032,23 +16052,15 @@ class ServiceCreateServiceRequest(BaseModel):
16032
16052
  description='Whether the newly-created service is active. Only active services are visible to users on the dashboard. You can later adjust the activeness of this service.',
16033
16053
  title='Is Active',
16034
16054
  )
16035
- release_version_set: Optional[ServiceUpsertServiceVersionSetRequestVersionSet] = (
16036
- Field(
16037
- None,
16038
- description='The `release` version set to use for this service. If not specified, the `release` version set will be the same as the `edge` version set, which uses the\nlatest agent and state machine versions with no model preference.',
16039
- )
16055
+ release_version_set: Optional[ServiceCreateServiceRequestVersionSet] = Field(
16056
+ None,
16057
+ description='The `release` version set to use for this service. If not specified, the `release` version set will be the same as the `edge` version set, which uses the\nlatest agent and state machine versions with no model preference.',
16040
16058
  )
16041
16059
  tags: Dict[str, Optional[StrippedNonemptyStringWS]] = Field(
16042
16060
  ..., description='The tags of this service.', title='Tags'
16043
16061
  )
16044
16062
 
16045
16063
 
16046
- class ServiceUpsertServiceVersionSetRequest(BaseModel):
16047
- version_set: ServiceUpsertServiceVersionSetRequestVersionSet = Field(
16048
- ..., description='The version set to upsert.'
16049
- )
16050
-
16051
-
16052
16064
  class SimulationCreateSimulationUnitTestRequest(BaseModel):
16053
16065
  name: str = Field(..., description='The name of the unit test.', min_length=1)
16054
16066
  description: str = Field(
@@ -16209,20 +16221,6 @@ class ToolSearchToolInvocationsResponseToolInvocationInstance(BaseModel):
16209
16221
  )
16210
16222
 
16211
16223
 
16212
- class UserGetUsersResponse(BaseModel):
16213
- users: List[UserGetUsersResponseUserInstance] = Field(
16214
- ..., description='Users in this organization.', title='Users'
16215
- )
16216
- has_more: bool = Field(
16217
- ..., description='Whether there are more users to retrieve.', title='Has More'
16218
- )
16219
- continuation_token: Optional[int] = Field(
16220
- ...,
16221
- description='A token to supply to the next request to retrieve the next page of users. Only populated if `has_more` is `True`.',
16222
- title='Continuation Token',
16223
- )
16224
-
16225
-
16226
16224
  class SimulationUnitTestSetRunInstance(BaseModel):
16227
16225
  org_id: str = Field(..., title='Org Id')
16228
16226
  id: str = Field(..., title='Id')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amigo_sdk
3
- Version: 0.68.0
3
+ Version: 0.69.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=wYrr7-kI3UXVygIXUsFCktVIZI4zZYVos0z-lkZBmgk,139
1
+ amigo_sdk/__init__.py,sha256=f92ou06jG_dF-bjS0-u3e5y3NCawwALx_NrF_xmcEnw,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=AC2gU43CVs61eLPn6vwaoy_2qS4h9IHRTztw69QOCMM,457134
9
+ amigo_sdk/generated/model.py,sha256=D0il2vJlghD_VpR9544TJLTunouNRIshwInQV9jNFBI,456861
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.68.0.dist-info/METADATA,sha256=DEJu0boyDaXm4W5LMyXWhlUsZHKWZPbih_hCauyiZC0,8499
15
- amigo_sdk-0.68.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
16
- amigo_sdk-0.68.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
17
- amigo_sdk-0.68.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
18
- amigo_sdk-0.68.0.dist-info/RECORD,,
14
+ amigo_sdk-0.69.0.dist-info/METADATA,sha256=J5S8JJ1vkUxh-b00MjaGH_60uwEA6lS7Ies9BFf-kRM,8499
15
+ amigo_sdk-0.69.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
16
+ amigo_sdk-0.69.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
17
+ amigo_sdk-0.69.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
18
+ amigo_sdk-0.69.0.dist-info/RECORD,,