amigo_sdk 0.55.0__py3-none-any.whl → 0.56.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.55.0"
1
+ __version__ = "0.56.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-11-11T05:32:23+00:00
3
+ # timestamp: 2025-11-11T19:37:59+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
@@ -1693,6 +1693,12 @@ AmigoLibMongoCollectionsSimulationUnitTestSetRunSimulationUnitTestSetRunUserInfo
1693
1693
  )
1694
1694
 
1695
1695
 
1696
+ class AmigoLibMongoCollectionsToolInvocationToolInvocationVersion(BaseModel):
1697
+ major: int = Field(..., title='Major')
1698
+ minor: int = Field(..., title='Minor')
1699
+ patch: int = Field(..., title='Patch')
1700
+
1701
+
1696
1702
  class AmigoLibMongoCollectionsToolVersionToolVersionUserInfo(BaseModel):
1697
1703
  user_id: str = Field(..., description='The ID of the user.', title='User Id')
1698
1704
  user_org_id: str = Field(
@@ -1700,12 +1706,6 @@ class AmigoLibMongoCollectionsToolVersionToolVersionUserInfo(BaseModel):
1700
1706
  )
1701
1707
 
1702
1708
 
1703
- class AmigoLibMongoCollectionsToolVersionToolVersionVersion(BaseModel):
1704
- major: int = Field(..., title='Major')
1705
- minor: int = Field(..., title='Minor')
1706
- patch: int = Field(..., title='Patch')
1707
-
1708
-
1709
1709
  class AmigoLibMongoCollectionsUserUserPreferences(BaseModel):
1710
1710
  enable_response_recommendation: Optional[bool] = Field(
1711
1711
  False,
@@ -10946,11 +10946,6 @@ class ServiceCreateServiceRequestVersionSetLLMConfig(BaseModel):
10946
10946
  )
10947
10947
 
10948
10948
 
10949
- class ServiceCreateServiceRequestVersionSetLLMLoadBalancingSetConfig(BaseModel):
10950
- llm_load_balancing_set_name: LLMLoadBalancingSetType
10951
- configs: Dict[str, PerLLMConfig] = Field(..., title='Configs')
10952
-
10953
-
10954
10949
  class ServiceCreateServiceResponse(BaseModel):
10955
10950
  id: str = Field(..., description='The ID of the newly created service.', title='Id')
10956
10951
 
@@ -11010,24 +11005,11 @@ class ServiceUpdateServiceRequest(BaseModel):
11010
11005
  )
11011
11006
 
11012
11007
 
11013
- class ServiceUpsertServiceVersionSetRequestVersionSet(BaseModel):
11014
- agent_version_number: Optional[int] = Field(
11015
- ...,
11016
- description='The version number of the agent to be used. If None, the latest agent version will be used.',
11017
- title='Agent Version Number',
11018
- )
11019
- service_hierarchical_state_machine_version_number: Optional[int] = Field(
11020
- ...,
11021
- description='The version number of the state machine to be used. If None, the latest state machine version will be used.',
11022
- title='Service Hierarchical State Machine Version Number',
11023
- )
11024
- llm_model_preferences: Dict[
11025
- str,
11026
- Union[
11027
- ServiceCreateServiceRequestVersionSetLLMConfig,
11028
- ServiceCreateServiceRequestVersionSetLLMLoadBalancingSetConfig,
11029
- ],
11030
- ] = Field(..., title='Llm Model Preferences')
11008
+ class ServiceUpsertServiceVersionSetRequestVersionSetLLMLoadBalancingSetConfig(
11009
+ BaseModel
11010
+ ):
11011
+ llm_load_balancing_set_name: LLMLoadBalancingSetType
11012
+ configs: Dict[str, PerLLMConfig] = Field(..., title='Configs')
11031
11013
 
11032
11014
 
11033
11015
  class SimulationCreateSimulationPersonaRequestInitialVersion(BaseModel):
@@ -11217,40 +11199,6 @@ class SimulationGetSimulationPersonasResponseFilterValues(BaseModel):
11217
11199
  )
11218
11200
 
11219
11201
 
11220
- class SimulationGetSimulationPersonasResponseSimulationPersonaInstance(BaseModel):
11221
- id: str = Field(..., description='The ID of the simulation persona.', title='Id')
11222
- name: str = Field(
11223
- ..., description='The name of the simulation persona.', title='Name'
11224
- )
11225
- role: str = Field(
11226
- ..., description='The role of the simulation persona.', title='Role'
11227
- )
11228
- tags: Dict[str, Optional[str]] = Field(
11229
- ..., description='The tags of the simulation persona.', title='Tags'
11230
- )
11231
- is_deleted: bool = Field(
11232
- ...,
11233
- description='Whether the simulation persona is deleted.',
11234
- title='Is Deleted',
11235
- )
11236
- created_at: AwareDatetime = Field(
11237
- ...,
11238
- description='The timestamp when the simulation persona was created.',
11239
- title='Created At',
11240
- )
11241
- creator: AmigoLibMongoCollectionsSimulationPersonaSimulationPersonaUserInfo = Field(
11242
- ..., description='The user who created the simulation persona.'
11243
- )
11244
- updated_at: AwareDatetime = Field(
11245
- ...,
11246
- description='The timestamp when the simulation persona was last updated.',
11247
- title='Updated At',
11248
- )
11249
- updated_by: AmigoLibMongoCollectionsSimulationPersonaSimulationPersonaUserInfo = (
11250
- Field(..., description='The user who last updated the simulation persona.')
11251
- )
11252
-
11253
-
11254
11202
  class SimulationGetSimulationScenarioVersionsResponse(BaseModel):
11255
11203
  simulation_scenario_versions: List[SimulationScenarioVersion] = Field(
11256
11204
  ...,
@@ -11282,6 +11230,37 @@ class SimulationGetSimulationScenariosResponseFilterValues(BaseModel):
11282
11230
  )
11283
11231
 
11284
11232
 
11233
+ class SimulationGetSimulationScenariosResponseSimulationScenarioInstance(BaseModel):
11234
+ id: str = Field(..., description='The ID of the simulation scenario.', title='Id')
11235
+ name: str = Field(
11236
+ ..., description='The name of the simulation scenario.', title='Name'
11237
+ )
11238
+ tags: Dict[str, Optional[str]] = Field(
11239
+ ..., description='The tags of the simulation scenario.', title='Tags'
11240
+ )
11241
+ is_deleted: bool = Field(
11242
+ ...,
11243
+ description='Whether the simulation scenario is deleted.',
11244
+ title='Is Deleted',
11245
+ )
11246
+ created_at: AwareDatetime = Field(
11247
+ ...,
11248
+ description='The timestamp when the simulation scenario was created.',
11249
+ title='Created At',
11250
+ )
11251
+ creator: AmigoLibMongoCollectionsSimulationScenarioSimulationScenarioUserInfo = (
11252
+ Field(..., description='The user who created the simulation scenario.')
11253
+ )
11254
+ updated_at: AwareDatetime = Field(
11255
+ ...,
11256
+ description='The timestamp when the simulation scenario was last updated.',
11257
+ title='Updated At',
11258
+ )
11259
+ updated_by: AmigoLibMongoCollectionsSimulationScenarioSimulationScenarioUserInfo = (
11260
+ Field(..., description='The user who last updated the simulation scenario.')
11261
+ )
11262
+
11263
+
11285
11264
  class SimulationGetSimulationUnitTestSetRunArtifactsResponse(BaseModel):
11286
11265
  presigned_url: str = Field(
11287
11266
  ...,
@@ -11370,42 +11349,47 @@ class SimulationGetSimulationUnitTestsResponseFilterValues(BaseModel):
11370
11349
  )
11371
11350
 
11372
11351
 
11373
- class SimulationSearchSimulationPersonasResponse(BaseModel):
11374
- simulation_personas: List[
11375
- SimulationGetSimulationPersonasResponseSimulationPersonaInstance
11376
- ] = Field(
11377
- ..., description='The list of simulation personas.', title='Simulation Personas'
11378
- )
11379
-
11380
-
11381
- class SimulationSearchSimulationScenariosResponseSimulationScenarioInstance(BaseModel):
11382
- id: str = Field(..., description='The ID of the simulation scenario.', title='Id')
11352
+ class SimulationSearchSimulationPersonasResponseSimulationPersonaInstance(BaseModel):
11353
+ id: str = Field(..., description='The ID of the simulation persona.', title='Id')
11383
11354
  name: str = Field(
11384
- ..., description='The name of the simulation scenario.', title='Name'
11355
+ ..., description='The name of the simulation persona.', title='Name'
11356
+ )
11357
+ role: str = Field(
11358
+ ..., description='The role of the simulation persona.', title='Role'
11385
11359
  )
