multiwoven-integrations 0.24.0 → 0.24.2
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/destination/pinecone_db/config/spec.json +1 -14
- data/lib/multiwoven/integrations/rollout.rb +1 -1
- data/lib/multiwoven/integrations/source/amazon_s3/config/spec.json +3 -3
- data/lib/multiwoven/integrations/source/postgresql/config/spec.json +9 -3
- 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: d21b3c70143662911799cd4ff9346b0e81474c5cb4d75b88246cd20d525d362e
|
4
|
+
data.tar.gz: c4870931157ff55a1018315151201924b321c71bed80577ba70494a60510cabd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 517a3d55c3b6d766ccbb99f7d6ed55778044800a6371047911ef06af58c82f531ba55a40d191b8d216806b07e3a44f78435fd53f5cd0a7fdc015b2831d86a748
|
7
|
+
data.tar.gz: bc9fb530ac0cc34e3828a0993e380c90b8d9469ea05fbbf994e2d80b49062fc5cf8d3a10cb7f8a9181bc604756a93a6d3dca97a4373f3b96c9ad7b2c75819505
|
@@ -6,7 +6,7 @@
|
|
6
6
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
7
7
|
"title": "Pinecone DB",
|
8
8
|
"type": "object",
|
9
|
-
"required": ["api_key", "region", "index_name"
|
9
|
+
"required": ["api_key", "region", "index_name"],
|
10
10
|
"properties": {
|
11
11
|
"api_key": {
|
12
12
|
"type": "string",
|
@@ -26,19 +26,6 @@
|
|
26
26
|
"title": "Index Name",
|
27
27
|
"description": "The name of the Pinecone index where vectors will be written.",
|
28
28
|
"order": 2
|
29
|
-
},
|
30
|
-
"model": {
|
31
|
-
"type": "string",
|
32
|
-
"title": "Model",
|
33
|
-
"enum": ["multilingual-e5-large", "llama-text-embed-v2", "pinecone-sparse-english-v0"],
|
34
|
-
"description": "The embedding model used to convert text into vector representations.",
|
35
|
-
"order": 3
|
36
|
-
},
|
37
|
-
"namespace": {
|
38
|
-
"type": "string",
|
39
|
-
"title": "Namespace",
|
40
|
-
"description": "The namespace within the index for logical separation of data.",
|
41
|
-
"order": 4
|
42
29
|
}
|
43
30
|
}
|
44
31
|
}
|
@@ -36,9 +36,9 @@
|
|
36
36
|
"description": "Type of data in the files",
|
37
37
|
"type": "string",
|
38
38
|
"title": "Data Format Type",
|
39
|
-
"
|
40
|
-
"structured",
|
41
|
-
"unstructured"
|
39
|
+
"oneOf": [
|
40
|
+
{ "const": "structured", "title": "Tables & Records (Structured)" },
|
41
|
+
{ "const": "unstructured", "title": "Documents & Files (Unstructured)" }
|
42
42
|
],
|
43
43
|
"default": "structured",
|
44
44
|
"order": 9
|
@@ -12,9 +12,15 @@
|
|
12
12
|
"description": "Type of data in the database",
|
13
13
|
"type": "string",
|
14
14
|
"title": "Data Format Type",
|
15
|
-
"
|
16
|
-
|
17
|
-
|
15
|
+
"oneOf": [
|
16
|
+
{
|
17
|
+
"const": "structured",
|
18
|
+
"title": "Tables & Records (Structured)"
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"const": "vector",
|
22
|
+
"title": "Tables & Records containing Vector fields"
|
23
|
+
}
|
18
24
|
],
|
19
25
|
"default": "structured",
|
20
26
|
"order": 0
|
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.24.
|
4
|
+
version: 0.24.2
|
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: 2025-05-
|
11
|
+
date: 2025-05-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|