amigo_sdk 0.73.0__py3-none-any.whl → 0.75.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.73.0"
1
+ __version__ = "0.75.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-03T23:53:32+00:00
3
+ # timestamp: 2025-12-04T01:13:30+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
@@ -1615,6 +1615,11 @@ class AmigoLibMongoCollectionsDynamicBehaviorSetVersionAction(BaseModel):
1615
1615
  )
1616
1616
 
1617
1617
 
1618
+ class AmigoLibMongoCollectionsMetricMetricTag(BaseModel):
1619
+ key: str = Field(..., title='Key')
1620
+ value: Optional[str] = Field(..., title='Value')
1621
+
1622
+
1618
1623
  AmigoLibMongoCollectionsMetricMetricUserInfo = (
1619
1624
  AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1620
1625
  )
@@ -1663,11 +1668,6 @@ AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo = (
1663
1668
  )
1664
1669
 
1665
1670
 
1666
- class AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag(BaseModel):
1667
- key: str = Field(..., title='Key')
1668
- value: Optional[str] = Field(..., title='Value')
1669
-
1670
-
1671
1671
  class AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetUnitTestRunDescriptor(
1672
1672
  BaseModel
1673
1673
  ):
@@ -1704,6 +1704,12 @@ AmigoLibMongoCollectionsSimulationUnitTestSetRunSimulationUnitTestSetRunUserInfo
1704
1704
  )
1705
1705
 
1706
1706
 
1707
+ class AmigoLibMongoCollectionsToolInvocationToolInvocationVersion(BaseModel):
1708
+ major: int = Field(..., title='Major')
1709
+ minor: int = Field(..., title='Minor')
1710
+ patch: int = Field(..., title='Patch')
1711
+
1712
+
1707
1713
  class AmigoLibMongoCollectionsToolVersionToolVersionUserInfo(BaseModel):
1708
1714
  user_id: str = Field(..., description='The ID of the user.', title='User Id')
1709
1715
  user_org_id: str = Field(
@@ -1711,12 +1717,6 @@ class AmigoLibMongoCollectionsToolVersionToolVersionUserInfo(BaseModel):
1711
1717
  )
1712
1718
 
1713
1719
 
1714
- class AmigoLibMongoCollectionsToolVersionToolVersionVersion(BaseModel):
1715
- major: int = Field(..., title='Major')
1716
- minor: int = Field(..., title='Minor')
1717
- patch: int = Field(..., title='Patch')
1718
-
1719
-
1720
1720
  class AmigoLibMongoCollectionsUserUserPreferences(BaseModel):
1721
1721
  enable_response_recommendation: Optional[bool] = Field(
1722
1722
  False,
@@ -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(
@@ -10742,6 +10752,13 @@ class OrganizationCreateOrganizationRequestPreferences(BaseModel):
10742
10752
  )
10743
10753
 
10744
10754
 
10755
+ class OrganizationCreateOrganizationRequestUserDimension(BaseModel):
10756
+ description: str = Field(..., min_length=1)
10757
+ tags: List[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
10758
+ ..., title='Tags'
10759
+ )
10760
+
10761
+
10745
10762
  class OrganizationCreateOrganizationResponse(BaseModel):
10746
10763
  org_id: str = Field(
10747
10764
  ...,
@@ -10883,18 +10900,22 @@ class OrganizationGetUserDimensionsResponse(BaseModel):
10883
10900
  )
10884
10901
 
10885
10902
 
10903
+ class OrganizationModifyOrganizationRequestUserDimensions(
10904
+ RootModel[List[OrganizationCreateOrganizationRequestUserDimension]]
10905
+ ):
10906
+ root: List[OrganizationCreateOrganizationRequestUserDimension] = Field(
10907
+ ...,
10908
+ description='User dimensions for the organization. If not set or `null`, this field is not updated.',
10909
+ min_length=1,
10910
+ title='User Dimensions',
10911
+ )
10912
+
10913
+
10886
10914
  OrganizationModifyOrganizationRequestPreferences = (
10887
10915
  OrganizationCreateOrganizationRequestPreferences
10888
10916
  )
10889
10917
 
10890
10918
 
10891
- class OrganizationModifyOrganizationRequestUserDimension(BaseModel):
10892
- description: str = Field(..., min_length=1)
10893
- tags: List[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
10894
- ..., title='Tags'
10895
- )
10896
-
10897
-
10898
10919
  class RoleAssignRoleRequest(BaseModel):
10899
10920
  user_id: str = Field(
10900
10921
  ...,
@@ -10941,6 +10962,13 @@ class RoleModifyRoleResponse(BaseModel):
10941
10962
  )
10942
10963
 
10943
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
+
10944
10972
  class ServiceCreateServiceResponse(BaseModel):
10945
10973
  id: str = Field(..., description='The ID of the newly created service.', title='Id')
10946
10974
 
@@ -11000,13 +11028,6 @@ class ServiceUpdateServiceRequest(BaseModel):
11000
11028
  )
