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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f031fedd53842de85cae6fb9e02c7577013e795c093e0bb64d960800bd5580b8
4
- data.tar.gz: 1f080d995569715c0e90459542a691d21e975eb4133df214e59c72d8e453ff17
3
+ metadata.gz: d21b3c70143662911799cd4ff9346b0e81474c5cb4d75b88246cd20d525d362e
4
+ data.tar.gz: c4870931157ff55a1018315151201924b321c71bed80577ba70494a60510cabd
5
5
  SHA512:
6
- metadata.gz: ab040ff660c753381ace8f21f0134f22742fb25af368ff1ff0f9ebe76358d6a04c3474950b8341310c7936ccb49a08d3d2ea9e0d4836efde570bfcd2ce1b6cb7
7
- data.tar.gz: e9b13f683b6354acd34a42647ea684818551591dbf2777e86ac196659dbbce3556ecfee8b021fef9cbad2db5e72749d68372e8f1244755f03eadaaaea7665428
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", "model", "namespace"],
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
  }
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Multiwoven
4
4
  module Integrations
5
- VERSION = "0.24.0"
5
+ VERSION = "0.24.2"
6
6
 
7
7
  ENABLED_SOURCES = %w[
8
8
  Snowflake
@@ -36,9 +36,9 @@
36
36
  "description": "Type of data in the files",
37
37
  "type": "string",
38
38
  "title": "Data Format Type",
39
- "enum": [
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
- "enum": [
16
- "structured",
17
- "vector"
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.0
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-09 00:00:00.000000000 Z
11
+ date: 2025-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport