amigo_sdk 0.81.0__py3-none-any.whl → 0.83.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 +1 -1
- amigo_sdk/generated/model.py +135 -137
- {amigo_sdk-0.81.0.dist-info → amigo_sdk-0.83.0.dist-info}/METADATA +1 -1
- {amigo_sdk-0.81.0.dist-info → amigo_sdk-0.83.0.dist-info}/RECORD +7 -7
- {amigo_sdk-0.81.0.dist-info → amigo_sdk-0.83.0.dist-info}/WHEEL +0 -0
- {amigo_sdk-0.81.0.dist-info → amigo_sdk-0.83.0.dist-info}/entry_points.txt +0 -0
- {amigo_sdk-0.81.0.dist-info → amigo_sdk-0.83.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-12-
|
|
3
|
+
# timestamp: 2025-12-08T21:06:36+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
@@ -10743,13 +10743,6 @@ class OrganizationCreateOrganizationRequestPreferences(BaseModel):
|
|
|
10743
10743
|
)
|
|
10744
10744
|
|
|
10745
10745
|
|
|
10746
|
-
class OrganizationCreateOrganizationRequestUserDimension(BaseModel):
|
|
10747
|
-
description: str = Field(..., min_length=1)
|
|
10748
|
-
tags: List[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
|
|
10749
|
-
..., title='Tags'
|
|
10750
|
-
)
|
|
10751
|
-
|
|
10752
|
-
|
|
10753
10746
|
class OrganizationCreateOrganizationResponse(BaseModel):
|
|
10754
10747
|
org_id: str = Field(
|
|
10755
10748
|
...,
|
|
@@ -10773,19 +10766,19 @@ class OrganizationCreateServiceHierarchicalStateMachineResponse(BaseModel):
|
|
|
10773
10766
|
)
|
|
10774
10767
|
|
|
10775
10768
|
|
|
10776
|
-
class
|
|
10769
|
+
class OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitConditionNextState(
|
|
10777
10770
|
AnnotationStateInputNextState
|
|
10778
10771
|
):
|
|
10779
10772
|
pass
|
|
10780
10773
|
|
|
10781
10774
|
|
|
10782
|
-
class
|
|
10775
|
+
class OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitCondition(
|
|
10783
10776
|
BaseModel
|
|
10784
10777
|
):
|
|
10785
10778
|
description: str = Field(..., min_length=1)
|
|
10786
10779
|
next_state: Union[
|
|
10787
10780
|
StateOrRefName,
|
|
10788
|
-
|
|
10781
|
+
OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitConditionNextState,
|
|
10789
10782
|
] = Field(..., title='Next State')
|
|
10790
10783
|
|
|
10791
10784
|
|
|
@@ -10891,22 +10884,18 @@ class OrganizationGetUserDimensionsResponse(BaseModel):
|
|
|
10891
10884
|
)
|
|
10892
10885
|
|
|
10893
10886
|
|
|
10894
|
-
class OrganizationModifyOrganizationRequestUserDimensions(
|
|
10895
|
-
RootModel[List[OrganizationCreateOrganizationRequestUserDimension]]
|
|
10896
|
-
):
|
|
10897
|
-
root: List[OrganizationCreateOrganizationRequestUserDimension] = Field(
|
|
10898
|
-
...,
|
|
10899
|
-
description='User dimensions for the organization. If not set or `null`, this field is not updated.',
|
|
10900
|
-
min_length=1,
|
|
10901
|
-
title='User Dimensions',
|
|
10902
|
-
)
|
|
10903
|
-
|
|
10904
|
-
|
|
10905
10887
|
OrganizationModifyOrganizationRequestPreferences = (
|
|
10906
10888
|
OrganizationCreateOrganizationRequestPreferences
|
|
10907
10889
|
)
|
|
10908
10890
|
|
|
10909
10891
|
|
|
10892
|
+
class OrganizationModifyOrganizationRequestUserDimension(BaseModel):
|
|
10893
|
+
description: str = Field(..., min_length=1)
|
|
10894
|
+
tags: List[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
|
|
10895
|
+
..., title='Tags'
|
|
10896
|
+
)
|
|
10897
|
+
|
|
10898
|
+
|
|
10910
10899
|
class RoleAssignRoleRequest(BaseModel):
|
|
10911
10900
|
user_id: str = Field(
|
|
10912
10901
|
...,
|
|
@@ -10953,6 +10942,13 @@ class RoleModifyRoleResponse(BaseModel):
|
|
|
10953
10942
|
)
|
|
10954
10943
|
|
|
10955
10944
|
|
|
10945
|
+
class ServiceCreateServiceRequestVersionSetLLMConfig(BaseModel):
|
|
10946
|
+
llm_name: LLMType
|
|
10947
|
+
params: Optional[Dict[str, Any]] = Field(
|
|
10948
|
+
{}, description='LLM-specific parameters to use.', title='Params'
|
|
10949
|
+
)
|
|
10950
|
+
|
|
10951
|
+
|
|
10956
10952
|
class ServiceCreateServiceResponse(BaseModel):
|
|
10957
10953
|
id: str = Field(..., description='The ID of the newly created service.', title='Id')
|
|
10958
10954
|
|
|
@@ -11012,13 +11008,6 @@ class ServiceUpdateServiceRequest(BaseModel):
|
|
|
11012
11008
|
)
|
|
11013
11009
|
|
|
11014
11010
|
|
|
11015
|
-
class ServiceUpsertServiceVersionSetRequestVersionSetLLMConfig(BaseModel):
|
|
11016
|
-
llm_name: LLMType
|
|
11017
|
-
params: Optional[Dict[str, Any]] = Field(
|
|
11018
|
-
{}, description='LLM-specific parameters to use.', title='Params'
|
|
11019
|
-
)
|
|
11020
|
-
|
|
11021
|
-
|
|
11022
11011
|
class SimulationCreateSimulationPersonaRequestInitialVersion(BaseModel):
|
|
11023
11012
|
background: str = Field(
|
|
11024
11013
|
..., description='The background of the simulation persona.', min_length=1
|
|
@@ -11137,6 +11126,16 @@ class SimulationCreateSimulationUnitTestResponse(BaseModel):
|
|
|
11137
11126
|
)
|
|
11138
11127
|
|
|
11139
11128
|
|
|
11129
|
+
class SimulationCreateSimulationUnitTestSetRequestUnitTestRunDescriptor(BaseModel):
|
|
11130
|
+
unit_test_id: str = Field(..., pattern='^[a-f0-9]{24}$', title='Unit Test Id')
|
|
11131
|
+
run_count: int = Field(
|
|
11132
|
+
...,
|
|
11133
|
+
description='The number of times to run the unit test.',
|
|
11134
|
+
gt=0,
|
|
11135
|
+
title='Run Count',
|
|
11136
|
+
)
|
|
11137
|
+
|
|
11138
|
+
|
|
11140
11139
|
class SimulationCreateSimulationUnitTestSetResponse(BaseModel):
|
|
11141
11140
|
simulation_unit_test_set_id: str = Field(
|
|
11142
11141
|
...,
|
|
@@ -11455,13 +11454,39 @@ class SimulationUpdateSimulationUnitTestRequestRunCount(RootModel[int]):
|
|
|
11455
11454
|
)
|
|
11456
11455
|
|
|
11457
11456
|
|
|
11458
|
-
class
|
|
11459
|
-
|
|
11460
|
-
|
|
11461
|
-
|
|
11462
|
-
|
|
11463
|
-
|
|
11464
|
-
|
|
11457
|
+
class SimulationUpdateSimulationUnitTestSetRequestUnitTestRuns(
|
|
11458
|
+
RootModel[List[SimulationCreateSimulationUnitTestSetRequestUnitTestRunDescriptor]]
|
|
11459
|
+
):
|
|
11460
|
+
root: List[SimulationCreateSimulationUnitTestSetRequestUnitTestRunDescriptor] = (
|
|
11461
|
+
Field(
|
|
11462
|
+
...,
|
|
11463
|
+
description='The unit test runs that are part of this set.',
|
|
11464
|
+
min_length=1,
|
|
11465
|
+
title='Unit Test Runs',
|
|
11466
|
+
)
|
|
11467
|
+
)
|
|
11468
|
+
|
|
11469
|
+
|
|
11470
|
+
class SimulationUpdateSimulationUnitTestSetRequest(BaseModel):
|
|
11471
|
+
name: Optional[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
|
|
11472
|
+
None, description='The name of the simulation unit test set.'
|
|
11473
|
+
)
|
|
11474
|
+
description: Optional[
|
|
11475
|
+
Union[AmigoLibPydanticBaseModelStrippedNonemptyString1, FieldNotSet]
|
|
11476
|
+
] = Field(
|
|
11477
|
+
{},
|
|
11478
|
+
description='The description of the simulation unit test set. If not specified or an empty object is provided, the description will not be updated.',
|
|
11479
|
+
title='Description',
|
|
11480
|
+
)
|
|
11481
|
+
unit_test_runs: Optional[
|
|
11482
|
+
SimulationUpdateSimulationUnitTestSetRequestUnitTestRuns
|
|
11483
|
+
] = Field(
|
|
11484
|
+
None,
|
|
11485
|
+
description='The unit test runs that are part of this set.',
|
|
11486
|
+
title='Unit Test Runs',
|
|
11487
|
+
)
|
|
11488
|
+
tags: Optional[Dict[str, Optional[str]]] = Field(
|
|
11489
|
+
None, description='The tags of the simulation unit test set.', title='Tags'
|
|
11465
11490
|
)
|
|
11466
11491
|
|
|
11467
11492
|
|
|
@@ -11655,7 +11680,7 @@ class UserGetMemoriesResponse(BaseModel):
|
|
|
11655
11680
|
)
|
|
11656
11681
|
|
|
11657
11682
|
|
|
11658
|
-
class
|
|
11683
|
+
class UserSearchUsersResponseUserInstanceUserStats(BaseModel):
|
|
11659
11684
|
num_conversations: int = Field(
|
|
11660
11685
|
...,
|
|
11661
11686
|
description='The number of conversations the user has created.',
|
|
@@ -11673,31 +11698,6 @@ class UserGetUsersResponseUserInstanceUserStats(BaseModel):
|
|
|
11673
11698
|
)
|
|
11674
11699
|
|
|
11675
11700
|
|
|
11676
|
-
class UserSearchUsersResponseUserInstance(BaseModel):
|
|
11677
|
-
org_id: str = Field(
|
|
11678
|
-
...,
|
|
11679
|
-
description='The ID of the organization that this user belongs to.',
|
|
11680
|
-
title='Org Id',
|
|
11681
|
-
)
|
|
11682
|
-
user_id: str = Field(
|
|
11683
|
-
..., description='The identifier of the user.', title='User Id'
|
|
11684
|
-
)
|
|
11685
|
-
first_name: str = Field(
|
|
11686
|
-
..., description='The first name of the user.', title='First Name'
|
|
11687
|
-
)
|
|
11688
|
-
last_name: str = Field(
|
|
11689
|
-
..., description='The last name of the user.', title='Last Name'
|
|
11690
|
-
)
|
|
11691
|
-
email: str = Field(..., description='Email of the user.', title='Email')
|
|
11692
|
-
user_stats: UserGetUsersResponseUserInstanceUserStats = Field(
|
|
11693
|
-
..., description="Statistics about the user's usage of the Amigo platform."
|
|
11694
|
-
)
|
|
11695
|
-
role: str = Field(..., description='The ID of the role of the user.', title='Role')
|
|
11696
|
-
preferences: AmigoLibMongoCollectionsUserUserPreferences = Field(
|
|
11697
|
-
..., description='The preferences of the user.'
|
|
11698
|
-
)
|
|
11699
|
-
|
|
11700
|
-
|
|
11701
11701
|
class UserSignInWithApiKeyResponse(BaseModel):
|
|
11702
11702
|
id_token: str = Field(
|
|
11703
11703
|
...,
|
|
@@ -12119,7 +12119,7 @@ class GetConversationMessagesParametersQuery(BaseModel):
|
|
|
12119
12119
|
[], description='The IDs of the messages to retrieve.', title='Id'
|
|
12120
12120
|
)
|
|
12121
12121
|
message_type: Optional[List[MessageType]] = Field(
|
|
12122
|
-
['
|
|
12122
|
+
['user-message', 'agent-message', 'external-event'],
|
|
12123
12123
|
description='The type of messages to retrieve.',
|
|
12124
12124
|
title='Message Type',
|
|
12125
12125
|
)
|
|
@@ -14554,7 +14554,7 @@ class OrganizationCreateOrganizationRequest(BaseModel):
|
|
|
14554
14554
|
description='Additional descriptions of the services offered by this organization that is displayed below `main_description` in a smaller font.',
|
|
14555
14555
|
min_length=1,
|
|
14556
14556
|
)
|
|
14557
|
-
user_dimensions: List[
|
|
14557
|
+
user_dimensions: List[OrganizationModifyOrganizationRequestUserDimension] = Field(
|
|
14558
14558
|
...,
|
|
14559
14559
|
description='User dimensions for the organization.',
|
|
14560
14560
|
title='User Dimensions',
|
|
@@ -14698,6 +14698,17 @@ class OrganizationGetOrganizationMetricsResponse(BaseModel):
|
|
|
14698
14698
|
)
|
|
14699
14699
|
|
|
14700
14700
|
|
|
14701
|
+
class OrganizationModifyOrganizationRequestUserDimensions(
|
|
14702
|
+
RootModel[List[OrganizationModifyOrganizationRequestUserDimension]]
|
|
14703
|
+
):
|
|
14704
|
+
root: List[OrganizationModifyOrganizationRequestUserDimension] = Field(
|
|
14705
|
+
...,
|
|
14706
|
+
description='User dimensions for the organization. If not set or `null`, this field is not updated.',
|
|
14707
|
+
min_length=1,
|
|
14708
|
+
title='User Dimensions',
|
|
14709
|
+
)
|
|
14710
|
+
|
|
14711
|
+
|
|
14701
14712
|
class OrganizationModifyOrganizationRequest(BaseModel):
|
|
14702
14713
|
title: Optional[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
|
|
14703
14714
|
None,
|
|
@@ -14772,6 +14783,22 @@ class RoleModifyRoleRequestPermissionGrant(BaseModel):
|
|
|
14772
14783
|
description: Optional[AmigoLibPydanticBaseModelStrippedNonemptyString1] = None
|
|
14773
14784
|
|
|
14774
14785
|
|
|
14786
|
+
class ServiceCreateServiceRequestVersionSet(BaseModel):
|
|
14787
|
+
agent_version_number: Optional[int] = Field(
|
|
14788
|
+
...,
|
|
14789
|
+
description='The version number of the agent to be used. If None, the latest agent version will be used.',
|
|
14790
|
+
title='Agent Version Number',
|
|
14791
|
+
)
|
|
14792
|
+
service_hierarchical_state_machine_version_number: Optional[int] = Field(
|
|
14793
|
+
...,
|
|
14794
|
+
description='The version number of the state machine to be used. If None, the latest state machine version will be used.',
|
|
14795
|
+
title='Service Hierarchical State Machine Version Number',
|
|
14796
|
+
)
|
|
14797
|
+
llm_model_preferences: Dict[str, ServiceCreateServiceRequestVersionSetLLMConfig] = (
|
|
14798
|
+
Field(..., title='Llm Model Preferences')
|
|
14799
|
+
)
|
|
14800
|
+
|
|
14801
|
+
|
|
14775
14802
|
class ServiceGetServicesResponse(BaseModel):
|
|
14776
14803
|
services: List[ServiceInstance] = Field(
|
|
14777
14804
|
..., description='The services that are found.', title='Services'
|
|
@@ -14792,20 +14819,10 @@ class ServiceGetServicesResponse(BaseModel):
|
|
|
14792
14819
|
)
|
|
14793
14820
|
|
|
14794
14821
|
|
|
14795
|
-
class
|
|
14796
|
-
|
|
14797
|
-
...,
|
|
14798
|
-
description='The version number of the agent to be used. If None, the latest agent version will be used.',
|
|
14799
|
-
title='Agent Version Number',
|
|
14800
|
-
)
|
|
14801
|
-
service_hierarchical_state_machine_version_number: Optional[int] = Field(
|
|
14802
|
-
...,
|
|
14803
|
-
description='The version number of the state machine to be used. If None, the latest state machine version will be used.',
|
|
14804
|
-
title='Service Hierarchical State Machine Version Number',
|
|
14822
|
+
class ServiceUpsertServiceVersionSetRequest(BaseModel):
|
|
14823
|
+
version_set: ServiceCreateServiceRequestVersionSet = Field(
|
|
14824
|
+
..., description='The version set to upsert.'
|
|
14805
14825
|
)
|
|
14806
|
-
llm_model_preferences: Dict[
|
|
14807
|
-
str, ServiceUpsertServiceVersionSetRequestVersionSetLLMConfig
|
|
14808
|
-
] = Field(..., title='Llm Model Preferences')
|
|
14809
14826
|
|
|
14810
14827
|
|
|
14811
14828
|
class SimulationCreateSimulationPersonaRequest(BaseModel):
|
|
@@ -14857,7 +14874,7 @@ class SimulationCreateSimulationUnitTestSetRequest(BaseModel):
|
|
|
14857
14874
|
..., description='The description of the simulation unit test set.'
|
|
14858
14875
|
)
|
|
14859
14876
|
unit_test_runs: List[
|
|
14860
|
-
|
|
14877
|
+
SimulationCreateSimulationUnitTestSetRequestUnitTestRunDescriptor
|
|
14861
14878
|
] = Field(
|
|
14862
14879
|
...,
|
|
14863
14880
|
description='The unit test runs that are part of this set.',
|
|
@@ -14956,42 +14973,6 @@ SimulationUpdateSimulationUnitTestRequestSuccessCriterion = (
|
|
|
14956
14973
|
)
|
|
14957
14974
|
|
|
14958
14975
|
|
|
14959
|
-
class SimulationUpdateSimulationUnitTestSetRequestUnitTestRuns(
|
|
14960
|
-
RootModel[List[SimulationUpdateSimulationUnitTestSetRequestUnitTestRunDescriptor]]
|
|
14961
|
-
):
|
|
14962
|
-
root: List[SimulationUpdateSimulationUnitTestSetRequestUnitTestRunDescriptor] = (
|
|
14963
|
-
Field(
|
|
14964
|
-
...,
|
|
14965
|
-
description='The unit test runs that are part of this set.',
|
|
14966
|
-
min_length=1,
|
|
14967
|
-
title='Unit Test Runs',
|
|
14968
|
-
)
|
|
14969
|
-
)
|
|
14970
|
-
|
|
14971
|
-
|
|
14972
|
-
class SimulationUpdateSimulationUnitTestSetRequest(BaseModel):
|
|
14973
|
-
name: Optional[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
|
|
14974
|
-
None, description='The name of the simulation unit test set.'
|
|
14975
|
-
)
|
|
14976
|
-
description: Optional[
|
|
14977
|
-
Union[AmigoLibPydanticBaseModelStrippedNonemptyString1, FieldNotSet]
|
|
14978
|
-
] = Field(
|
|
14979
|
-
{},
|
|
14980
|
-
description='The description of the simulation unit test set. If not specified or an empty object is provided, the description will not be updated.',
|
|
14981
|
-
title='Description',
|
|
14982
|
-
)
|
|
14983
|
-
unit_test_runs: Optional[
|
|
14984
|
-
SimulationUpdateSimulationUnitTestSetRequestUnitTestRuns
|
|
14985
|
-
] = Field(
|
|
14986
|
-
None,
|
|
14987
|
-
description='The unit test runs that are part of this set.',
|
|
14988
|
-
title='Unit Test Runs',
|
|
14989
|
-
)
|
|
14990
|
-
tags: Optional[Dict[str, Optional[str]]] = Field(
|
|
14991
|
-
None, description='The tags of the simulation unit test set.', title='Tags'
|
|
14992
|
-
)
|
|
14993
|
-
|
|
14994
|
-
|
|
14995
14976
|
class ToolGetToolVersionsResponse(BaseModel):
|
|
14996
14977
|
tool_versions: List[ToolVersionInstance] = Field(
|
|
14997
14978
|
...,
|
|
@@ -15094,22 +15075,33 @@ class UserGetUserModelResponse(BaseModel):
|
|
|
15094
15075
|
)
|
|
15095
15076
|
|
|
15096
15077
|
|
|
15097
|
-
class
|
|
15098
|
-
|
|
15099
|
-
...,
|
|
15078
|
+
class UserGetUsersResponseUserInstance(BaseModel):
|
|
15079
|
+
org_id: str = Field(
|
|
15080
|
+
...,
|
|
15081
|
+
description='The ID of the organization that this user belongs to.',
|
|
15082
|
+
title='Org Id',
|
|
15100
15083
|
)
|
|
15101
|
-
|
|
15102
|
-
..., description='
|
|
15084
|
+
user_id: str = Field(
|
|
15085
|
+
..., description='The identifier of the user.', title='User Id'
|
|
15103
15086
|
)
|
|
15104
|
-
|
|
15105
|
-
...,
|
|
15106
|
-
|
|
15107
|
-
|
|
15087
|
+
first_name: str = Field(
|
|
15088
|
+
..., description='The first name of the user.', title='First Name'
|
|
15089
|
+
)
|
|
15090
|
+
last_name: str = Field(
|
|
15091
|
+
..., description='The last name of the user.', title='Last Name'
|
|
15092
|
+
)
|
|
15093
|
+
email: str = Field(..., description='Email of the user.', title='Email')
|
|
15094
|
+
user_stats: UserSearchUsersResponseUserInstanceUserStats = Field(
|
|
15095
|
+
..., description="Statistics about the user's usage of the Amigo platform."
|
|
15096
|
+
)
|
|
15097
|
+
role: str = Field(..., description='The ID of the role of the user.', title='Role')
|
|
15098
|
+
preferences: AmigoLibMongoCollectionsUserUserPreferences = Field(
|
|
15099
|
+
..., description='The preferences of the user.'
|
|
15108
15100
|
)
|
|
15109
15101
|
|
|
15110
15102
|
|
|
15111
15103
|
class UserSearchUsersResponse(BaseModel):
|
|
15112
|
-
users: List[
|
|
15104
|
+
users: List[UserGetUsersResponseUserInstance] = Field(
|
|
15113
15105
|
..., description='Users in this organization.', title='Users'
|
|
15114
15106
|
)
|
|
15115
15107
|
|
|
@@ -15205,7 +15197,7 @@ class ActionStateInput(BaseModel):
|
|
|
15205
15197
|
Field(..., title='Boundary Constraints')
|
|
15206
15198
|
)
|
|
15207
15199
|
exit_conditions: List[
|
|
15208
|
-
|
|
15200
|
+
OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitCondition
|
|
15209
15201
|
] = Field(..., title='Exit Conditions')
|
|
15210
15202
|
action_tool_call_specs: List[ToolCallSpecInput] = Field(
|
|
15211
15203
|
..., title='Action Tool Call Specs'
|
|
@@ -15314,7 +15306,7 @@ class DecisionStateInput(BaseModel):
|
|
|
15314
15306
|
type: Literal['decision'] = Field(..., title='Type')
|
|
15315
15307
|
name: str = Field(..., pattern='^[A-Za-z0-9_]+$')
|
|
15316
15308
|
exit_conditions: List[
|
|
15317
|
-
|
|
15309
|
+
OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitCondition
|
|
15318
15310
|
] = Field(..., title='Exit Conditions')
|
|
15319
15311
|
decision_guidelines: List[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
|
|
15320
15312
|
..., title='Decision Guidelines'
|
|
@@ -16043,23 +16035,15 @@ class ServiceCreateServiceRequest(BaseModel):
|
|
|
16043
16035
|
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.',
|
|
16044
16036
|
title='Is Active',
|
|
16045
16037
|
)
|
|
16046
|
-
release_version_set: Optional[
|
|
16047
|
-
|
|
16048
|
-
|
|
16049
|
-
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.',
|
|
16050
|
-
)
|
|
16038
|
+
release_version_set: Optional[ServiceCreateServiceRequestVersionSet] = Field(
|
|
16039
|
+
None,
|
|
16040
|
+
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.',
|
|
16051
16041
|
)
|
|
16052
16042
|
tags: Dict[str, Optional[StrippedNonemptyStringWS]] = Field(
|
|
16053
16043
|
..., description='The tags of this service.', title='Tags'
|
|
16054
16044
|
)
|
|
16055
16045
|
|
|
16056
16046
|
|
|
16057
|
-
class ServiceUpsertServiceVersionSetRequest(BaseModel):
|
|
16058
|
-
version_set: ServiceUpsertServiceVersionSetRequestVersionSet = Field(
|
|
16059
|
-
..., description='The version set to upsert.'
|
|
16060
|
-
)
|
|
16061
|
-
|
|
16062
|
-
|
|
16063
16047
|
class SimulationCreateSimulationUnitTestRequest(BaseModel):
|
|
16064
16048
|
name: str = Field(..., description='The name of the unit test.', min_length=1)
|
|
16065
16049
|
description: str = Field(
|
|
@@ -16228,6 +16212,20 @@ class ToolSearchToolInvocationsResponse(BaseModel):
|
|
|
16228
16212
|
)
|
|
16229
16213
|
|
|
16230
16214
|
|
|
16215
|
+
class UserGetUsersResponse(BaseModel):
|
|
16216
|
+
users: List[UserGetUsersResponseUserInstance] = Field(
|
|
16217
|
+
..., description='Users in this organization.', title='Users'
|
|
16218
|
+
)
|
|
16219
|
+
has_more: bool = Field(
|
|
16220
|
+
..., description='Whether there are more users to retrieve.', title='Has More'
|
|
16221
|
+
)
|
|
16222
|
+
continuation_token: Optional[int] = Field(
|
|
16223
|
+
...,
|
|
16224
|
+
description='A token to supply to the next request to retrieve the next page of users. Only populated if `has_more` is `True`.',
|
|
16225
|
+
title='Continuation Token',
|
|
16226
|
+
)
|
|
16227
|
+
|
|
16228
|
+
|
|
16231
16229
|
class SimulationUnitTestSetRunInstance(BaseModel):
|
|
16232
16230
|
org_id: str = Field(..., title='Org Id')
|
|
16233
16231
|
id: str = Field(..., title='Id')
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
amigo_sdk/__init__.py,sha256=
|
|
1
|
+
amigo_sdk/__init__.py,sha256=ejvu2iLBDLHgcFbaJ3OaRgmIa1a-PVOuUG_A24y2c50,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=
|
|
9
|
+
amigo_sdk/generated/model.py,sha256=mCqm3l-X31C2vx6fHbWLWSLnmAiBR6DZCAI0pfLOLak,456721
|
|
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.
|
|
15
|
-
amigo_sdk-0.
|
|
16
|
-
amigo_sdk-0.
|
|
17
|
-
amigo_sdk-0.
|
|
18
|
-
amigo_sdk-0.
|
|
14
|
+
amigo_sdk-0.83.0.dist-info/METADATA,sha256=_z08PMQd2EMWDeDKnjx8KGES_WITEAMHPnN5BRNpbYQ,8499
|
|
15
|
+
amigo_sdk-0.83.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
16
|
+
amigo_sdk-0.83.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
|
|
17
|
+
amigo_sdk-0.83.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
|
|
18
|
+
amigo_sdk-0.83.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|