11001
11029
 
11002
11030
 
11003
- class ServiceUpsertServiceVersionSetRequestVersionSetLLMConfig(BaseModel):
11004
- llm_name: LLMType
11005
- params: Optional[Dict[str, Any]] = Field(
11006
- {}, description='LLM-specific parameters to use.', title='Params'
11007
- )
11008
-
11009
-
11010
11031
  class SimulationCreateSimulationPersonaRequestInitialVersion(BaseModel):
11011
11032
  background: str = Field(
11012
11033
  ..., description='The background of the simulation persona.', min_length=1
@@ -11661,7 +11682,7 @@ class UserGetMemoriesResponse(BaseModel):
11661
11682
  )
11662
11683
 
11663
11684
 
11664
- class UserSearchUsersResponseUserInstanceUserStats(BaseModel):
11685
+ class UserGetUsersResponseUserInstanceUserStats(BaseModel):
11665
11686
  num_conversations: int = Field(
11666
11687
  ...,
11667
11688
  description='The number of conversations the user has created.',
@@ -11679,6 +11700,31 @@ class UserSearchUsersResponseUserInstanceUserStats(BaseModel):
11679
11700
  )
11680
11701
 
11681
11702
 
11703
+ class UserSearchUsersResponseUserInstance(BaseModel):
11704
+ org_id: str = Field(
11705
+ ...,
11706
+ description='The ID of the organization that this user belongs to.',
11707
+ title='Org Id',
11708
+ )
11709
+ user_id: str = Field(
11710
+ ..., description='The identifier of the user.', title='User Id'
11711
+ )
11712
+ first_name: str = Field(
11713
+ ..., description='The first name of the user.', title='First Name'
11714
+ )
11715
+ last_name: str = Field(
11716
+ ..., description='The last name of the user.', title='Last Name'
11717
+ )
11718
+ email: str = Field(..., description='Email of the user.', title='Email')
11719
+ user_stats: UserGetUsersResponseUserInstanceUserStats = Field(
11720
+ ..., description="Statistics about the user's usage of the Amigo platform."
11721
+ )
11722
+ role: str = Field(..., description='The ID of the role of the user.', title='Role')
11723
+ preferences: AmigoLibMongoCollectionsUserUserPreferences = Field(
11724
+ ..., description='The preferences of the user.'
11725
+ )
11726
+
11727
+
11682
11728
  class UserSignInWithApiKeyResponse(BaseModel):
11683
11729
  id_token: str = Field(
11684
11730
  ...,
@@ -13906,9 +13952,9 @@ class ServiceInstance(BaseModel):
13906
13952
  agent_id: str = Field(
13907
13953
  ..., description='The ID of the agent that this service uses.', title='Agent Id'
13908
13954
  )
13909
- tags: List[
13910
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
13911
- ] = Field(..., description='The tags of the service.', title='Tags')
13955
+ tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
13956
+ ..., description='The tags of the service.', title='Tags'
13957
+ )
13912
13958
 
13913
13959
 
13914
13960
  class SimulationConversationInvocationSource(BaseModel):
@@ -13959,9 +14005,7 @@ class SimulationUnitTestSet(BaseModel):
13959
14005
  description='Whether the unit test set has been deleted.',
13960
14006
  title='Is Deleted',
13961
14007
  )
13962
- tags: List[
13963
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
13964
- ] = Field(
14008
+ tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
13965
14009
  ..., description='The tags of the simulation unit test set.', title='Tags'
13966
14010
  )
13967
14011
  creator: AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetUserInfo
@@ -14000,9 +14044,7 @@ class SimulationUnitTestSetInstance(BaseModel):
14000
14044
  description='Whether the unit test set has been deleted.',
14001
14045
  title='Is Deleted',
14002
14046
  )
14003
- tags: List[
14004
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
14005
- ] = Field(
14047
+ tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
14006
14048
  ..., description='The tags of the simulation unit test set.', title='Tags'
14007
14049
  )
14008
14050
  creator: AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetUserInfo
@@ -14118,9 +14160,9 @@ class ToolInstance(BaseModel):
14118
14160
  description='A list of encrypted environment variables that some versions of this tool uses.',
14119
14161
  title='Secret Envvars',
14120
14162
  )
14121
- tags: List[
14122
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
14123
- ] = Field(..., description='The tags of the simulation persona.', title='Tags')
14163
+ tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
14164
+ ..., description='The tags of the simulation persona.', title='Tags'
14165
+ )
14124
14166
 
14125
14167
 
14126
14168
  class ToolVersionInstance(BaseModel):
@@ -14133,7 +14175,7 @@ class ToolVersionInstance(BaseModel):
14133
14175
  description='The ID of the tool that this version belongs to.',
14134
14176
  title='Tool Id',
14135
14177
  )
