vellum-ai 1.5.5__py3-none-any.whl → 1.5.6__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.
- vellum/__init__.py +2 -0
- vellum/client/core/client_wrapper.py +2 -2
- vellum/client/types/__init__.py +2 -0
- vellum/client/types/integration_auth_config_integration.py +23 -0
- vellum/client/types/integration_auth_config_integration_credential.py +1 -1
- vellum/client/types/integration_read.py +1 -1
- vellum/client/types/slim_integration_auth_config_read.py +3 -1
- vellum/client/types/slim_integration_read.py +1 -1
- vellum/client/types/tool_definition_integration.py +1 -1
- vellum/types/integration_auth_config_integration.py +3 -0
- {vellum_ai-1.5.5.dist-info → vellum_ai-1.5.6.dist-info}/METADATA +1 -1
- {vellum_ai-1.5.5.dist-info → vellum_ai-1.5.6.dist-info}/RECORD +15 -13
- {vellum_ai-1.5.5.dist-info → vellum_ai-1.5.6.dist-info}/LICENSE +0 -0
- {vellum_ai-1.5.5.dist-info → vellum_ai-1.5.6.dist-info}/WHEEL +0 -0
- {vellum_ai-1.5.5.dist-info → vellum_ai-1.5.6.dist-info}/entry_points.txt +0 -0
vellum/__init__.py
CHANGED
@@ -222,6 +222,7 @@ from .client.types import (
|
|
222
222
|
InitiatedWorkflowNodeResultEvent,
|
223
223
|
InstructorVectorizerConfig,
|
224
224
|
InstructorVectorizerConfigRequest,
|
225
|
+
IntegrationAuthConfigIntegration,
|
225
226
|
IntegrationAuthConfigIntegrationCredential,
|
226
227
|
IntegrationCredentialAccessType,
|
227
228
|
IntegrationName,
|
@@ -961,6 +962,7 @@ __all__ = [
|
|
961
962
|
"InitiatedWorkflowNodeResultEvent",
|
962
963
|
"InstructorVectorizerConfig",
|
963
964
|
"InstructorVectorizerConfigRequest",
|
965
|
+
"IntegrationAuthConfigIntegration",
|
964
966
|
"IntegrationAuthConfigIntegrationCredential",
|
965
967
|
"IntegrationCredentialAccessType",
|
966
968
|
"IntegrationName",
|
@@ -27,10 +27,10 @@ class BaseClientWrapper:
|
|
27
27
|
|
28
28
|
def get_headers(self) -> typing.Dict[str, str]:
|
29
29
|
headers: typing.Dict[str, str] = {
|
30
|
-
"User-Agent": "vellum-ai/1.5.
|
30
|
+
"User-Agent": "vellum-ai/1.5.6",
|
31
31
|
"X-Fern-Language": "Python",
|
32
32
|
"X-Fern-SDK-Name": "vellum-ai",
|
33
|
-
"X-Fern-SDK-Version": "1.5.
|
33
|
+
"X-Fern-SDK-Version": "1.5.6",
|
34
34
|
**(self.get_custom_headers() or {}),
|
35
35
|
}
|
36
36
|
if self._api_version is not None:
|
vellum/client/types/__init__.py
CHANGED
@@ -230,6 +230,7 @@ from .initiated_prompt_execution_meta import InitiatedPromptExecutionMeta
|
|
230
230
|
from .initiated_workflow_node_result_event import InitiatedWorkflowNodeResultEvent
|
231
231
|
from .instructor_vectorizer_config import InstructorVectorizerConfig
|
232
232
|
from .instructor_vectorizer_config_request import InstructorVectorizerConfigRequest
|
233
|
+
from .integration_auth_config_integration import IntegrationAuthConfigIntegration
|
233
234
|
from .integration_auth_config_integration_credential import IntegrationAuthConfigIntegrationCredential
|
234
235
|
from .integration_credential_access_type import IntegrationCredentialAccessType
|
235
236
|
from .integration_name import IntegrationName
|
@@ -935,6 +936,7 @@ __all__ = [
|
|
935
936
|
"InitiatedWorkflowNodeResultEvent",
|
936
937
|
"InstructorVectorizerConfig",
|
937
938
|
"InstructorVectorizerConfigRequest",
|
939
|
+
"IntegrationAuthConfigIntegration",
|
938
940
|
"IntegrationAuthConfigIntegrationCredential",
|
939
941
|
"IntegrationCredentialAccessType",
|
940
942
|
"IntegrationName",
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
import typing
|
4
|
+
|
5
|
+
import pydantic
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
7
|
+
from .integration_name import IntegrationName
|
8
|
+
from .integration_provider import IntegrationProvider
|
9
|
+
|
10
|
+
|
11
|
+
class IntegrationAuthConfigIntegration(UniversalBaseModel):
|
12
|
+
id: str
|
13
|
+
provider: IntegrationProvider = "COMPOSIO"
|
14
|
+
name: IntegrationName
|
15
|
+
|
16
|
+
if IS_PYDANTIC_V2:
|
17
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
18
|
+
else:
|
19
|
+
|
20
|
+
class Config:
|
21
|
+
frozen = True
|
22
|
+
smart_union = True
|
23
|
+
extra = pydantic.Extra.allow
|
@@ -7,7 +7,7 @@ from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
7
7
|
|
8
8
|
|
9
9
|
class IntegrationAuthConfigIntegrationCredential(UniversalBaseModel):
|
10
|
-
id:
|
10
|
+
id: str
|
11
11
|
|
12
12
|
if IS_PYDANTIC_V2:
|
13
13
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
@@ -4,6 +4,7 @@ import typing
|
|
4
4
|
|
5
5
|
import pydantic
|
6
6
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
7
|
+
from .integration_auth_config_integration import IntegrationAuthConfigIntegration
|
7
8
|
from .integration_auth_config_integration_credential import IntegrationAuthConfigIntegrationCredential
|
8
9
|
from .integration_credential_access_type import IntegrationCredentialAccessType
|
9
10
|
|
@@ -13,7 +14,8 @@ class SlimIntegrationAuthConfigRead(UniversalBaseModel):
|
|
13
14
|
A slim representation of an Integration Auth Config.
|
14
15
|
"""
|
15
16
|
|
16
|
-
id:
|
17
|
+
id: str
|
18
|
+
integration: IntegrationAuthConfigIntegration
|
17
19
|
integration_credentials: typing.Optional[typing.List[IntegrationAuthConfigIntegrationCredential]] = None
|
18
20
|
default_access_type: typing.Optional[IntegrationCredentialAccessType] = None
|
19
21
|
|
@@ -154,12 +154,12 @@ vellum_ee/workflows/tests/test_registry.py,sha256=B8xRIuEyLWfSqrYoPldNQXhKPfe50P
|
|
154
154
|
vellum_ee/workflows/tests/test_serialize_module.py,sha256=d4ZpMd3oIxiq-sBXeSQESS6ix6-1P6rdCRFqBEReJIU,2882
|
155
155
|
vellum_ee/workflows/tests/test_server.py,sha256=dXFBraU99Y6cKp2aBhLFXQTScSRcE9WaWjo1z9piqdU,23344
|
156
156
|
vellum_ee/workflows/tests/test_virtual_files.py,sha256=TJEcMR0v2S8CkloXNmCHA0QW0K6pYNGaIjraJz7sFvY,2762
|
157
|
-
vellum/__init__.py,sha256=
|
157
|
+
vellum/__init__.py,sha256=i7aah42VTp3735JX69uHUipLZBD8PwX_CXUY_9t-zuY,49356
|
158
158
|
vellum/client/README.md,sha256=flqu57ubZNTfpq60CdLtJC9gp4WEkyjb_n_eZ4OYf9w,6497
|
159
159
|
vellum/client/__init__.py,sha256=rMnKRqL5-356SBc-rfm56MkO87PuAi2mtcfBszcJU1M,74316
|
160
160
|
vellum/client/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
|
161
161
|
vellum/client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
162
|
-
vellum/client/core/client_wrapper.py,sha256=
|
162
|
+
vellum/client/core/client_wrapper.py,sha256=CWWO5TahiAMy7Eh1vKC4QF2p7u4nS5n0TP1bSmi-_2E,2840
|
163
163
|
vellum/client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
164
164
|
vellum/client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
165
165
|
vellum/client/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
|
@@ -265,7 +265,7 @@ vellum/client/resources/workspaces/client.py,sha256=36KYa2FDu6h65q2GscUFOJs4qKei
|
|
265
265
|
vellum/client/resources/workspaces/raw_client.py,sha256=M3Ewk1ZfEZ44EeTvBtBNoNKi5whwfLY-1GR07SyfDTI,3517
|
266
266
|
vellum/client/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
267
267
|
vellum/client/tests/test_utils.py,sha256=zk8z45-2xrm9sZ2hq8PTqY8MXmXtPqMqYK0VBBX0GHg,1176
|
268
|
-
vellum/client/types/__init__.py,sha256=
|
268
|
+
vellum/client/types/__init__.py,sha256=KwWQ6Bw5bxx2PIECWgxnTdbht-saV-fcPFDVNDA9g-g,74697
|
269
269
|
vellum/client/types/ad_hoc_execute_prompt_event.py,sha256=B69EesIH6fpNsdoiJaSG9zF1Sl17FnjoTu4CBkUSoHk,608
|
270
270
|
vellum/client/types/ad_hoc_expand_meta.py,sha256=Kajcj3dKKed5e7uZibRnE3ZonK_bB2JPM-3aLjLfUp4,1295
|
271
271
|
vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=5kD6ZcbU8P8ynK0lMD8Mh7vHzvQt06ziMyphvWYg6FU,968
|
@@ -482,11 +482,12 @@ vellum/client/types/initiated_prompt_execution_meta.py,sha256=5sbNQJdyjkHZvkt2Eu
|
|
482
482
|
vellum/client/types/initiated_workflow_node_result_event.py,sha256=bANCbRTVoklNXjs3-nwGA5G_TK1j0FaqdrVHonl5ZLA,1311
|
483
483
|
vellum/client/types/instructor_vectorizer_config.py,sha256=5weLeldZKmA9cWf3Xcoe_Zn9_M9jSlWvxVj9Ml3GgcM,695
|
484
484
|
vellum/client/types/instructor_vectorizer_config_request.py,sha256=B5Wy5FI8utwi4sIvwFTK0evd78pbM9ic9jO6pBM2dFw,702
|
485
|
-
vellum/client/types/
|
485
|
+
vellum/client/types/integration_auth_config_integration.py,sha256=W3DrzVPwLrqm0wCYVF-sHyQPoKNxoliFgFJWEwW_Yqc,710
|
486
|
+
vellum/client/types/integration_auth_config_integration_credential.py,sha256=lUNuJ1GyFps3M85Mff1C-SAeEacCMkJdmayFfYrTFXA,547
|
486
487
|
vellum/client/types/integration_credential_access_type.py,sha256=sWkuDjW3aD7ApZ1xQ7Bu8g5kCIwqUqzm1TDliUQWeRI,178
|
487
488
|
vellum/client/types/integration_name.py,sha256=SzwAJ2xbIZ94yog1D_Zpd8cH_XEFZG0ygzGdZojEPbo,378
|
488
489
|
vellum/client/types/integration_provider.py,sha256=lIh3yPyPEzmSAu8L4Gsd-iDkmDSNobo0_TB75zMtIXk,129
|
489
|
-
vellum/client/types/integration_read.py,sha256=
|
490
|
+
vellum/client/types/integration_read.py,sha256=sUNCS01TIlHPJHEH3ZheIbPi-CplbFQ5XAV1QtOO1Gg,1035
|
490
491
|
vellum/client/types/invoked_port.py,sha256=nw2k-y7NrpcH6T1V96U3F8_pbrsceqBPIz3RQXN8gJY,518
|
491
492
|
vellum/client/types/iteration_state_enum.py,sha256=83JSh842OJgQiLtNn1KMimy6RlEYRVH3mDmYWS6Ewzo,180
|
492
493
|
vellum/client/types/jinja_prompt_block.py,sha256=IRWwjk9sGoF49bycXzWP_XYo8fksglZ0hu5geCTystM,903
|
@@ -703,8 +704,8 @@ vellum/client/types/slim_composio_tool_definition.py,sha256=6biQasvtevBsS9EjJ66G
|
|
703
704
|
vellum/client/types/slim_deployment_read.py,sha256=lEJ8Fx7QSmqjEK-LcR0y_hX2ywcaPbYjxINwPGy_ofw,1733
|
704
705
|
vellum/client/types/slim_document.py,sha256=aytvaz8SF6MSSEA3iLXP7ZgZOw33CA-_bv2iSj5cH24,2409
|
705
706
|
vellum/client/types/slim_document_document_to_document_index.py,sha256=Ogo8OFjtmcHjDmIynB9vckfjSZxFNhKM-cYpqSfREGI,1515
|
706
|
-
vellum/client/types/slim_integration_auth_config_read.py,sha256=
|
707
|
-
vellum/client/types/slim_integration_read.py,sha256=
|
707
|
+
vellum/client/types/slim_integration_auth_config_read.py,sha256=hfC4ABz7g1zc6A30TyyBA-W55TUZRzkFMf0iMjHgBSc,1113
|
708
|
+
vellum/client/types/slim_integration_read.py,sha256=hKc9a85Vi7WNIq6JDPABettHUz-vmV-ViXRsoIpD_MY,754
|
708
709
|
vellum/client/types/slim_release_review.py,sha256=vWNkPXk5wZ_scHsWHz_77PfMZRDn-4qUkqVbCKqY1zQ,747
|
709
710
|
vellum/client/types/slim_workflow_deployment.py,sha256=jIciGPCW9QNtDRdq3w_zUdrrE4cg1LWkcoyGM-L6cs0,2085
|
710
711
|
vellum/client/types/slim_workflow_execution_read.py,sha256=6Ep2iQ6tWTCGxzvAh4t3G_4BjHQ3_JZ9WFdc81XGqkA,2302
|
@@ -828,7 +829,7 @@ vellum/client/types/token_overlapping_window_chunker_config.py,sha256=DusQI1WCr7
|
|
828
829
|
vellum/client/types/token_overlapping_window_chunker_config_request.py,sha256=nxvP5rh8VbvE8AzOFXUBCyNoooDqRS7AmgwkwhCS9ZY,702
|
829
830
|
vellum/client/types/token_overlapping_window_chunking.py,sha256=waAqTJfw2hVCg6OhQ0FsprHJbvlOxTzjtvF8_ZdtPd0,853
|
830
831
|
vellum/client/types/token_overlapping_window_chunking_request.py,sha256=ez-hqu3q-TzqaHsPVvSZ3EY1mqoDeFGz1dnpeEwJByA,882
|
831
|
-
vellum/client/types/tool_definition_integration.py,sha256=
|
832
|
+
vellum/client/types/tool_definition_integration.py,sha256=7loJ81FWqtjK4nLuIkzWQH0JeY3VUx_rzKQEL_2tzAE,703
|
832
833
|
vellum/client/types/unit_enum.py,sha256=BKWRVp2WfHtGK4D6TsolhNJHGHfExzrRHkFn8H8QkwQ,113
|
833
834
|
vellum/client/types/upload_document_response.py,sha256=C-JP0uAraD8waVwCNRM4FRCRglmv78m532gpy2Q9_Oc,613
|
834
835
|
vellum/client/types/upsert_test_suite_test_case_request.py,sha256=VZGW1_Bw5cvU7RDg7MhT3A9C3ftyeYnAJaDMiil1FuQ,1978
|
@@ -1300,6 +1301,7 @@ vellum/types/initiated_prompt_execution_meta.py,sha256=1p5PTDKhyQWGfO02w5XuxsLEW
|
|
1300
1301
|
vellum/types/initiated_workflow_node_result_event.py,sha256=t2ZG_qAz7aHjm881EIOwzcm-Pub2Dyn4CrdNy2nXVsk,174
|
1301
1302
|
vellum/types/instructor_vectorizer_config.py,sha256=-ydrbzjBMhDkV198rN6rEJsxkViplv1xkTTWk6OxP68,166
|
1302
1303
|
vellum/types/instructor_vectorizer_config_request.py,sha256=WVughx2NMndzE7lyE8gph7M_LoaJdHet9IJUH8rUb0Y,174
|
1304
|
+
vellum/types/integration_auth_config_integration.py,sha256=5Eb2oaPbwwFnf05Rr5Q35KhVxw1X-P35g1TjhgOHGb8,173
|
1303
1305
|
vellum/types/integration_auth_config_integration_credential.py,sha256=yyz48hxOIF_tlKEgm8ryGsBOhHsQP9QH2-yitPZxcjU,184
|
1304
1306
|
vellum/types/integration_credential_access_type.py,sha256=nvvklDHyz-q6lsQJ0jlNYPe_f3LhOoOPmdzqQ6vnBls,172
|
1305
1307
|
vellum/types/integration_name.py,sha256=NrAy5QDLUhx4WnED40MTujnjAKzjGxd9lpCrMgC8YZs,154
|
@@ -2059,8 +2061,8 @@ vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnad
|
|
2059
2061
|
vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2060
2062
|
vellum/workflows/workflows/tests/test_base_workflow.py,sha256=Boa-_m9ii2Qsa1RvVM-VYniF7zCpzGgEGy-OnPZkrHg,23941
|
2061
2063
|
vellum/workflows/workflows/tests/test_context.py,sha256=VJBUcyWVtMa_lE5KxdhgMu0WYNYnUQUDvTF7qm89hJ0,2333
|
2062
|
-
vellum_ai-1.5.
|
2063
|
-
vellum_ai-1.5.
|
2064
|
-
vellum_ai-1.5.
|
2065
|
-
vellum_ai-1.5.
|
2066
|
-
vellum_ai-1.5.
|
2064
|
+
vellum_ai-1.5.6.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
|
2065
|
+
vellum_ai-1.5.6.dist-info/METADATA,sha256=RfoxNhrrppYe542ZzWrysREowPpM5RkWQtNgrAFgVBU,5547
|
2066
|
+
vellum_ai-1.5.6.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
2067
|
+
vellum_ai-1.5.6.dist-info/entry_points.txt,sha256=xVavzAKN4iF_NbmhWOlOkHluka0YLkbN_pFQ9pW3gLI,117
|
2068
|
+
vellum_ai-1.5.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|