11386
11360
  tags: Dict[str, Optional[str]] = Field(
11387
- ..., description='The tags of the simulation scenario.', title='Tags'
11361
+ ..., description='The tags of the simulation persona.', title='Tags'
11388
11362
  )
11389
11363
  is_deleted: bool = Field(
11390
11364
  ...,
11391
- description='Whether the simulation scenario is deleted.',
11365
+ description='Whether the simulation persona is deleted.',
11392
11366
  title='Is Deleted',
11393
11367
  )
11394
11368
  created_at: AwareDatetime = Field(
11395
11369
  ...,
11396
- description='The timestamp when the simulation scenario was created.',
11370
+ description='The timestamp when the simulation persona was created.',
11397
11371
  title='Created At',
11398
11372
  )
11399
- creator: AmigoLibMongoCollectionsSimulationScenarioSimulationScenarioUserInfo = (
11400
- Field(..., description='The user who created the simulation scenario.')
11373
+ creator: AmigoLibMongoCollectionsSimulationPersonaSimulationPersonaUserInfo = Field(
11374
+ ..., description='The user who created the simulation persona.'
11401
11375
  )
11402
11376
  updated_at: AwareDatetime = Field(
11403
11377
  ...,
11404
- description='The timestamp when the simulation scenario was last updated.',
11378
+ description='The timestamp when the simulation persona was last updated.',
11405
11379
  title='Updated At',
11406
11380
  )
11407
- updated_by: AmigoLibMongoCollectionsSimulationScenarioSimulationScenarioUserInfo = (
11408
- Field(..., description='The user who last updated the simulation scenario.')
11381
+ updated_by: AmigoLibMongoCollectionsSimulationPersonaSimulationPersonaUserInfo = (
11382
+ Field(..., description='The user who last updated the simulation persona.')
11383
+ )
11384
+
11385
+
11386
+ class SimulationSearchSimulationScenariosResponse(BaseModel):
11387
+ simulation_scenarios: List[
11388
+ SimulationGetSimulationScenariosResponseSimulationScenarioInstance
11389
+ ] = Field(
11390
+ ...,
11391
+ description='The list of simulation scenarios.',
11392
+ title='Simulation Scenarios',
11409
11393
  )
11410
11394
 
11411
11395
 
@@ -11692,7 +11676,7 @@ class UserGetMemoriesResponse(BaseModel):
11692
11676
  )
11693
11677
 
11694
11678
 
11695
- class UserSearchUsersResponseUserInstanceUserStats(BaseModel):
11679
+ class UserGetUsersResponseUserInstanceUserStats(BaseModel):
11696
11680
  num_conversations: int = Field(
11697
11681
  ...,
11698
11682
  description='The number of conversations the user has created.',
@@ -12157,7 +12141,7 @@ class GetConversationMessagesParametersQuery(BaseModel):
12157
12141
  [], description='The IDs of the messages to retrieve.', title='Id'
12158
12142
  )
12159
12143
  message_type: Optional[List[MessageType]] = Field(
12160
- ['external-event', 'user-message', 'agent-message'],
12144
+ ['user-message', 'agent-message', 'external-event'],
12161
12145
  description='The type of messages to retrieve.',
12162
12146
  title='Message Type',
12163
12147
  )
@@ -14107,7 +14091,7 @@ class ToolVersionInstance(BaseModel):
14107
14091
  description='The ID of the tool that this version belongs to.',
14108
14092
  title='Tool Id',
14109
14093
  )