14136
- version: AmigoLibMongoCollectionsToolVersionToolVersionVersion = Field(
14178
+ version: AmigoLibMongoCollectionsToolInvocationToolInvocationVersion = Field(
14137
14179
  ..., description='The version of the tool.'
14138
14180
  )
14139
14181
  required_envvars: List[str] = Field(
@@ -14449,7 +14491,7 @@ class DynamicBehaviorSetGetDynamicBehaviorSetVersionsResponse(BaseModel):
14449
14491
 
14450
14492
  class DynamicBehaviorSetGetDynamicBehaviorSetsResponse(BaseModel):
14451
14493
  dynamic_behavior_sets: List[
14452
- DynamicBehaviorSetSearchDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
14494
+ DynamicBehaviorSetGetDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
14453
14495
  ] = Field(
14454
14496
  ...,
14455
14497
  description='The retrieved dynamic behavior sets.',
@@ -14473,16 +14515,6 @@ class DynamicBehaviorSetGetDynamicBehaviorSetsResponse(BaseModel):
14473
14515
  )
14474
14516
 
14475
14517
 
14476
- class DynamicBehaviorSetSearchDynamicBehaviorSetsResponse(BaseModel):
14477
- dynamic_behavior_sets: List[
14478
- DynamicBehaviorSetSearchDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
14479
- ] = Field(
14480
- ...,
14481
- description='The retrieved dynamic behavior sets.',
14482
- title='Dynamic Behavior Sets',
14483
- )
14484
-
14485
-
14486
14518
  class MetricCreateMetricRequest(BaseModel):
14487
14519
  name: str = Field(
14488
14520
  ...,
@@ -14539,7 +14571,7 @@ class OrganizationCreateOrganizationRequest(BaseModel):
14539
14571
  description='Additional descriptions of the services offered by this organization that is displayed below `main_description` in a smaller font.',
14540
14572
  min_length=1,
14541
14573
  )
14542
- user_dimensions: List[OrganizationModifyOrganizationRequestUserDimension] = Field(
14574
+ user_dimensions: List[OrganizationCreateOrganizationRequestUserDimension] = Field(
14543
14575
  ...,
14544
14576
  description='User dimensions for the organization.',
14545
14577
  title='User Dimensions',
@@ -14683,17 +14715,6 @@ class OrganizationGetOrganizationMetricsResponse(BaseModel):
14683
14715
  )
14684
14716
 
14685
14717
 
14686
- class OrganizationModifyOrganizationRequestUserDimensions(
14687
- RootModel[List[OrganizationModifyOrganizationRequestUserDimension]]
14688
- ):
14689
- root: List[OrganizationModifyOrganizationRequestUserDimension] = Field(
14690
- ...,
14691
- description='User dimensions for the organization. If not set or `null`, this field is not updated.',
14692
- min_length=1,
14693
- title='User Dimensions',
14694
- )
14695
-
14696
-
14697
14718
  class OrganizationModifyOrganizationRequest(BaseModel):
14698
14719
  title: Optional[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
14699
14720
  None,
@@ -14802,9 +14823,9 @@ class ServiceCreateServiceRequestVersionSet(BaseModel):
14802
14823
  description='The version number of the state machine to be used. If None, the latest state machine version will be used.',
14803
14824
  title='Service Hierarchical State Machine Version Number',
14804
14825
  )
14805
- llm_model_preferences: Dict[
14806
- str, ServiceUpsertServiceVersionSetRequestVersionSetLLMConfig
14807
- ] = Field(..., title='Llm Model Preferences')
14826
+ llm_model_preferences: Dict[str, ServiceCreateServiceRequestVersionSetLLMConfig] = (
14827
+ Field(..., title='Llm Model Preferences')
14828
+ )
14808
14829
 
14809
14830
 
14810
14831
  class ServiceGetServicesResponse(BaseModel):
@@ -15101,33 +15122,22 @@ class UserGetUserModelResponse(BaseModel):
15101
15122
  )
15102
15123
 
15103
15124
 
15104
- class UserGetUsersResponseUserInstance(BaseModel):
15105
- org_id: str = Field(
15106
- ...,
15107
- description='The ID of the organization that this user belongs to.',
15108
- title='Org Id',
15109
- )
15110
- user_id: str = Field(
15111
- ..., description='The identifier of the user.', title='User Id'
15112
- )
15113
- first_name: str = Field(
15114
- ..., description='The first name of the user.', title='First Name'
15115
- )
15116
- last_name: str = Field(
15117
- ..., 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'
15118
15128
  )
15119
- email: str = Field(..., description='Email of the user.', title='Email')
15120
- user_stats: UserSearchUsersResponseUserInstanceUserStats = Field(
15121
- ..., 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'
15122
15131
  )
15123
- role: str = Field(..., description='The ID of the role of the user.', title='Role')
15124
- preferences: AmigoLibMongoCollectionsUserUserPreferences = Field(
15125
- ..., 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',
15126
15136
  )
15127
15137
 
15128
15138
 
15129
15139
  class UserSearchUsersResponse(BaseModel):
15130
- users: List[UserGetUsersResponseUserInstance] = Field(
15140
+ users: List[UserSearchUsersResponseUserInstance] = Field(
15131
15141
  ..., description='Users in this organization.', title='Users'
15132
15142
  )
15133
15143
 
@@ -15377,9 +15387,9 @@ class Metric(BaseModel):
15377
15387
  additional_notes: Optional[str] = Field(
15378
15388
  ..., description='Additional notes about the metric.', title='Additional Notes'
15379
15389
  )
15380
- tags: List[
15381
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
15382
- ] = Field(..., description='The tags of the metric.', title='Tags')
15390
+ tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
15391
+ ..., description='The tags of the metric.', title='Tags'
15392
+ )
15383
15393
  creator: AmigoLibMongoCollectionsMetricMetricUserInfo = Field(
15384
15394
  ..., description='The user who created the metric.'
15385
15395
  )
@@ -15447,9 +15457,9 @@ class MetricInstance(BaseModel):
15447
15457
  additional_notes: Optional[str] = Field(
15448
15458
  ..., description='Additional notes about the metric.', title='Additional Notes'
15449
15459
  )
15450
- tags: List[
15451
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
15452
- ] = Field(..., description='The tags of the metric.', title='Tags')
15460
+ tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
15461
+ ..., description='The tags of the metric.', title='Tags'
15462
+ )
15453
15463
  creator: AmigoLibMongoCollectionsMetricMetricUserInfo = Field(
15454
15464
  ..., description='The user who created the metric.'
15455
15465
  )
@@ -15649,9 +15659,9 @@ class SimulationUnitTest(BaseModel):
15649
15659
  is_deleted: bool = Field(
15650
15660
  ..., description='Whether the unit test has been deleted.', title='Is Deleted'
15651
15661
  )
15652
- tags: List[
15653
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
15654
- ] = Field(..., description='The tags of the simulation persona.', title='Tags')
15662
+ tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
15663
+ ..., description='The tags of the simulation persona.', title='Tags'
15664
+ )
15655
15665
  creator: AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
