multiwoven-integrations 0.41.9 → 0.41.10
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bca80f558a046bf547203d290844fd167499851db1282cb0f939787aa39c6c3c
|
|
4
|
+
data.tar.gz: 59e9a9e02fc05b8ca2fcfc2efd1e0f2a7b2c032165137c41846451c27c89a679
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2b3207fb708fc988fd090a1e6f040cbb427b170208f9fb5537bf9216733e5c14a75a3acb9e27e815059d56508a22c6fd4347d8b88b5bce2a7484a356960992ef
|
|
7
|
+
data.tar.gz: 59bdabef23a0379bebd7905c57b50199b79dfc8e74bcf9e24ea5beb180f2492c02a5c901895a83d3ba871dc05769a5230749f20643383b2b6413697ac5d103bb
|
|
@@ -107,6 +107,7 @@ module Multiwoven
|
|
|
107
107
|
|
|
108
108
|
return excluded_openai_model?(model_id) if openrouter_id.start_with?("openai/")
|
|
109
109
|
return excluded_anthropic_model?(model_id) if openrouter_id.start_with?("anthropic/")
|
|
110
|
+
return excluded_google_gemini_model?(model_id) if openrouter_id.start_with?("google/")
|
|
110
111
|
|
|
111
112
|
false
|
|
112
113
|
end
|
|
@@ -136,6 +137,11 @@ module Multiwoven
|
|
|
136
137
|
minor ? "#{major}.#{minor}" : major
|
|
137
138
|
end
|
|
138
139
|
|
|
140
|
+
def excluded_google_gemini_model?(model_id)
|
|
141
|
+
@google_gemini_exclude_models ||= GOOGLE_GEMINI_EXCLUDE_MODELS.split(",").map(&:strip).reject(&:empty?)
|
|
142
|
+
@google_gemini_exclude_models.include?(model_id)
|
|
143
|
+
end
|
|
144
|
+
|
|
139
145
|
def read_json(file_path)
|
|
140
146
|
path = Object.const_source_location(self.class.to_s)[0]
|
|
141
147
|
connector_folder = File.dirname(path)
|
|
@@ -18,6 +18,7 @@ module Multiwoven
|
|
|
18
18
|
|
|
19
19
|
OPENAI_EXCLUDE_MODELS = ENV["OPENAI_EXCLUDE_MODELS"] || ""
|
|
20
20
|
ANTHROPIC_EXCLUDE_MODELS = ENV["ANTHROPIC_EXCLUDE_MODELS"] || ""
|
|
21
|
+
GOOGLE_GEMINI_EXCLUDE_MODELS = ENV["GOOGLE_GEMINI_EXCLUDE_MODELS"] || ""
|
|
21
22
|
|
|
22
23
|
# CONNECTORS
|
|
23
24
|
INSTALL_HTTPFS_QUERY = ENV["INSTALL_HTTPFS_QUERY"] || "INSTALL HTTPFS; LOAD HTTPFS;"
|
|
@@ -1,26 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"//models": "Sourced live from OpenRouter.
|
|
3
|
-
"models": [
|
|
4
|
-
{
|
|
5
|
-
"id": "text-embedding-004",
|
|
6
|
-
"name": "Text Embedding 004",
|
|
7
|
-
"model_type": "embedding",
|
|
8
|
-
"type": "embedding",
|
|
9
|
-
"tasks": [
|
|
10
|
-
"Text Embeddings"
|
|
11
|
-
],
|
|
12
|
-
"context_window": 2048,
|
|
13
|
-
"max_output": null,
|
|
14
|
-
"pricing": {
|
|
15
|
-
"input": 0.0,
|
|
16
|
-
"output": null,
|
|
17
|
-
"cached_read": null,
|
|
18
|
-
"cached_write": null,
|
|
19
|
-
"unit": "per_1m_tokens"
|
|
20
|
-
},
|
|
21
|
-
"capabilities": [
|
|
22
|
-
"Documents"
|
|
23
|
-
]
|
|
24
|
-
}
|
|
25
|
-
]
|
|
2
|
+
"//models": "Sourced live from OpenRouter via the openrouter_slug in meta.json. Do not hand-curate; add entries here only for models OpenRouter does not list.",
|
|
3
|
+
"models": []
|
|
26
4
|
}
|
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.10
|
|
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-09-
|
|
11
|
+
date: 2026-09-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|