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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ad58beae1f92f76c184383a3e8c1741ee51356e6f3692bfae35ec73be5f9e351
4
- data.tar.gz: 3b8e0bd9360c53a532157172c2e70d0a38d53a3c8aa9f26d11af35b99082f912
3
+ metadata.gz: 57c252600c864759b572317a8ed5f5beabfaca3a897895794c823f387e3bc6ef
4
+ data.tar.gz: daa50eaf535cc92baffd3fb42b8b6a9ef69a8a16d7626361c75edaaa68e96b66
5
5
  SHA512:
6
- metadata.gz: 317c2605f975ec6726413bb1d26cb8716f5c4150c515bb666f26ec3a7265f4a905eddef60d739effc07d492dc9238bb2c1ecef9358118921b3e88e52a90f58c9
7
- data.tar.gz: ca2256921a2839449fee7e9a97d3c76a6ea54474df87f67124c8f5e31acc58df4077f34c7762e0525c66ea2fcc2536adcb21887eea41f0b0d7c949d7bfc479eb
6
+ metadata.gz: 544c77582add747b276bf4243c7fdd61da97256ee499974e3bb2721e5ca35af5e83ecb4220f654d2daa94b1171ca0b1d2df462357b2a5f9512491259c1a1d801
7
+ data.tar.gz: 35fbd8d68332039739a83b26d6149d66e640e50ae65c14f4d7afebbeeef552dc5ef0cc72b43eee15fae462740777ca119603af1cb99f62f45eab66a0a2c5d93a
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Multiwoven
4
4
  module Integrations
5
- VERSION = "0.41.0"
5
+ VERSION = "0.41.1"
6
6
 
7
7
  ENABLED_SOURCES = %w[
8
8
  Snowflake
@@ -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\":\"Hi! How can I assist you today?\",\"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\":57,\"prompt_tokens\":532,\"total_tokens\":589,\"completion_tokens_details\":null,\"prompt_tokens_details\":null},\"prompt_logprobs\":null,\"prompt_token_ids\":null,\"kv_transfer_params\":null}",
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 there! How can I assist you today? Whether you have a question, need some information, or just want to chat, I'm here to help. What's on your mind?\"}],\"stop_reason\":\"end_turn\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":10,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":41}}",
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\": \"What do you know about APIs?\"}], \"stream\": false}",
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\": \"APIs, or Application Programming Interfaces, are tools that allow different software applications to communicate with each other. They define a set of rules and protocols for building and interacting with software applications.\"}, \"finish_reason\": \"stop\"}]}",
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\": \"What do you know about APIs?\"}], \"stream\": false}",
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\": \"APIs let software applications communicate with each other.\"}, \"finish_reason\": \"stop\"}]}",
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\": \"Summarize the patient's discharge notes.\"}], \"stream\": false}",
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\": \"The patient was discharged in stable condition with follow-up instructions.\"}, \"finish_reason\": \"stop\"}]}",
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\": \"What do you know about APIs?\"}], \"stream\": false}",
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\": \"APIs, or Application Programming Interfaces, are tools that allow different software applications to communicate with each other. They define a set of rules and protocols for building and interacting with software applications.\"}, \"finish_reason\": \"stop\"}]}",
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.0
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-24 00:00:00.000000000 Z
11
+ date: 2026-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport