amigo_sdk 0.36.0__py3-none-any.whl → 0.37.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.

Potentially problematic release.


This version of amigo_sdk might be problematic. Click here for more details.

amigo_sdk/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- __version__ = "0.36.0"
1
+ __version__ = "0.37.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-10-02T02:40:25+00:00
3
+ # timestamp: 2025-10-02T15:05:02+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
@@ -240,7 +240,7 @@ class EngageUserDynamicBehaviorOverrideEvent(BaseModel):
240
240
  )
241
241
 
242
242
 
243
- class EngageUserInvocationMetadataInput(BaseModel):
243
+ class EngageUserInvocationMetadata(BaseModel):
244
244
  type: Literal['engage-user'] = Field('engage-user', title='Type')
245
245
  current_state_machine_and_version: List = Field(
246
246
  ...,
@@ -256,9 +256,6 @@ class EngageUserInvocationMetadataInput(BaseModel):
256
256
  )
257
257
 
258
258
 
259
- EngageUserInvocationMetadataOutput = EngageUserInvocationMetadataInput
260
-
261
-
262
259
  class EngageUserMessageFragmentGeneratedEvent(BaseModel):
263
260
  type: Literal['engage-user-message-fragment-generated'] = Field(
264
261
  'engage-user-message-fragment-generated', title='Type'
@@ -8871,24 +8868,6 @@ class ReflectionStateOutputNextState(AnnotationStateOutputNextState):
8871
8868
  pass
8872
8869
 
8873
8870
 
8874
- class RegularConversationInvocationSourceInputConversationId(RootModel[str]):
8875
- root: str = Field(
8876
- ...,
8877
- description='The ID of the conversation where the tool was invoked. This conversation might not actually exist if later in the call the conversation is rolled back.',
8878
- pattern='^[a-f0-9]{24}$',
8879
- title='Conversation Id',
8880
- )
8881
-
8882
-
8883
- class RegularConversationInvocationSourceInputInteractionId(RootModel[str]):
8884
- root: str = Field(
8885
- ...,
8886
- description='The ID of the interaction where the tool was invoked. This interaction might not actually exist if later in the call the interaction is rolled back.',
8887
- pattern='^[a-f0-9]{24}$',
8888
- title='Interaction Id',
8889
- )
8890
-
8891
-
8892
8871
  class RelationshipToDeveloperOutput(BaseModel):
8893
8872
  ownership: str = Field(
8894
8873
  ...,
@@ -9018,18 +8997,6 @@ class SideEffectStateTransitionLog(BaseModel):
9018
8997
  )
9019
8998
 
9020
8999
 
9021
- class SimulationConversationInvocationSourceInputSimulationUnitTestSetRunId(
9022
- RootModel[str]
9023
- ):
9024
- root: str = Field(
9025
- ..., pattern='^[a-f0-9]{24}$', title='Simulation Unit Test Set Run Id'
9026
- )
9027
-
9028
-
9029
- class SimulationConversationInvocationSourceInputUnitTestId(RootModel[str]):
9030
- root: str = Field(..., pattern='^[a-f0-9]{24}$', title='Unit Test Id')
9031
-
9032
-
9033
9000
  class SimulationEvaluationSource(BaseModel):
9034
9001
  type: Literal['simulation'] = Field('simulation', title='Type')
9035
9002
  simulation_unit_test_set_run_id: str = Field(
@@ -9100,7 +9067,7 @@ class StateOrRefName(RootModel[str]):
9100
9067
  root: str = Field(..., pattern='^[A-Za-z0-9_]+$')
9101
9068
 
9102
9069
 
9103
- class StateTransitionInvocationMetadataInput(BaseModel):
9070
+ class StateTransitionInvocationMetadata(BaseModel):
9104
9071
  type: Literal['state-transition'] = Field('state-transition', title='Type')
9105
9072
  current_state_machine_and_version: List = Field(
9106
9073
  ...,
@@ -9126,9 +9093,6 @@ class StateTransitionInvocationMetadataInput(BaseModel):
9126
9093
  )
9127
9094
 
9128
9095
 
9129
- StateTransitionInvocationMetadataOutput = StateTransitionInvocationMetadataInput
9130
-
9131
-
9132
9096
  class StrippedNonemptyStringWS(RootModel[str]):
9133
9097
  root: str = Field(..., min_length=1, pattern='^[\\w\\s]+$')
9134
9098
 
@@ -11875,7 +11839,7 @@ class GetConversationMessagesParametersQuery(BaseModel):
11875
11839
  [], description='The IDs of the messages to retrieve.', title='Id'
11876
11840
  )
11877
11841
  message_type: Optional[List[MessageType]] = Field(
11878
- ['external-event', 'agent-message', 'user-message'],
11842
+ ['agent-message', 'external-event', 'user-message'],
11879
11843
  description='The type of messages to retrieve.',
11880
11844
  title='Message Type',
11881
11845
  )
@@ -13077,6 +13041,11 @@ class GetToolInvocationsParametersQueryToolIdItem(
13077
13041
  pass
13078
13042
 
13079
13043
 
13044
+ class GetToolInvocationsParametersQueryInvocationSourceTypeEnum(Enum):
13045
+ regular_conversation = 'regular-conversation'
13046
+ simulation_conversation = 'simulation-conversation'
13047
+
13048
+
13080
13049
  class GetToolInvocationsParametersQueryConversationIdItem(
13081
13050
  DynamicBehaviorSetCreateDynamicBehaviorSetRequestAppliedToService
13082
13051
  ):
@@ -13089,6 +13058,56 @@ class GetToolInvocationsParametersQuerySimulationUnitTestSetRunIdItem(
13089
13058
  pass
13090
13059
 
13091
13060
 
13061
+ class GetToolInvocationsParametersQuery(BaseModel):
13062
+ tool_id: Optional[List[GetToolInvocationsParametersQueryToolIdItem]] = Field(
13063
+ [], description='The ID of the tool to get invocations for.', title='Tool Id'
13064
+ )
13065
+ version: Optional[List[str]] = Field(
13066
+ [],
13067
+ description='A list of semver constraint that specifies the version to retrieve in the [Python packaging specification](https://packaging.python.org/en/latest/specifications/version-specifiers/#id5). This must be the exact same length as `tool_id`, and each entry corresponds to the tool ID at the same index.',
13068
+ title='Version',
13069
+ )
13070
+ invocation_source_type: Optional[
13071
+ List[GetToolInvocationsParametersQueryInvocationSourceTypeEnum]
13072
+ ] = Field(
13073
+ [], description='The source of the invocation', title='Invocation Source Type'
13074
+ )
13075
+ conversation_id: Optional[
13076
+ List[GetToolInvocationsParametersQueryConversationIdItem]
13077
+ ] = Field(
13078
+ [],
13079
+ description="The conversation ID associated with the invocation if it's of invocation source `regular-conversation`",
13080
+ title='Conversation Id',
13081
+ )
13082
+ simulation_unit_test_set_run_id: Optional[
13083
+ List[GetToolInvocationsParametersQuerySimulationUnitTestSetRunIdItem]
13084
+ ] = Field(
13085
+ [],
13086
+ description="The simulation unit test set run ID associated with the invocation if it's of invocation source `simulation-conversation`",
13087
+ title='Simulation Unit Test Set Run Id',
13088
+ )
13089
+ succeeded: Optional[bool] = Field(
13090
+ None, description='Whether the invocation succeeded', title='Succeeded'
13091
+ )
13092
+ limit: Optional[int] = Field(
13093
+ 100,
13094
+ description='The maximum number of tool invocations to return.',
13095
+ ge=0,
13096
+ le=100,
13097
+ title='Limit',
13098
+ )
13099
+ continuation_token: Optional[int] = Field(
13100
+ 0,
13101
+ description='The continuation token from the previous request used to retrieve the next page of tool invocations.',
13102
+ title='Continuation Token',
13103
+ )
13104
+ sort_by: Optional[List[str]] = Field(
13105
+ [],
13106
+ description='The fields to sort the versions by. Supported fields are `created_at`, `version.major`, `version.minor`, `version.patch`, `tool_id`, `invocation_source.type`, and `invocation_status.succeeded`. Specify a `+` before the field name to indicate ascending sorting and `-` for descending sorting. Multiple fields can be specified to break ties.',
13107
+ title='Sort By',
13108
+ )
13109
+
13110
+
13092
13111
  class SearchToolInvocationsParametersQueryQueryAgainstEnum(Enum):
13093
13112
  invocation_status_exception_message = 'invocation_status.exception_message'
13094
13113
  invocation_status_exception_type = 'invocation_status.exception_type'
@@ -13114,6 +13133,41 @@ class SearchToolInvocationsParametersQuerySimulationUnitTestSetRunIdItem(
13114
13133
  pass
13115
13134
 
13116
13135
 
13136
+ class SearchToolInvocationsParametersQuery(BaseModel):
13137
+ query: str = Field(..., description='The search query.', title='Query')
13138
+ query_against: List[SearchToolInvocationsParametersQueryQueryAgainstEnum] = Field(
13139
+ ...,
13140
+ description='The fields to query against. By default, all supported fields are queried against.',
13141
+ min_length=1,
13142
+ title='Query Against',
13143
+ )
13144
+ tool_id: Optional[List[SearchToolInvocationsParametersQueryToolIdItem]] = Field(
13145
+ [], description='The ID of the tool to get invocations for.', title='Tool Id'
13146
+ )
13147
+ invocation_source_type: Optional[
13148
+ List[GetToolInvocationsParametersQueryInvocationSourceTypeEnum]
13149
+ ] = Field(
13150
+ [], description='The source of the invocation', title='Invocation Source Type'
13151
+ )
13152
+ conversation_id: Optional[
13153
+ List[SearchToolInvocationsParametersQueryConversationIdItem]
13154
+ ] = Field(
13155
+ [],
13156
+ description="The conversation ID associated with the invocation if it's of invocation source `regular-conversation`",
13157
+ title='Conversation Id',
13158
+ )
13159
+ simulation_unit_test_set_run_id: Optional[
13160
+ List[SearchToolInvocationsParametersQuerySimulationUnitTestSetRunIdItem]
13161
+ ] = Field(
13162
+ [],
13163
+ description="The simulation unit test set run ID associated with the invocation if it's of invocation source `simulation-conversation`",
13164
+ title='Simulation Unit Test Set Run Id',
13165
+ )
13166
+ succeeded: Optional[bool] = Field(
13167
+ None, description='Whether the invocation succeeded', title='Succeeded'
13168
+ )
13169
+
13170
+
13117
13171
  class APIKey(BaseModel):
13118
13172
  field_id: str = Field(
13119
13173
  ..., alias='_id', description='The ID of the document.', title='Id'
@@ -13608,33 +13662,7 @@ class ReflectionStateTransitionLog(BaseModel):
13608
13662
  )
13609
13663
 
13610
13664
 
13611
- class RegularConversationInvocationSourceInput(BaseModel):
13612
- type: Literal['regular-conversation'] = Field('regular-conversation', title='Type')
13613
- user_id: str = Field(
13614
- ...,
13615
- description='The ID of the user whose conversation invoked the tool.',
13616
- title='User Id',
13617
- )
13618
- conversation_id: Optional[
13619
- RegularConversationInvocationSourceInputConversationId
13620
- ] = Field(
13621
- ...,
13622
- description='The ID of the conversation where the tool was invoked. This conversation might not actually exist if later in the call the conversation is rolled back.',
13623
- title='Conversation Id',
13624
- )
13625
- interaction_id: Optional[RegularConversationInvocationSourceInputInteractionId] = (
13626
- Field(
13627
- ...,
13628
- description='The ID of the interaction where the tool was invoked. This interaction might not actually exist if later in the call the interaction is rolled back.',
13629
- title='Interaction Id',
13630
- )
13631
- )
13632
- invocation_metadata: Union[
13633
- StateTransitionInvocationMetadataInput, EngageUserInvocationMetadataInput
13634
- ] = Field(..., description='Metadata about the invocation.', discriminator='type')
13635
-
13636
-
13637
- class RegularConversationInvocationSourceOutput(BaseModel):
13665
+ class RegularConversationInvocationSource(BaseModel):
13638
13666
  type: Literal['regular-conversation'] = Field('regular-conversation', title='Type')
13639
13667
  user_id: str = Field(
13640
13668
  ...,
@@ -13652,7 +13680,7 @@ class RegularConversationInvocationSourceOutput(BaseModel):
13652
13680
  title='Interaction Id',
13653
13681
  )
13654
13682
  invocation_metadata: Union[
13655
- StateTransitionInvocationMetadataOutput, EngageUserInvocationMetadataOutput
13683
+ StateTransitionInvocationMetadata, EngageUserInvocationMetadata
13656
13684
  ] = Field(..., description='Metadata about the invocation.', discriminator='type')
13657
13685
 
13658
13686
 
@@ -13690,23 +13718,7 @@ class RoleInstance(BaseModel):
13690
13718
  )
13691
13719
 
13692
13720
 
13693
- class SimulationConversationInvocationSourceInput(BaseModel):
13694
- type: Literal['simulation-conversation'] = Field(
13695
- 'simulation-conversation', title='Type'
13696
- )
13697
- simulation_unit_test_set_run_id: Optional[
13698
- SimulationConversationInvocationSourceInputSimulationUnitTestSetRunId
13699
- ] = Field(..., title='Simulation Unit Test Set Run Id')
13700
- unit_test_id: Optional[SimulationConversationInvocationSourceInputUnitTestId] = (
13701
- Field(..., title='Unit Test Id')
13702
- )
13703
- run_index: Optional[int] = Field(..., title='Run Index')
13704
- invocation_metadata: Union[
13705
- StateTransitionInvocationMetadataInput, EngageUserInvocationMetadataInput
13706
- ] = Field(..., description='Metadata about the invocation.', discriminator='type')
13707
-
13708
-
13709
- class SimulationConversationInvocationSourceOutput(BaseModel):
13721
+ class SimulationConversationInvocationSource(BaseModel):
13710
13722
  type: Literal['simulation-conversation'] = Field(
13711
13723
  'simulation-conversation', title='Type'
13712
13724
  )
@@ -13716,7 +13728,7 @@ class SimulationConversationInvocationSourceOutput(BaseModel):
13716
13728
  unit_test_id: Optional[str] = Field(..., title='Unit Test Id')
13717
13729
  run_index: Optional[int] = Field(..., title='Run Index')
13718
13730
  invocation_metadata: Union[
13719
- StateTransitionInvocationMetadataOutput, EngageUserInvocationMetadataOutput
13731
+ StateTransitionInvocationMetadata, EngageUserInvocationMetadata
13720
13732
  ] = Field(..., description='Metadata about the invocation.', discriminator='type')
13721
13733
 
13722
13734
 
@@ -15293,8 +15305,7 @@ class ToolInvocationInstance(BaseModel):
15293
15305
  ..., description='The status of the tool invocation.', discriminator='succeeded'
15294
15306
  )
15295
15307
  invocation_source: Union[
15296
- RegularConversationInvocationSourceOutput,
15297
- SimulationConversationInvocationSourceOutput,
15308
+ RegularConversationInvocationSource, SimulationConversationInvocationSource
15298
15309
  ] = Field(
15299
15310
  ..., description='The source of the tool invocation.', discriminator='type'
15300
15311
  )
@@ -15755,101 +15766,6 @@ class ToolSearchToolInvocationsResponse(BaseModel):
15755
15766
  )
15756
15767
 
15757
15768
 
15758
- class GetToolInvocationsParametersQuery(BaseModel):
15759
- tool_id: Optional[List[GetToolInvocationsParametersQueryToolIdItem]] = Field(
15760
- [], description='The ID of the tool to get invocations for.', title='Tool Id'
15761
- )
15762
- version: Optional[List[Optional[str]]] = Field(
15763
- [],
15764
- description='A list of semver constraint that specifies the version to retrieve in the [Python packaging specification](https://packaging.python.org/en/latest/specifications/version-specifiers/#id5). This must be the exact same length as `tool_id`, and each entry corresponds to the tool ID at the same index. If an entry is null, all versions of the corresponding tool are retrieved.',
15765
- title='Version',
15766
- )
15767
- invocation_source_type: Optional[
15768
- List[
15769
- Union[
15770
- RegularConversationInvocationSourceInput,
15771
- SimulationConversationInvocationSourceInput,
15772
- ]
15773
- ]
15774
- ] = Field(
15775
- [], description='The source of the invocation', title='Invocation Source Type'
15776
- )
15777
- conversation_id: Optional[
15778
- List[GetToolInvocationsParametersQueryConversationIdItem]
15779
- ] = Field(
15780
- [],
15781
- description="The conversation ID associated with the invocation if it's of invocation source `regular-conversation`",
15782
- title='Conversation Id',
15783
- )
15784
- simulation_unit_test_set_run_id: Optional[
15785
- List[GetToolInvocationsParametersQuerySimulationUnitTestSetRunIdItem]
15786
- ] = Field(
15787
- [],
15788
- description="The simulation unit test set run ID associated with the invocation if it's of invocation source `simulation-conversation`",
15789
- title='Simulation Unit Test Set Run Id',
15790
- )
15791
- succeeded: Optional[bool] = Field(
15792
- None, description='Whether the invocation succeeded', title='Succeeded'
15793
- )
15794
- limit: Optional[int] = Field(
15795
- 100,
15796
- description='The maximum number of tool invocations to return.',
15797
- ge=0,
15798
- le=100,
15799
- title='Limit',
15800
- )
15801
- continuation_token: Optional[int] = Field(
15802
- 0,
15803
- description='The continuation token from the previous request used to retrieve the next page of tool invocations.',
15804
- title='Continuation Token',
15805
- )
15806
- sort_by: Optional[List[str]] = Field(
15807
- [],
15808
- description='The fields to sort the versions by. Supported fields are `created_at`, `version.major`, `version.minor`, `version.patch`, `tool_id`, `invocation_source.type`, and `invocation_status.succeeded`. Specify a `+` before the field name to indicate ascending sorting and `-` for descending sorting. Multiple fields can be specified to break ties.',
15809
- title='Sort By',
15810
- )
15811
-
15812
-
15813
- class SearchToolInvocationsParametersQuery(BaseModel):
15814
- query: str = Field(..., description='The search query.', title='Query')
15815
- query_against: List[SearchToolInvocationsParametersQueryQueryAgainstEnum] = Field(
15816
- ...,
15817
- description='The fields to query against. By default, all supported fields are queried against.',
15818
- min_length=1,
15819
- title='Query Against',
15820
- )
15821
- tool_id: Optional[List[SearchToolInvocationsParametersQueryToolIdItem]] = Field(
15822
- [], description='The ID of the tool to get invocations for.', title='Tool Id'
15823
- )
15824
- invocation_source_type: Optional[
15825
- List[
15826
- Union[
15827
- RegularConversationInvocationSourceInput,
15828
- SimulationConversationInvocationSourceInput,
15829
- ]
15830
- ]
15831
- ] = Field(
15832
- [], description='The source of the invocation', title='Invocation Source Type'
15833
- )
15834
- conversation_id: Optional[
15835
- List[SearchToolInvocationsParametersQueryConversationIdItem]
15836
- ] = Field(
15837
- [],
15838
- description="The conversation ID associated with the invocation if it's of invocation source `regular-conversation`",
15839
- title='Conversation Id',
15840
- )
15841
- simulation_unit_test_set_run_id: Optional[
15842
- List[SearchToolInvocationsParametersQuerySimulationUnitTestSetRunIdItem]
15843
- ] = Field(
15844
- [],
15845
- description="The simulation unit test set run ID associated with the invocation if it's of invocation source `simulation-conversation`",
15846
- title='Simulation Unit Test Set Run Id',
15847
- )
15848
- succeeded: Optional[bool] = Field(
15849
- None, description='Whether the invocation succeeded', title='Succeeded'
15850
- )
15851
-
15852
-
15853
15769
  class SimulationUnitTest(BaseModel):
15854
15770
  field_id: str = Field(
15855
15771
  ..., alias='_id', description='The ID of the document.', title='Id'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amigo_sdk
3
- Version: 0.36.0
3
+ Version: 0.37.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=TB9w73-cvjBX_Mt1CSVwihd37z3iIjDbMXSELcaUxr0,139
1
+ amigo_sdk/__init__.py,sha256=SGoql7Zo7Kzvbv-zVkpkOVTxvbUKaTB8UEX3KQAOxuY,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=cr8-tGnCcFR5uODc0Y7-RTI9hd98vjW3eH3VB64b_9g,442041
9
+ amigo_sdk/generated/model.py,sha256=x4oSGAErmmOcVwfxDqQ59Eze7uw38rhh4YQhkt6C66s,438683
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=i4t5aVzBI37KwAtLKSDWTMwf4D4KQdSDoUiblFe1u7o,3529
14
- amigo_sdk-0.36.0.dist-info/METADATA,sha256=8Ef8FFXf8prskcl98v5gg6SjUpcZzZCN7O1bod3h3ZQ,8350
15
- amigo_sdk-0.36.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
16
- amigo_sdk-0.36.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
17
- amigo_sdk-0.36.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
18
- amigo_sdk-0.36.0.dist-info/RECORD,,
14
+ amigo_sdk-0.37.0.dist-info/METADATA,sha256=LOP9t58u1u921IQue8nwyMNpUYYWnDu1MoDcMNFO67M,8350
15
+ amigo_sdk-0.37.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
16
+ amigo_sdk-0.37.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
17
+ amigo_sdk-0.37.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
18
+ amigo_sdk-0.37.0.dist-info/RECORD,,