vellum_ai 1.5.4 → 1.5.5
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.
- checksums.yaml +4 -4
- data/lib/requests.rb +2 -2
- data/lib/types_export.rb +15 -0
- data/lib/vellum_ai/integration_auth_configs/client.rb +116 -0
- data/lib/vellum_ai/integration_providers/client.rb +196 -0
- data/lib/vellum_ai/integrations/client.rb +180 -24
- data/lib/vellum_ai/test_suite_runs/client.rb +8 -10
- data/lib/vellum_ai/types/components_schemas_composio_integration_exec_config.rb +6 -0
- data/lib/vellum_ai/types/components_schemas_slim_composio_tool_definition.rb +6 -0
- data/lib/vellum_ai/types/composio_integration_exec_config.rb +61 -0
- data/lib/vellum_ai/types/composio_tool_definition.rb +28 -8
- data/lib/vellum_ai/types/integration_auth_config_integration_credential.rb +55 -0
- data/lib/vellum_ai/types/integration_credential_access_type.rb +12 -0
- data/lib/vellum_ai/types/integration_name.rb +30 -0
- data/lib/vellum_ai/types/integration_provider.rb +5 -0
- data/lib/vellum_ai/types/integration_read.rb +100 -0
- data/lib/vellum_ai/types/paginated_slim_integration_auth_config_read_list.rb +83 -0
- data/lib/vellum_ai/types/paginated_slim_integration_read_list.rb +81 -0
- data/lib/vellum_ai/types/paginated_slim_tool_definition_list.rb +81 -0
- data/lib/vellum_ai/types/slim_composio_tool_definition.rb +81 -0
- data/lib/vellum_ai/types/slim_integration_auth_config_read.rb +76 -0
- data/lib/vellum_ai/types/slim_integration_read.rb +86 -0
- data/lib/vellum_ai/types/tool_definition_integration.rb +72 -0
- data/lib/vellum_ai.rb +14 -0
- metadata +19 -2
data/lib/vellum_ai.rb
CHANGED
@@ -11,6 +11,8 @@ require_relative "vellum_ai/deployments/client"
|
|
11
11
|
require_relative "vellum_ai/document_indexes/client"
|
12
12
|
require_relative "vellum_ai/documents/client"
|
13
13
|
require_relative "vellum_ai/folder_entities/client"
|
14
|
+
require_relative "vellum_ai/integration_auth_configs/client"
|
15
|
+
require_relative "vellum_ai/integration_providers/client"
|
14
16
|
require_relative "vellum_ai/metric_definitions/client"
|
15
17
|
require_relative "vellum_ai/ml_models/client"
|
16
18
|
require_relative "vellum_ai/organizations/client"
|
@@ -67,6 +69,10 @@ module Vellum
|
|
67
69
|
attr_reader :documents
|
68
70
|
# @return [Vellum::FolderEntitiesClient]
|
69
71
|
attr_reader :folder_entities
|
72
|
+
# @return [Vellum::IntegrationAuthConfigsClient]
|
73
|
+
attr_reader :integration_auth_configs
|
74
|
+
# @return [Vellum::IntegrationProvidersClient]
|
75
|
+
attr_reader :integration_providers
|
70
76
|
# @return [Vellum::MetricDefinitionsClient]
|
71
77
|
attr_reader :metric_definitions
|
72
78
|
# @return [Vellum::MlModelsClient]
|
@@ -119,6 +125,8 @@ module Vellum
|
|
119
125
|
@document_indexes = Vellum::DocumentIndexesClient.new(request_client: @request_client)
|
120
126
|
@documents = Vellum::DocumentsClient.new(request_client: @request_client)
|
121
127
|
@folder_entities = Vellum::FolderEntitiesClient.new(request_client: @request_client)
|
128
|
+
@integration_auth_configs = Vellum::IntegrationAuthConfigsClient.new(request_client: @request_client)
|
129
|
+
@integration_providers = Vellum::IntegrationProvidersClient.new(request_client: @request_client)
|
122
130
|
@metric_definitions = Vellum::MetricDefinitionsClient.new(request_client: @request_client)
|
123
131
|
@ml_models = Vellum::MlModelsClient.new(request_client: @request_client)
|
124
132
|
@organizations = Vellum::OrganizationsClient.new(request_client: @request_client)
|
@@ -527,6 +535,10 @@ end
|
|
527
535
|
attr_reader :documents
|
528
536
|
# @return [Vellum::AsyncFolderEntitiesClient]
|
529
537
|
attr_reader :folder_entities
|
538
|
+
# @return [Vellum::AsyncIntegrationAuthConfigsClient]
|
539
|
+
attr_reader :integration_auth_configs
|
540
|
+
# @return [Vellum::AsyncIntegrationProvidersClient]
|
541
|
+
attr_reader :integration_providers
|
530
542
|
# @return [Vellum::AsyncMetricDefinitionsClient]
|
531
543
|
attr_reader :metric_definitions
|
532
544
|
# @return [Vellum::AsyncMlModelsClient]
|
@@ -579,6 +591,8 @@ end
|
|
579
591
|
@document_indexes = Vellum::AsyncDocumentIndexesClient.new(request_client: @async_request_client)
|
580
592
|
@documents = Vellum::AsyncDocumentsClient.new(request_client: @async_request_client)
|
581
593
|
@folder_entities = Vellum::AsyncFolderEntitiesClient.new(request_client: @async_request_client)
|
594
|
+
@integration_auth_configs = Vellum::AsyncIntegrationAuthConfigsClient.new(request_client: @async_request_client)
|
595
|
+
@integration_providers = Vellum::AsyncIntegrationProvidersClient.new(request_client: @async_request_client)
|
582
596
|
@metric_definitions = Vellum::AsyncMetricDefinitionsClient.new(request_client: @async_request_client)
|
583
597
|
@ml_models = Vellum::AsyncMlModelsClient.new(request_client: @async_request_client)
|
584
598
|
@organizations = Vellum::AsyncOrganizationsClient.new(request_client: @async_request_client)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vellum_ai
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vellum
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-09-
|
11
|
+
date: 2025-09-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -148,6 +148,8 @@ files:
|
|
148
148
|
- lib/vellum_ai/events/client.rb
|
149
149
|
- lib/vellum_ai/folder_entities/client.rb
|
150
150
|
- lib/vellum_ai/folder_entities/types/folder_entities_list_request_entity_status.rb
|
151
|
+
- lib/vellum_ai/integration_auth_configs/client.rb
|
152
|
+
- lib/vellum_ai/integration_providers/client.rb
|
151
153
|
- lib/vellum_ai/integrations/client.rb
|
152
154
|
- lib/vellum_ai/metric_definitions/client.rb
|
153
155
|
- lib/vellum_ai/ml_models/client.rb
|
@@ -219,12 +221,15 @@ files:
|
|
219
221
|
- lib/vellum_ai/types/compile_prompt_meta.rb
|
220
222
|
- lib/vellum_ai/types/components_schemas_composio_execute_tool_request.rb
|
221
223
|
- lib/vellum_ai/types/components_schemas_composio_execute_tool_response.rb
|
224
|
+
- lib/vellum_ai/types/components_schemas_composio_integration_exec_config.rb
|
222
225
|
- lib/vellum_ai/types/components_schemas_composio_tool_definition.rb
|
223
226
|
- lib/vellum_ai/types/components_schemas_pdf_search_result_meta_source.rb
|
224
227
|
- lib/vellum_ai/types/components_schemas_pdf_search_result_meta_source_request.rb
|
225
228
|
- lib/vellum_ai/types/components_schemas_prompt_version_build_config_sandbox.rb
|
229
|
+
- lib/vellum_ai/types/components_schemas_slim_composio_tool_definition.rb
|
226
230
|
- lib/vellum_ai/types/composio_execute_tool_request.rb
|
227
231
|
- lib/vellum_ai/types/composio_execute_tool_response.rb
|
232
|
+
- lib/vellum_ai/types/composio_integration_exec_config.rb
|
228
233
|
- lib/vellum_ai/types/composio_tool_definition.rb
|
229
234
|
- lib/vellum_ai/types/condition_combinator.rb
|
230
235
|
- lib/vellum_ai/types/conditional_node_result.rb
|
@@ -368,6 +373,11 @@ files:
|
|
368
373
|
- lib/vellum_ai/types/initiated_workflow_node_result_event.rb
|
369
374
|
- lib/vellum_ai/types/instructor_vectorizer_config.rb
|
370
375
|
- lib/vellum_ai/types/instructor_vectorizer_config_request.rb
|
376
|
+
- lib/vellum_ai/types/integration_auth_config_integration_credential.rb
|
377
|
+
- lib/vellum_ai/types/integration_credential_access_type.rb
|
378
|
+
- lib/vellum_ai/types/integration_name.rb
|
379
|
+
- lib/vellum_ai/types/integration_provider.rb
|
380
|
+
- lib/vellum_ai/types/integration_read.rb
|
371
381
|
- lib/vellum_ai/types/invoked_port.rb
|
372
382
|
- lib/vellum_ai/types/iteration_state_enum.rb
|
373
383
|
- lib/vellum_ai/types/jinja_prompt_block.rb
|
@@ -487,6 +497,9 @@ files:
|
|
487
497
|
- lib/vellum_ai/types/paginated_folder_entity_list.rb
|
488
498
|
- lib/vellum_ai/types/paginated_slim_deployment_read_list.rb
|
489
499
|
- lib/vellum_ai/types/paginated_slim_document_list.rb
|
500
|
+
- lib/vellum_ai/types/paginated_slim_integration_auth_config_read_list.rb
|
501
|
+
- lib/vellum_ai/types/paginated_slim_integration_read_list.rb
|
502
|
+
- lib/vellum_ai/types/paginated_slim_tool_definition_list.rb
|
490
503
|
- lib/vellum_ai/types/paginated_slim_workflow_deployment_list.rb
|
491
504
|
- lib/vellum_ai/types/paginated_test_suite_run_execution_list.rb
|
492
505
|
- lib/vellum_ai/types/paginated_test_suite_test_case_list.rb
|
@@ -577,9 +590,12 @@ files:
|
|
577
590
|
- lib/vellum_ai/types/sentence_chunker_config_request.rb
|
578
591
|
- lib/vellum_ai/types/sentence_chunking.rb
|
579
592
|
- lib/vellum_ai/types/sentence_chunking_request.rb
|
593
|
+
- lib/vellum_ai/types/slim_composio_tool_definition.rb
|
580
594
|
- lib/vellum_ai/types/slim_deployment_read.rb
|
581
595
|
- lib/vellum_ai/types/slim_document.rb
|
582
596
|
- lib/vellum_ai/types/slim_document_document_to_document_index.rb
|
597
|
+
- lib/vellum_ai/types/slim_integration_auth_config_read.rb
|
598
|
+
- lib/vellum_ai/types/slim_integration_read.rb
|
583
599
|
- lib/vellum_ai/types/slim_release_review.rb
|
584
600
|
- lib/vellum_ai/types/slim_workflow_deployment.rb
|
585
601
|
- lib/vellum_ai/types/slim_workflow_execution_read.rb
|
@@ -703,6 +719,7 @@ files:
|
|
703
719
|
- lib/vellum_ai/types/token_overlapping_window_chunker_config_request.rb
|
704
720
|
- lib/vellum_ai/types/token_overlapping_window_chunking.rb
|
705
721
|
- lib/vellum_ai/types/token_overlapping_window_chunking_request.rb
|
722
|
+
- lib/vellum_ai/types/tool_definition_integration.rb
|
706
723
|
- lib/vellum_ai/types/unit_enum.rb
|
707
724
|
- lib/vellum_ai/types/upload_document_response.rb
|
708
725
|
- lib/vellum_ai/types/upsert_test_suite_test_case_request.rb
|