amigo_sdk 0.35.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 +1 -1
- amigo_sdk/generated/model.py +127 -140
- {amigo_sdk-0.35.0.dist-info → amigo_sdk-0.37.0.dist-info}/METADATA +1 -1
- {amigo_sdk-0.35.0.dist-info → amigo_sdk-0.37.0.dist-info}/RECORD +7 -7
- {amigo_sdk-0.35.0.dist-info → amigo_sdk-0.37.0.dist-info}/WHEEL +0 -0
- {amigo_sdk-0.35.0.dist-info → amigo_sdk-0.37.0.dist-info}/entry_points.txt +0 -0
- {amigo_sdk-0.35.0.dist-info → amigo_sdk-0.37.0.dist-info}/licenses/LICENSE +0 -0
amigo_sdk/__init__.py
CHANGED
amigo_sdk/generated/model.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: <stdin>
|
|
3
|
-
# timestamp: 2025-10-
|
|
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
|
|
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
|
|
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
|
-
['
|
|
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,116 @@ 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
|
+
|
|
13111
|
+
class SearchToolInvocationsParametersQueryQueryAgainstEnum(Enum):
|
|
13112
|
+
invocation_status_exception_message = 'invocation_status.exception_message'
|
|
13113
|
+
invocation_status_exception_type = 'invocation_status.exception_type'
|
|
13114
|
+
invocation_status_exception_stack_trace = 'invocation_status.exception_stack_trace'
|
|
13115
|
+
invocation_status_output = 'invocation_status.output'
|
|
13116
|
+
|
|
13117
|
+
|
|
13118
|
+
class SearchToolInvocationsParametersQueryToolIdItem(
|
|
13119
|
+
DynamicBehaviorSetCreateDynamicBehaviorSetRequestAppliedToService
|
|
13120
|
+
):
|
|
13121
|
+
pass
|
|
13122
|
+
|
|
13123
|
+
|
|
13124
|
+
class SearchToolInvocationsParametersQueryConversationIdItem(
|
|
13125
|
+
DynamicBehaviorSetCreateDynamicBehaviorSetRequestAppliedToService
|
|
13126
|
+
):
|
|
13127
|
+
pass
|
|
13128
|
+
|
|
13129
|
+
|
|
13130
|
+
class SearchToolInvocationsParametersQuerySimulationUnitTestSetRunIdItem(
|
|
13131
|
+
DynamicBehaviorSetCreateDynamicBehaviorSetRequestAppliedToService
|
|
13132
|
+
):
|
|
13133
|
+
pass
|
|
13134
|
+
|
|
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
|
+
|
|
13092
13171
|
class APIKey(BaseModel):
|
|
13093
13172
|
field_id: str = Field(
|
|
13094
13173
|
..., alias='_id', description='The ID of the document.', title='Id'
|
|
@@ -13583,33 +13662,7 @@ class ReflectionStateTransitionLog(BaseModel):
|
|
|
13583
13662
|
)
|
|
13584
13663
|
|
|
13585
13664
|
|
|
13586
|
-
class
|
|
13587
|
-
type: Literal['regular-conversation'] = Field('regular-conversation', title='Type')
|
|
13588
|
-
user_id: str = Field(
|
|
13589
|
-
...,
|
|
13590
|
-
description='The ID of the user whose conversation invoked the tool.',
|
|
13591
|
-
title='User Id',
|
|
13592
|
-
)
|
|
13593
|
-
conversation_id: Optional[
|
|
13594
|
-
RegularConversationInvocationSourceInputConversationId
|
|
13595
|
-
] = Field(
|
|
13596
|
-
...,
|
|
13597
|
-
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.',
|
|
13598
|
-
title='Conversation Id',
|
|
13599
|
-
)
|
|
13600
|
-
interaction_id: Optional[RegularConversationInvocationSourceInputInteractionId] = (
|
|
13601
|
-
Field(
|
|
13602
|
-
...,
|
|
13603
|
-
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.',
|
|
13604
|
-
title='Interaction Id',
|
|
13605
|
-
)
|
|
13606
|
-
)
|
|
13607
|
-
invocation_metadata: Union[
|
|
13608
|
-
StateTransitionInvocationMetadataInput, EngageUserInvocationMetadataInput
|
|
13609
|
-
] = Field(..., description='Metadata about the invocation.', discriminator='type')
|
|
13610
|
-
|
|
13611
|
-
|
|
13612
|
-
class RegularConversationInvocationSourceOutput(BaseModel):
|
|
13665
|
+
class RegularConversationInvocationSource(BaseModel):
|
|
13613
13666
|
type: Literal['regular-conversation'] = Field('regular-conversation', title='Type')
|
|
13614
13667
|
user_id: str = Field(
|
|
13615
13668
|
...,
|
|
@@ -13627,7 +13680,7 @@ class RegularConversationInvocationSourceOutput(BaseModel):
|
|
|
13627
13680
|
title='Interaction Id',
|
|
13628
13681
|
)
|
|
13629
13682
|
invocation_metadata: Union[
|
|
13630
|
-
|
|
13683
|
+
StateTransitionInvocationMetadata, EngageUserInvocationMetadata
|
|
13631
13684
|
] = Field(..., description='Metadata about the invocation.', discriminator='type')
|
|
13632
13685
|
|
|
13633
13686
|
|
|
@@ -13665,23 +13718,7 @@ class RoleInstance(BaseModel):
|
|
|
13665
13718
|
)
|
|
13666
13719
|
|
|
13667
13720
|
|
|
13668
|
-
class
|
|
13669
|
-
type: Literal['simulation-conversation'] = Field(
|
|
13670
|
-
'simulation-conversation', title='Type'
|
|
13671
|
-
)
|
|
13672
|
-
simulation_unit_test_set_run_id: Optional[
|
|
13673
|
-
SimulationConversationInvocationSourceInputSimulationUnitTestSetRunId
|
|
13674
|
-
] = Field(..., title='Simulation Unit Test Set Run Id')
|
|
13675
|
-
unit_test_id: Optional[SimulationConversationInvocationSourceInputUnitTestId] = (
|
|
13676
|
-
Field(..., title='Unit Test Id')
|
|
13677
|
-
)
|
|
13678
|
-
run_index: Optional[int] = Field(..., title='Run Index')
|
|
13679
|
-
invocation_metadata: Union[
|
|
13680
|
-
StateTransitionInvocationMetadataInput, EngageUserInvocationMetadataInput
|
|
13681
|
-
] = Field(..., description='Metadata about the invocation.', discriminator='type')
|
|
13682
|
-
|
|
13683
|
-
|
|
13684
|
-
class SimulationConversationInvocationSourceOutput(BaseModel):
|
|
13721
|
+
class SimulationConversationInvocationSource(BaseModel):
|
|
13685
13722
|
type: Literal['simulation-conversation'] = Field(
|
|
13686
13723
|
'simulation-conversation', title='Type'
|
|
13687
13724
|
)
|
|
@@ -13691,7 +13728,7 @@ class SimulationConversationInvocationSourceOutput(BaseModel):
|
|
|
13691
13728
|
unit_test_id: Optional[str] = Field(..., title='Unit Test Id')
|
|
13692
13729
|
run_index: Optional[int] = Field(..., title='Run Index')
|
|
13693
13730
|
invocation_metadata: Union[
|
|
13694
|
-
|
|
13731
|
+
StateTransitionInvocationMetadata, EngageUserInvocationMetadata
|
|
13695
13732
|
] = Field(..., description='Metadata about the invocation.', discriminator='type')
|
|
13696
13733
|
|
|
13697
13734
|
|
|
@@ -15268,8 +15305,7 @@ class ToolInvocationInstance(BaseModel):
|
|
|
15268
15305
|
..., description='The status of the tool invocation.', discriminator='succeeded'
|
|
15269
15306
|
)
|
|
15270
15307
|
invocation_source: Union[
|
|
15271
|
-
|
|
15272
|
-
SimulationConversationInvocationSourceOutput,
|
|
15308
|
+
RegularConversationInvocationSource, SimulationConversationInvocationSource
|
|
15273
15309
|
] = Field(
|
|
15274
15310
|
..., description='The source of the tool invocation.', discriminator='type'
|
|
15275
15311
|
)
|
|
@@ -15724,58 +15760,9 @@ class ToolGetToolInvocationsResponse(BaseModel):
|
|
|
15724
15760
|
)
|
|
15725
15761
|
|
|
15726
15762
|
|
|
15727
|
-
class
|
|
15728
|
-
|
|
15729
|
-
|
|
15730
|
-
)
|
|
15731
|
-
version: Optional[List[Optional[str]]] = Field(
|
|
15732
|
-
[],
|
|
15733
|
-
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.',
|
|
15734
|
-
title='Version',
|
|
15735
|
-
)
|
|
15736
|
-
invocation_source_type: Optional[
|
|
15737
|
-
List[
|
|
15738
|
-
Union[
|
|
15739
|
-
RegularConversationInvocationSourceInput,
|
|
15740
|
-
SimulationConversationInvocationSourceInput,
|
|
15741
|
-
]
|
|
15742
|
-
]
|
|
15743
|
-
] = Field(
|
|
15744
|
-
[], description='The source of the invocation', title='Invocation Source Type'
|
|
15745
|
-
)
|
|
15746
|
-
conversation_id: Optional[
|
|
15747
|
-
List[GetToolInvocationsParametersQueryConversationIdItem]
|
|
15748
|
-
] = Field(
|
|
15749
|
-
[],
|
|
15750
|
-
description="The conversation ID associated with the invocation if it's of invocation source `regular-conversation`",
|
|
15751
|
-
title='Conversation Id',
|
|
15752
|
-
)
|
|
15753
|
-
simulation_unit_test_set_run_id: Optional[
|
|
15754
|
-
List[GetToolInvocationsParametersQuerySimulationUnitTestSetRunIdItem]
|
|
15755
|
-
] = Field(
|
|
15756
|
-
[],
|
|
15757
|
-
description="The simulation unit test set run ID associated with the invocation if it's of invocation source `simulation-conversation`",
|
|
15758
|
-
title='Simulation Unit Test Set Run Id',
|
|
15759
|
-
)
|
|
15760
|
-
succeeded: Optional[bool] = Field(
|
|
15761
|
-
None, description='Whether the invocation succeeded', title='Succeeded'
|
|
15762
|
-
)
|
|
15763
|
-
limit: Optional[int] = Field(
|
|
15764
|
-
100,
|
|
15765
|
-
description='The maximum number of tool invocations to return.',
|
|
15766
|
-
ge=0,
|
|
15767
|
-
le=100,
|
|
15768
|
-
title='Limit',
|
|
15769
|
-
)
|
|
15770
|
-
continuation_token: Optional[int] = Field(
|
|
15771
|
-
0,
|
|
15772
|
-
description='The continuation token from the previous request used to retrieve the next page of tool invocations.',
|
|
15773
|
-
title='Continuation Token',
|
|
15774
|
-
)
|
|
15775
|
-
sort_by: Optional[List[str]] = Field(
|
|
15776
|
-
[],
|
|
15777
|
-
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.',
|
|
15778
|
-
title='Sort By',
|
|
15763
|
+
class ToolSearchToolInvocationsResponse(BaseModel):
|
|
15764
|
+
tool_invocations: List[ToolInvocationInstance] = Field(
|
|
15765
|
+
..., description='The list of tool invocations.', title='Tool Invocations'
|
|
15779
15766
|
)
|
|
15780
15767
|
|
|
15781
15768
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
amigo_sdk/__init__.py,sha256=
|
|
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=
|
|
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.
|
|
15
|
-
amigo_sdk-0.
|
|
16
|
-
amigo_sdk-0.
|
|
17
|
-
amigo_sdk-0.
|
|
18
|
-
amigo_sdk-0.
|
|
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,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|