15656
15666
  updated_by: AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
15657
15667
 
@@ -15694,9 +15704,9 @@ class SimulationUnitTestInstance(BaseModel):
15694
15704
  is_deleted: bool = Field(
15695
15705
  ..., description='Whether the unit test has been deleted.', title='Is Deleted'
15696
15706
  )
15697
- tags: List[
15698
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
15699
- ] = Field(..., description='The tags of the simulation persona.', title='Tags')
15707
+ tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
15708
+ ..., description='The tags of the simulation persona.', title='Tags'
15709
+ )
15700
15710
  creator: AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
15701
15711
  updated_by: AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
15702
15712
 
@@ -16206,25 +16216,11 @@ class ToolSearchToolInvocationsResponseToolInvocationInstance(BaseModel):
16206
16216
  tool_id: str = Field(
16207
16217
  ..., description='The ID of the tool that was invoked.', title='Tool Id'
16208
16218
  )
16209
- tool_version: AmigoLibMongoCollectionsToolVersionToolVersionVersion = Field(
16219
+ tool_version: AmigoLibMongoCollectionsToolInvocationToolInvocationVersion = Field(
16210
16220
  ..., description='The version of the tool that was invoked.'
16211
16221
  )
16212
16222
 
16213
16223
 
16214
- class UserGetUsersResponse(BaseModel):
16215
- users: List[UserGetUsersResponseUserInstance] = Field(
16216
- ..., description='Users in this organization.', title='Users'
16217
- )
16218
- has_more: bool = Field(
16219
- ..., description='Whether there are more users to retrieve.', title='Has More'
16220
- )
16221
- continuation_token: Optional[int] = Field(
16222
- ...,
16223
- description='A token to supply to the next request to retrieve the next page of users. Only populated if `has_more` is `True`.',
16224
- title='Continuation Token',
16225
- )
16226
-
16227
-
16228
16224
  class SimulationUnitTestSetRunInstance(BaseModel):
16229
16225
  org_id: str = Field(..., title='Org Id')
16230
16226
  id: str = Field(..., title='Id')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amigo_sdk
3
- Version: 0.73.0
3
+ Version: 0.75.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=M3-cznKBTuATdoY_7EDHlhXFTzv8qPMn-IA749TeT64,139
1
+ amigo_sdk/__init__.py,sha256=tzY6nagu7lgJ1MKARQEIKkdcAKo2EjbmL6C88h2QsjU,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=1PM-mIT1t9v1EAqYqdrIxDPwG5lgyEF5WQ996wMOVSQ,457200
9
+ amigo_sdk/generated/model.py,sha256=stIlA3cf-9diXa8V1obNAun6xX5d6u_BAyRl8S13fZ8,456896
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.73.0.dist-info/METADATA,sha256=7N7JxtjUPVrkhrvvHODEkR8sRfkLGd1j5TeyuSAZV9M,8499
15
- amigo_sdk-0.73.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
16
- amigo_sdk-0.73.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
17
- amigo_sdk-0.73.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
18
- amigo_sdk-0.73.0.dist-info/RECORD,,
14
+ amigo_sdk-0.75.0.dist-info/METADATA,sha256=8puY-2UtB259Cym1UM1XjY0KcEHAVF5mzpzeeFRunRk,8499
15
+ amigo_sdk-0.75.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
16
+ amigo_sdk-0.75.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
17
+ amigo_sdk-0.75.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
18
+ amigo_sdk-0.75.0.dist-info/RECORD,,