14110
- version: AmigoLibMongoCollectionsToolVersionToolVersionVersion = Field(
14094
+ version: AmigoLibMongoCollectionsToolInvocationToolInvocationVersion = Field(
14111
14095
  ..., description='The version of the tool.'
14112
14096
  )
14113
14097
  required_envvars: List[str] = Field(
@@ -14735,37 +14719,24 @@ class RoleModifyRoleRequestPermissionGrant(BaseModel):
14735
14719
  description: Optional[AmigoLibPydanticBaseModelStrippedNonemptyString1] = None
14736
14720
 
14737
14721
 
14738
- class ServiceCreateServiceRequest(BaseModel):
14739
- service_hierarchical_state_machine_id: str = Field(
14740
- ...,
14741
- description='The ID of the state machine that this service uses.',
14742
- pattern='^[a-f0-9]{24}$',
14743
- title='Service Hierarchical State Machine Id',
14744
- )
14745
- agent_id: str = Field(
14722
+ class ServiceCreateServiceRequestVersionSet(BaseModel):
14723
+ agent_version_number: Optional[int] = Field(
14746
14724
  ...,
14747
- description='The ID of the agent that this service uses.',
14748
- pattern='^[a-f0-9]{24}$',
14749
- title='Agent Id',
14750
- )
14751
- name: str = Field(..., description='The name of this service.', min_length=1)
14752
- description: str = Field(
14753
- ..., description='A description of this service.', min_length=1
14725
+ description='The version number of the agent to be used. If None, the latest agent version will be used.',
14726
+ title='Agent Version Number',
14754
14727
  )
14755
- is_active: bool = Field(
14728
+ service_hierarchical_state_machine_version_number: Optional[int] = Field(
14756
14729
  ...,
14757
- 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.',
14758
- title='Is Active',
14759
- )
14760
- release_version_set: Optional[ServiceUpsertServiceVersionSetRequestVersionSet] = (
14761
- Field(
14762
- None,
14763
- 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.',
14764
- )
14765
- )
14766
- tags: Dict[str, Optional[StrippedNonemptyStringWS]] = Field(
14767
- ..., description='The tags of this service.', title='Tags'
14730
+ description='The version number of the state machine to be used. If None, the latest state machine version will be used.',
14731
+ title='Service Hierarchical State Machine Version Number',
14768
14732
  )
14733
+ llm_model_preferences: Dict[
14734
+ str,
14735
+ Union[
14736
+ ServiceCreateServiceRequestVersionSetLLMConfig,
14737
+ ServiceUpsertServiceVersionSetRequestVersionSetLLMLoadBalancingSetConfig,
14738
+ ],
14739
+ ] = Field(..., title='Llm Model Preferences')
14769
14740
 
14770
14741
 
14771
14742
  class ServiceGetServicesResponse(BaseModel):
@@ -14789,7 +14760,7 @@ class ServiceGetServicesResponse(BaseModel):
14789
14760
 
14790
14761
 
14791
14762
  class ServiceUpsertServiceVersionSetRequest(BaseModel):
14792
- version_set: ServiceUpsertServiceVersionSetRequestVersionSet = Field(
14763
+ version_set: ServiceCreateServiceRequestVersionSet = Field(
14793
14764
  ..., description='The version set to upsert.'
14794
14765
  )
14795
14766
 
@@ -14857,7 +14828,7 @@ class SimulationCreateSimulationUnitTestSetRequest(BaseModel):
14857
14828
 
14858
14829
  class SimulationGetSimulationPersonasResponse(BaseModel):
14859
14830
  simulation_personas: List[
14860
- SimulationGetSimulationPersonasResponseSimulationPersonaInstance
14831
+ SimulationSearchSimulationPersonasResponseSimulationPersonaInstance
14861
14832
  ] = Field(
14862
14833
  ..., description='The list of simulation personas.', title='Simulation Personas'
14863
14834
  )
@@ -14881,7 +14852,7 @@ class SimulationGetSimulationPersonasResponse(BaseModel):
14881
14852
 
14882
14853
  class SimulationGetSimulationScenariosResponse(BaseModel):
14883
14854
  simulation_scenarios: List[
14884
- SimulationSearchSimulationScenariosResponseSimulationScenarioInstance
14855
+ SimulationGetSimulationScenariosResponseSimulationScenarioInstance
14885
14856
  ] = Field(
14886
14857
  ...,
14887
14858
  description='The list of simulation scenarios.',
@@ -14929,13 +14900,11 @@ class SimulationGetSimulationUnitTestSetsResponse(BaseModel):
14929
14900
  )
14930
14901
 
14931
14902
 
14932
- class SimulationSearchSimulationScenariosResponse(BaseModel):
14933
- simulation_scenarios: List[
14934
- SimulationSearchSimulationScenariosResponseSimulationScenarioInstance
14903
+ class SimulationSearchSimulationPersonasResponse(BaseModel):
14904
+ simulation_personas: List[
14905
+ SimulationSearchSimulationPersonasResponseSimulationPersonaInstance
14935
14906
  ] = Field(
14936
- ...,
14937
- description='The list of simulation scenarios.',
14938
- title='Simulation Scenarios',
14907
+ ..., description='The list of simulation personas.', title='Simulation Personas'
14939
14908
  )
14940
14909
 
14941
14910
 
@@ -15070,7 +15039,7 @@ class UserGetUsersResponseUserInstance(BaseModel):
15070
15039
  ..., description='The last name of the user.', title='Last Name'
15071
15040
  )
15072
15041
  email: str = Field(..., description='Email of the user.', title='Email')
15073
- user_stats: UserSearchUsersResponseUserInstanceUserStats = Field(
15042
+ user_stats: UserGetUsersResponseUserInstanceUserStats = Field(
15074
15043
  ..., description="Statistics about the user's usage of the Amigo platform."
15075
15044
  )
15076
15045
  role: str = Field(..., description='The ID of the role of the user.', title='Role')
@@ -15937,6 +15906,37 @@ class RoleModifyRoleRequest(BaseModel):
15937
15906
  )
15938
15907
 
15939
15908
 
15909
+ class ServiceCreateServiceRequest(BaseModel):
15910
+ service_hierarchical_state_machine_id: str = Field(
15911
+ ...,
15912
+ description='The ID of the state machine that this service uses.',
15913
+ pattern='^[a-f0-9]{24}$',
15914
+ title='Service Hierarchical State Machine Id',
15915
+ )
15916
+ agent_id: str = Field(
15917
+ ...,
15918
+ description='The ID of the agent that this service uses.',
15919
+ pattern='^[a-f0-9]{24}$',
15920
+ title='Agent Id',
15921
+ )
15922
+ name: str = Field(..., description='The name of this service.', min_length=1)
15923
+ description: str = Field(
15924
+ ..., description='A description of this service.', min_length=1
15925
+ )
15926
+ is_active: bool = Field(
15927
+ ...,
15928
+ 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.',
15929
+ title='Is Active',
15930
+ )
15931
+ release_version_set: Optional[ServiceCreateServiceRequestVersionSet] = Field(
15932
+ None,
15933
+ 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.',
15934
+ )
15935
+ tags: Dict[str, Optional[StrippedNonemptyStringWS]] = Field(
15936
+ ..., description='The tags of this service.', title='Tags'
15937
+ )
15938
+
15939
+
15940
15940
  class SimulationCreateSimulationUnitTestRequest(BaseModel):
15941
15941
  name: str = Field(..., description='The name of the unit test.', min_length=1)
15942
15942
  description: str = Field(
@@ -16070,7 +16070,7 @@ class SimulationUpdateSimulationUnitTestRequest(BaseModel):
16070
16070
  )
16071
16071
 
16072
16072
 
16073
- class ToolSearchToolInvocationsResponseToolInvocationInstance(BaseModel):
16073
+ class ToolGetToolInvocationsResponseToolInvocationInstance(BaseModel):
16074
16074
  id: str = Field(..., description='The ID of the tool invocation.', title='Id')
16075
16075
  org_id: str = Field(..., description='The ID of the organization.', title='Org Id')
16076
16076
  created_at: Optional[AwareDatetime] = Field(None, title='Created At')
@@ -16092,11 +16092,19 @@ class ToolSearchToolInvocationsResponseToolInvocationInstance(BaseModel):
16092
16092
  tool_id: str = Field(
16093
16093
  ..., description='The ID of the tool that was invoked.', title='Tool Id'
16094
16094
  )
16095
- tool_version: AmigoLibMongoCollectionsToolVersionToolVersionVersion = Field(
16095
+ tool_version: AmigoLibMongoCollectionsToolInvocationToolInvocationVersion = Field(
16096
16096
  ..., description='The version of the tool that was invoked.'
16097
16097
  )
16098
16098
 
16099
16099
 
16100
+ class ToolSearchToolInvocationsResponse(BaseModel):
16101
+ tool_invocations: List[ToolGetToolInvocationsResponseToolInvocationInstance] = (
16102
+ Field(
16103
+ ..., description='The list of tool invocations.', title='Tool Invocations'
16104
+ )
16105
+ )
16106
+
16107
+
16100
16108
  class UserGetUsersResponse(BaseModel):
16101
16109
  users: List[UserGetUsersResponseUserInstance] = Field(
16102
16110
  ..., description='Users in this organization.', title='Users'
@@ -16210,7 +16218,7 @@ class SimulationGetSimulationUnitTestSetRunsResponse(BaseModel):
16210
16218
 
16211
16219
 
16212
16220
  class ToolGetToolInvocationsResponse(BaseModel):
16213
- tool_invocations: List[ToolSearchToolInvocationsResponseToolInvocationInstance] = (
16221
+ tool_invocations: List[ToolGetToolInvocationsResponseToolInvocationInstance] = (
16214
16222
  Field(
16215
16223
  ..., description='The list of tool invocations.', title='Tool Invocations'
16216
16224
  )
@@ -16225,11 +16233,3 @@ class ToolGetToolInvocationsResponse(BaseModel):
16225
16233
  description='The continuation token to retrieve the next page of tool invocations, or null if there are no more tool invocations.',
16226
16234
  title='Continuation Token',
16227
16235
  )
16228
-
16229
-
16230
- class ToolSearchToolInvocationsResponse(BaseModel):
16231
- tool_invocations: List[ToolSearchToolInvocationsResponseToolInvocationInstance] = (
16232
- Field(
16233
- ..., description='The list of tool invocations.', title='Tool Invocations'
16234
- )
16235
- )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amigo_sdk
3
- Version: 0.55.0
3
+ Version: 0.56.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=IG6Qmj2nLIQCnUCfNKaXlmxih-ugSz3u9upFXTLYm7U,139
1
+ amigo_sdk/__init__.py,sha256=xtAbVpLB9uTlaHYewA7p0IL8N4ezV9Zp5U2aZhJyM3A,139
2
2
  amigo_sdk/_retry_utils.py,sha256=kFjw9Wqye6MB5-B4rjLxsbSNcfYBIztcollIoncd1hY,2142
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=RkRyF5eAASd8fIOS6YvL9rLDvLAYWqHfpHSCR7jqvl4,4840
6
6
  amigo_sdk/http_client.py,sha256=v25UoUbXcMeHTnfJMcrl8RSSwCVkKUL1Jv-0HoXP1B4,13507
7
7
  amigo_sdk/models.py,sha256=V-G6iL43_ZNOPDcatCJCSszGWGz-nzp_RSyGNm-rBAc,45
8
8
  amigo_sdk/sdk_client.py,sha256=Kr9M9o66pOLu0T2VDvqdYMmPZzgKJyTELu7BSPgGrYQ,6152
9
- amigo_sdk/generated/model.py,sha256=B8_Bt7oMXBSLnAR4UbxqTYa1E2BGnAJCrey8DgAZiCg,452130
9
+ amigo_sdk/generated/model.py,sha256=wTpk82DBNBsA80bFikmOZMSqDNchZn7jBP7G4yca6hM,452101
10
10
  amigo_sdk/resources/conversation.py,sha256=5PkJOvLKqnriSS9K9hKw2VRPxRLTuABEbCyPy1fz1r0,14817
11
11
  amigo_sdk/resources/organization.py,sha256=yX4UlOHNegRzFW4gCJrCxjiLCAGnGegasjviR1yad_Q,1211
12
12
  amigo_sdk/resources/service.py,sha256=SiwEHXCQk4r1b_tGv47M08VuB7RALDHJQzWlpuD937g,1571
13
13
  amigo_sdk/resources/user.py,sha256=vZPCw8i-xvcDQik8ouJbm8qVHucRbfxCWI3yYMDj8hg,3517
14
- amigo_sdk-0.55.0.dist-info/METADATA,sha256=rtSXB_XNU3mLq74j62wNrqiRAceMlzl7peSF5d-Bf3k,8350
15
- amigo_sdk-0.55.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
16
- amigo_sdk-0.55.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
17
- amigo_sdk-0.55.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
18
- amigo_sdk-0.55.0.dist-info/RECORD,,
14
+ amigo_sdk-0.56.0.dist-info/METADATA,sha256=CW4oHaZjxktm4CfXSh361h-ByaiybHL46CEEuOzt_D4,8350
15
+ amigo_sdk-0.56.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
16
+ amigo_sdk-0.56.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
17
+ amigo_sdk-0.56.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
18
+ amigo_sdk-0.56.0.dist-info/RECORD,,