speaky 0.1.7 → 0.1.9
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/speaky/vectorstore_base.rb +1 -1
- data/lib/speaky/vectorstore_faiss.rb +51 -25
- data/lib/speaky/vectorstore_qdrant.rb +2 -2
- data/lib/speaky/version.rb +1 -1
- data/lib/speaky.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 564d48d19c0f2c99ef2266064911bc1010523dd52d127c7aca4262c8b329700f
|
4
|
+
data.tar.gz: 38c4365d3a09e26523c79da531211e276f53aa4a2ebff0a7337af8ff6e47a307
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 565cba4dfa83cd596d3fafbf45db271ffc99225726a7af0ad7a899f859c8157cca0da0308f79957f0d7307ad15e9c34ef31e009e960dc4cadd35b77cd171dbed
|
7
|
+
data.tar.gz: 81edbf263c317fe847fe6befbaf6d8bef329114ab8e1f87fefc440b6499d9218ec0090e39e0cad414f61e421f98a97a74c0b499247834a4d9ab3fd8c28bae9b6
|
@@ -1,25 +1,51 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
1
|
+
# # frozen_string_literal: true
|
2
|
+
|
3
|
+
# require 'faiss'
|
4
|
+
|
5
|
+
# module Speaky
|
6
|
+
# class VectorstoreFaiss < VectorstoreBase
|
7
|
+
# def initialize(config)
|
8
|
+
# @config = config
|
9
|
+
|
10
|
+
# # check if the index path is set
|
11
|
+
# raise ArgumentError, 'index_path is required' unless @config[:index_path]
|
12
|
+
|
13
|
+
# # load index from index_path if exists
|
14
|
+
# if File.exist?(@config[:index_path])
|
15
|
+
# @index = Faiss::Index.load(@config[:index_path])
|
16
|
+
# else
|
17
|
+
# # create a new index
|
18
|
+
# index = Faiss::IndexFlatL2.new(1536)
|
19
|
+
# @index = Faiss::IndexIDMap.new(index)
|
20
|
+
# @index.save(@config[:index_path])
|
21
|
+
# end
|
22
|
+
# end
|
23
|
+
|
24
|
+
# def add(id, data)
|
25
|
+
# embeddings = Speaky.llm.embed(data)
|
26
|
+
|
27
|
+
# @index.add_with_ids([embeddings], [string_id_to_unique_int_id(id)])
|
28
|
+
|
29
|
+
# true
|
30
|
+
# end
|
31
|
+
|
32
|
+
# def remove(id)
|
33
|
+
# # remove is not supported by Faiss
|
34
|
+
# true
|
35
|
+
# end
|
36
|
+
|
37
|
+
# def query(question)
|
38
|
+
# # TODO: implement query
|
39
|
+
|
40
|
+
# []
|
41
|
+
# end
|
42
|
+
|
43
|
+
# private
|
44
|
+
|
45
|
+
# # This method is used to convert a string ID to a unique integer ID
|
46
|
+
# # that can be used by the Qdrant API.
|
47
|
+
# def string_id_to_unique_int_id(string_id)
|
48
|
+
# string_id.to_s.hash.abs
|
49
|
+
# end
|
50
|
+
# end
|
51
|
+
# end
|
@@ -67,7 +67,7 @@ module Speaky
|
|
67
67
|
|
68
68
|
points_search = @client.points.search(
|
69
69
|
collection_name: @config[:collection_name],
|
70
|
-
limit:
|
70
|
+
limit: 5,
|
71
71
|
vector: embeddings,
|
72
72
|
with_payload: true,
|
73
73
|
with_vector: false
|
@@ -78,7 +78,7 @@ module Speaky
|
|
78
78
|
raise 'Failed to search vectors'
|
79
79
|
end
|
80
80
|
|
81
|
-
points_search.dig('result').
|
81
|
+
points_search.dig('result').map { |r| r.dig('payload', 'content') }
|
82
82
|
end
|
83
83
|
|
84
84
|
def reset
|
data/lib/speaky/version.rb
CHANGED
data/lib/speaky.rb
CHANGED
@@ -87,7 +87,7 @@ module Speaky
|
|
87
87
|
template ||= default_template
|
88
88
|
|
89
89
|
# load context
|
90
|
-
context = vectorstore.query(question)
|
90
|
+
context = vectorstore.query(question).join("\n")
|
91
91
|
|
92
92
|
# generate prompt
|
93
93
|
prompt = template.gsub("{{context}}", context).gsub("{{question}}", question)
|