Skip to content

Commit

Permalink
chore(CE): Update HTTP Model spec (#583) (#474)
Browse files Browse the repository at this point in the history
Co-authored-by: TivonB-AI2
  • Loading branch information
github-actions[bot] authored Nov 15, 2024
1 parent 720bec8 commit f2ebcb6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion integrations/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ GIT
PATH
remote: .
specs:
multiwoven-integrations (0.15.0)
multiwoven-integrations (0.15.2)
MailchimpMarketing
activesupport
async-websocket
Expand Down
2 changes: 1 addition & 1 deletion integrations/lib/multiwoven/integrations/rollout.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Multiwoven
module Integrations
VERSION = "0.15.1"
VERSION = "0.15.2"

ENABLED_SOURCES = %w[
Snowflake
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"connector_query_type": "ai_ml",
"connection_specification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Http Model Endpoint",
"title": "HTTP Model Endpoint",
"type": "object",
"required": ["url_host"],
"properties": {
Expand All @@ -14,7 +14,8 @@
"order": 0
},
"headers": {
"title": "Http Headers",
"title": "HTTP Headers",
"description": "Custom headers to include in the HTTP request. Useful for authentication, content type specifications, and other request metadata.",
"order": 1,
"additionalProperties": {
"type": "string"
Expand All @@ -25,10 +26,10 @@
"type": "object",
"properties": {
"timeout": {
"type": "integer",
"minimum": 0,
"default": 30,
"title": "Http Timeout",
"type": "string",
"default": "30",
"title": "HTTP Timeout",
"description": "The maximum time, in seconds, to wait for a response from the server before the request is canceled.",
"order": 0
}
},
Expand Down

0 comments on commit f2ebcb6

Please sign in to comment.