multiwoven-integrations 0.41.0 → 0.41.1
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/multiwoven/integrations/rollout.rb +1 -1
- data/lib/multiwoven/integrations/source/aisquared/config/spec.json +1 -1
- data/lib/multiwoven/integrations/source/anthropic/config/spec.json +1 -1
- data/lib/multiwoven/integrations/source/aws_bedrock_model/config/spec.json +4 -0
- data/lib/multiwoven/integrations/source/aws_sagemaker_model/config/meta.json +1 -0
- data/lib/multiwoven/integrations/source/databrics_model/config/meta.json +1 -0
- data/lib/multiwoven/integrations/source/generic_open_ai/config/spec.json +2 -2
- data/lib/multiwoven/integrations/source/google_gemini/config/spec.json +2 -2
- data/lib/multiwoven/integrations/source/google_vertex_model/config/meta.json +1 -0
- data/lib/multiwoven/integrations/source/http_model/config/meta.json +1 -0
- data/lib/multiwoven/integrations/source/john_snow_labs/config/spec.json +2 -2
- data/lib/multiwoven/integrations/source/open_ai/config/spec.json +2 -2
- data/lib/multiwoven/integrations/source/watsonx_ai/config/spec.json +5 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 57c252600c864759b572317a8ed5f5beabfaca3a897895794c823f387e3bc6ef
|
|
4
|
+
data.tar.gz: daa50eaf535cc92baffd3fb42b8b6a9ef69a8a16d7626361c75edaaa68e96b66
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 544c77582add747b276bf4243c7fdd61da97256ee499974e3bb2721e5ca35af5e83ecb4220f654d2daa94b1171ca0b1d2df462357b2a5f9512491259c1a1d801
|
|
7
|
+
data.tar.gz: 35fbd8d68332039739a83b26d6149d66e640e50ae65c14f4d7afebbeeef552dc5ef0cc72b43eee15fae462740777ca119603af1cb99f62f45eab66a0a2c5d93a
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"title": "Response Format",
|
|
26
26
|
"description": "Sample Response Format",
|
|
27
27
|
"type": "string",
|
|
28
|
-
"default": "{\"id\":\"chatcmpl-0zBnis\",\"choices\":[{\"finish_reason\":\"stop\",\"index\":0,\"logprobs\":null,\"message\":{\"content\":\"
|
|
28
|
+
"default": "{\"id\":\"chatcmpl-0zBnis\",\"choices\":[{\"finish_reason\":\"stop\",\"index\":0,\"logprobs\":null,\"message\":{\"content\":\"Hello!\",\"refusal\":null,\"role\":\"assistant\",\"annotations\":null,\"audio\":null,\"function_call\":null,\"tool_calls\":[],\"reasoning_content\":null},\"stop_reason\":null,\"token_ids\":null}],\"created\":1763484948,\"model\":\"aisquared/bolt-instruct-32b\",\"object\":\"chat.completion\",\"service_tier\":null,\"system_fingerprint\":null,\"usage\":{\"completion_tokens\":4,\"prompt_tokens\":8,\"total_tokens\":12,\"completion_tokens_details\":null,\"prompt_tokens_details\":null},\"prompt_logprobs\":null,\"prompt_token_ids\":null,\"kv_transfer_params\":null}",
|
|
29
29
|
"x-response-format": true,
|
|
30
30
|
"order": 1
|
|
31
31
|
}
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"title": "Response Format",
|
|
54
54
|
"description": "Sample Response Format",
|
|
55
55
|
"type": "string",
|
|
56
|
-
"default": "{\"id\":\"msg_0123ABC\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"text\",\"text\":\"Hello
|
|
56
|
+
"default": "{\"id\":\"msg_0123ABC\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"text\",\"text\":\"Hello!\"}],\"stop_reason\":\"end_turn\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":8,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":4}}",
|
|
57
57
|
"x-response-format": true,
|
|
58
58
|
"order": 4
|
|
59
59
|
}
|
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
7
7
|
"title": "AWS Bedrock Model",
|
|
8
8
|
"type": "object",
|
|
9
|
+
"x-dynamic-input-path": "messages.0.content",
|
|
10
|
+
"x-output-path": "content.0.text",
|
|
9
11
|
"required": ["access_key", "secret_access_key", "region", "model_id", "request_format", "response_format"],
|
|
10
12
|
"properties": {
|
|
11
13
|
"access_key": {
|
|
@@ -43,6 +45,7 @@
|
|
|
43
45
|
"description": "Sample Request Format",
|
|
44
46
|
"type": "string",
|
|
45
47
|
"title": "Request Format",
|
|
48
|
+
"default": "{\"anthropic_version\":\"bedrock-2023-05-31\",\"max_tokens\":256,\"messages\":[{\"role\":\"user\",\"content\":\"Hi.\"}]}",
|
|
46
49
|
"x-request-format": true,
|
|
47
50
|
"order": 5
|
|
48
51
|
},
|
|
@@ -50,6 +53,7 @@
|
|
|
50
53
|
"description": "Sample Response Format",
|
|
51
54
|
"type": "string",
|
|
52
55
|
"title": "Response Format",
|
|
56
|
+
"default": "{\"id\":\"msg_0123ABC\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"anthropic.claude-sonnet-4-5-20250929-v1:0\",\"content\":[{\"type\":\"text\",\"text\":\"Hello!\"}],\"stop_reason\":\"end_turn\",\"usage\":{\"input_tokens\":8,\"output_tokens\":4}}",
|
|
53
57
|
"x-response-format": true,
|
|
54
58
|
"order": 6
|
|
55
59
|
}
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
"category": "AI Model",
|
|
7
7
|
"sub_category": "AI_ML Service",
|
|
8
8
|
"provider_type": "cloud_provider",
|
|
9
|
+
"show_payload_formats": true,
|
|
9
10
|
"display_order": 80,
|
|
10
11
|
"description": "Deploy and serve custom models via AWS SageMaker endpoints. Supports any model you have hosted on SageMaker.",
|
|
11
12
|
"documentation_url": "https://docs.squared.ai/guides/sources/data-sources/aws_sagemaker-model",
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
"category": "AI Model",
|
|
7
7
|
"sub_category": "AI_ML Service",
|
|
8
8
|
"provider_type": "cloud_provider",
|
|
9
|
+
"show_payload_formats": true,
|
|
9
10
|
"display_order": 100,
|
|
10
11
|
"description": "Serve models from Databricks Model Serving endpoints using your workspace credentials.",
|
|
11
12
|
"documentation_url": "https://docs.squared.ai/guides/sources/data-sources/databricks-model",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"title": "Request Format",
|
|
47
47
|
"description": "Sample Request Format",
|
|
48
48
|
"type": "string",
|
|
49
|
-
"default": "{\"model\":\"gpt-4o-mini\", \"messages\":[{\"role\": \"user\", \"content\": \"
|
|
49
|
+
"default": "{\"model\":\"gpt-4o-mini\", \"messages\":[{\"role\": \"user\", \"content\": \"Hi.\"}], \"stream\": false}",
|
|
50
50
|
"x-request-format": true,
|
|
51
51
|
"order": 3
|
|
52
52
|
},
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"title": "Response Format",
|
|
55
55
|
"description": "Sample Response Format",
|
|
56
56
|
"type": "string",
|
|
57
|
-
"default": "{\"choices\":[{\"index\": 0, \"delta\":{\"role\": \"assistant\", \"content\": \"
|
|
57
|
+
"default": "{\"choices\":[{\"index\": 0, \"delta\":{\"role\": \"assistant\", \"content\": \"Hello!\"}, \"finish_reason\": \"stop\"}]}",
|
|
58
58
|
"x-response-format": true,
|
|
59
59
|
"order": 4
|
|
60
60
|
}
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"title": "Request Format",
|
|
55
55
|
"description": "Sample Request Format",
|
|
56
56
|
"type": "string",
|
|
57
|
-
"default": "{\"model\":\"gemini-2.0-flash\", \"messages\":[{\"role\": \"user\", \"content\": \"
|
|
57
|
+
"default": "{\"model\":\"gemini-2.0-flash\", \"messages\":[{\"role\": \"user\", \"content\": \"Hi.\"}], \"stream\": false}",
|
|
58
58
|
"x-request-format": true,
|
|
59
59
|
"order": 4
|
|
60
60
|
},
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"title": "Response Format",
|
|
63
63
|
"description": "Sample Response Format",
|
|
64
64
|
"type": "string",
|
|
65
|
-
"default": "{\"choices\":[{\"index\": 0, \"message\":{\"role\": \"assistant\", \"content\": \"
|
|
65
|
+
"default": "{\"choices\":[{\"index\": 0, \"message\":{\"role\": \"assistant\", \"content\": \"Hello!\"}, \"finish_reason\": \"stop\"}]}",
|
|
66
66
|
"x-response-format": true,
|
|
67
67
|
"order": 5
|
|
68
68
|
}
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
"category": "AI Model",
|
|
7
7
|
"sub_category": "AI_ML Service",
|
|
8
8
|
"provider_type": "cloud_provider",
|
|
9
|
+
"show_payload_formats": true,
|
|
9
10
|
"display_order": 90,
|
|
10
11
|
"description": "Access Gemini and other models via Google Vertex AI. Enterprise security, VPC deployment, and data residency controls.",
|
|
11
12
|
"documentation_url": "https://docs.squared.ai/activation/ai-ml-sources/google_vertex-model",
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
"category": "AI Model",
|
|
7
7
|
"sub_category": "AI_ML Service",
|
|
8
8
|
"provider_type": "cloud_provider",
|
|
9
|
+
"show_payload_formats": true,
|
|
9
10
|
"display_order": 110,
|
|
10
11
|
"description": "Connect any model exposed over HTTP by describing its request and response format.",
|
|
11
12
|
"documentation_url": "https://docs.squared.ai/activation/ai-ml-sources/http-model-endpoint",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"title": "Request Format",
|
|
55
55
|
"description": "Sample Request Format",
|
|
56
56
|
"type": "string",
|
|
57
|
-
"default": "{\"model\":\"jsl-medm\", \"messages\":[{\"role\": \"user\", \"content\": \"
|
|
57
|
+
"default": "{\"model\":\"jsl-medm\", \"messages\":[{\"role\": \"user\", \"content\": \"Hi.\"}], \"stream\": false}",
|
|
58
58
|
"x-request-format": true,
|
|
59
59
|
"order": 4
|
|
60
60
|
},
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"title": "Response Format",
|
|
63
63
|
"description": "Sample Response Format",
|
|
64
64
|
"type": "string",
|
|
65
|
-
"default": "{\"choices\":[{\"index\": 0, \"message\":{\"role\": \"assistant\", \"content\": \"
|
|
65
|
+
"default": "{\"choices\":[{\"index\": 0, \"message\":{\"role\": \"assistant\", \"content\": \"Hello!\"}, \"finish_reason\": \"stop\"}]}",
|
|
66
66
|
"x-response-format": true,
|
|
67
67
|
"order": 5
|
|
68
68
|
}
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"title": "Request Format",
|
|
46
46
|
"description": "Sample Request Format",
|
|
47
47
|
"type": "string",
|
|
48
|
-
"default": "{\"model\":\"gpt-4o-mini\", \"messages\":[{\"role\": \"user\", \"content\": \"
|
|
48
|
+
"default": "{\"model\":\"gpt-4o-mini\", \"messages\":[{\"role\": \"user\", \"content\": \"Hi.\"}], \"stream\": false}",
|
|
49
49
|
"x-request-format": true,
|
|
50
50
|
"order": 3
|
|
51
51
|
},
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"title": "Response Format",
|
|
54
54
|
"description": "Sample Response Format",
|
|
55
55
|
"type": "string",
|
|
56
|
-
"default": "{\"choices\":[{\"index\": 0, \"delta\":{\"role\": \"assistant\", \"content\": \"
|
|
56
|
+
"default": "{\"choices\":[{\"index\": 0, \"delta\":{\"role\": \"assistant\", \"content\": \"Hello!\"}, \"finish_reason\": \"stop\"}]}",
|
|
57
57
|
"x-response-format": true,
|
|
58
58
|
"order": 4
|
|
59
59
|
}
|
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
7
7
|
"title": "WatsonX AI Endpoint",
|
|
8
8
|
"type": "object",
|
|
9
|
+
"x-dynamic-input-path": "input",
|
|
10
|
+
"x-output-path": "results.0.generated_text",
|
|
9
11
|
"required": ["api_key", "region", "deployment_id", "request_format", "response_format"],
|
|
10
12
|
"properties": {
|
|
11
13
|
"api_key": {
|
|
@@ -52,12 +54,15 @@
|
|
|
52
54
|
"title": "Request Format",
|
|
53
55
|
"description": "Sample request format",
|
|
54
56
|
"type": "string",
|
|
57
|
+
"default": "{\"input\":\"Hi.\",\"parameters\":{\"decoding_method\":\"greedy\",\"max_new_tokens\":256}}",
|
|
58
|
+
"x-request-format": true,
|
|
55
59
|
"order": 5
|
|
56
60
|
},
|
|
57
61
|
"response_format": {
|
|
58
62
|
"title": "Response Format",
|
|
59
63
|
"description": "Sample response format",
|
|
60
64
|
"type": "string",
|
|
65
|
+
"default": "{\"model_id\":\"ibm/granite-3-8b-instruct\",\"results\":[{\"generated_text\":\"Hello!\",\"stop_reason\":\"eos_token\"}]}",
|
|
61
66
|
"x-response-format": true,
|
|
62
67
|
"order": 6
|
|
63
68
|
},
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: multiwoven-integrations
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.41.
|
|
4
|
+
version: 0.41.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Subin T P
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|