multiwoven-integrations 0.27.0 → 0.27.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cbd0d602c8388b27dbcb21828148c5c00fcdf260213c2937e4cd501d16b9fb9e
|
4
|
+
data.tar.gz: d6520c4f7976af01f97b2f8b7e06dbee8e68e94a980aedc9e75b55694542a0ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac660b7f3b5f4c3ac888ebe912aae96f0333a0d5a894875e379ffac898f3f493b56ed1d336bafc41a9b4f804d3d0ea3677828e9f98cd294d4de4cfcbc6955c30
|
7
|
+
data.tar.gz: 9766dfbbcd62e9c665a4c32039170683a0e4fb5c33fdac4fb5de9f6296384d2664b6cff1837dae02da33c1a55482c1e998d25832b2025ae1475b5f9b67a4e3a8
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Multiwoven
|
4
|
+
module Integrations::Core
|
5
|
+
class VectorSourceConnector < SourceConnector
|
6
|
+
# This needs to be implemented
|
7
|
+
# for all vector database sources
|
8
|
+
# that will be used in RAG workflows
|
9
|
+
def search(_vector_search_config)
|
10
|
+
raise "Not implemented"
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -10,7 +10,7 @@ module Multiwoven
|
|
10
10
|
SyncStatus = Types::String.enum("started", "running", "complete", "incomplete")
|
11
11
|
DestinationSyncMode = Types::String.enum("insert", "upsert")
|
12
12
|
ConnectorType = Types::String.enum("source", "destination")
|
13
|
-
ConnectorQueryType = Types::String.enum("raw_sql", "soql", "ai_ml")
|
13
|
+
ConnectorQueryType = Types::String.enum("raw_sql", "soql", "ai_ml", "vector_search")
|
14
14
|
ModelQueryType = Types::String.enum("raw_sql", "dbt", "soql", "table_selector", "ai_ml", "dynamic_sql", "unstructured", "vector_search")
|
15
15
|
ConnectionStatusType = Types::String.enum("succeeded", "failed")
|
16
16
|
StreamType = Types::String.enum("static", "dynamic", "user_defined")
|
@@ -179,6 +179,12 @@ module Multiwoven
|
|
179
179
|
attribute :sync_id, Types::String.default("unknown")
|
180
180
|
end
|
181
181
|
|
182
|
+
class VectorConfig < ProtocolModel
|
183
|
+
attribute :source, Connector
|
184
|
+
attribute :vector, Types::Array.of(Types::Float)
|
185
|
+
attribute :limit, Types::Integer.default(1)
|
186
|
+
end
|
187
|
+
|
182
188
|
class ControlMessage < ProtocolModel
|
183
189
|
attribute :type, ControlMessageType
|
184
190
|
attribute :emitted_at, Types::Integer
|
@@ -60,6 +60,7 @@ require_relative "integrations/core/http_client"
|
|
60
60
|
require_relative "integrations/core/streaming_http_client"
|
61
61
|
require_relative "integrations/core/query_builder"
|
62
62
|
require_relative "integrations/core/unstructured_source_connector"
|
63
|
+
require_relative "integrations/core/vector_source_connector"
|
63
64
|
|
64
65
|
# Source
|
65
66
|
require_relative "integrations/source/snowflake/client"
|
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.27.
|
4
|
+
version: 0.27.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: 2025-
|
11
|
+
date: 2025-06-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -587,6 +587,7 @@ files:
|
|
587
587
|
- lib/multiwoven/integrations/core/streaming_http_client.rb
|
588
588
|
- lib/multiwoven/integrations/core/unstructured_source_connector.rb
|
589
589
|
- lib/multiwoven/integrations/core/utils.rb
|
590
|
+
- lib/multiwoven/integrations/core/vector_source_connector.rb
|
590
591
|
- lib/multiwoven/integrations/destination/airtable/client.rb
|
591
592
|
- lib/multiwoven/integrations/destination/airtable/config/catalog.json
|
592
593
|
- lib/multiwoven/integrations/destination/airtable/config/meta.json
|