documentrix 0.0.0 → 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +16 -0
- data/LICENSE +19 -0
- data/Rakefile +1 -1
- data/docker-compose.yml +10 -0
- data/documentrix.gemspec +7 -7
- data/lib/documentrix/version.rb +1 -1
- data/redis/redis.conf +5 -0
- metadata +9 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 681b65f2c422db0a749e2ec33fba7eadabfaa1d2edc3c47d88ee6dfa0ac9cdd0
|
4
|
+
data.tar.gz: ba48587f3434dbd91b074781712ea4117f6f52874cc03890f2a1e79fb36b1891
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a4028ee84733d6e5df6300d60c2ede2ae8e003ac893f3583e1cb3288ca6e85451085d0fd8c3e26654eea490b51849d47c0ea027f5663a12a38002c96ef2117c
|
7
|
+
data.tar.gz: ca0193dea4d6c751a69e001e18676a3ec9afe4cc02d30175fb74a4ae21a7fc39e2978ee8af7d2a50e65a2275ff86cc51bf5e72a22aa0252f3ac13634d247590b
|
data/CHANGES.md
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# Changes
|
2
|
+
|
3
|
+
## 2025-01-29 v0.0.1
|
4
|
+
|
5
|
+
* Added docker-compose redis
|
6
|
+
* Added a `services` section to `docker-compose.yml`
|
7
|
+
* Created Redis service with image `valkey/valkey:*7.2.8-alpine*` and specified ports
|
8
|
+
* Configured Redis volumes, including mounting a Redis config file (`./redis/redis.conf`)
|
9
|
+
* Created new file `redis/redis.conf` with Redis configuration settings
|
10
|
+
* Added support for **Ruby 3.4** to the Docker image
|
11
|
+
* Added copyright notice and permissions to `LICENSE` file
|
12
|
+
* Remove double quotes from `summary` field
|
13
|
+
|
14
|
+
## 2024-12-06 v0.0.0
|
15
|
+
|
16
|
+
* Start
|
data/LICENSE
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
Copyright Florian Frank
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
4
|
+
this software and associated documentation files (the “Software”), to deal in
|
5
|
+
the Software without restriction, including without limitation the rights to
|
6
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
7
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
8
|
+
so, subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
11
|
+
copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
19
|
+
SOFTWARE.
|
data/Rakefile
CHANGED
@@ -8,7 +8,7 @@ GemHadar do
|
|
8
8
|
author 'Florian Frank'
|
9
9
|
email 'flori@ping.de'
|
10
10
|
homepage "https://github.com/flori/#{name}"
|
11
|
-
summary '
|
11
|
+
summary 'Ruby library for embedding vector database'
|
12
12
|
description <<~EOT
|
13
13
|
The Ruby library, Documentrix, is designed to provide a way to build and
|
14
14
|
query vector databases for applications in natural language processing
|
data/docker-compose.yml
ADDED
data/documentrix.gemspec
CHANGED
@@ -1,24 +1,24 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
-
# stub: documentrix 0.0.
|
2
|
+
# stub: documentrix 0.0.1 ruby lib
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "documentrix".freeze
|
6
|
-
s.version = "0.0.
|
6
|
+
s.version = "0.0.1".freeze
|
7
7
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
9
9
|
s.require_paths = ["lib".freeze]
|
10
10
|
s.authors = ["Florian Frank".freeze]
|
11
|
-
s.date = "
|
11
|
+
s.date = "2025-01-29"
|
12
12
|
s.description = "The Ruby library, Documentrix, is designed to provide a way to build and\nquery vector databases for applications in natural language processing\n(NLP) and large language models (LLMs). It allows users to store and\nretrieve dense vector embeddings for text strings.\n".freeze
|
13
13
|
s.email = "flori@ping.de".freeze
|
14
14
|
s.extra_rdoc_files = ["README.md".freeze, "lib/documentrix.rb".freeze, "lib/documentrix/documents.rb".freeze, "lib/documentrix/documents/cache/common.rb".freeze, "lib/documentrix/documents/cache/memory_cache.rb".freeze, "lib/documentrix/documents/cache/records.rb".freeze, "lib/documentrix/documents/cache/redis_backed_memory_cache.rb".freeze, "lib/documentrix/documents/cache/redis_cache.rb".freeze, "lib/documentrix/documents/cache/sqlite_cache.rb".freeze, "lib/documentrix/documents/splitters/character.rb".freeze, "lib/documentrix/documents/splitters/semantic.rb".freeze, "lib/documentrix/utils.rb".freeze, "lib/documentrix/utils/colorize_texts.rb".freeze, "lib/documentrix/utils/math.rb".freeze, "lib/documentrix/utils/tags.rb".freeze, "lib/documentrix/version.rb".freeze]
|
15
|
-
s.files = [".yardopts".freeze, "Gemfile".freeze, "README.md".freeze, "Rakefile".freeze, "documentrix.gemspec".freeze, "lib/documentrix.rb".freeze, "lib/documentrix/documents.rb".freeze, "lib/documentrix/documents/cache/common.rb".freeze, "lib/documentrix/documents/cache/memory_cache.rb".freeze, "lib/documentrix/documents/cache/records.rb".freeze, "lib/documentrix/documents/cache/redis_backed_memory_cache.rb".freeze, "lib/documentrix/documents/cache/redis_cache.rb".freeze, "lib/documentrix/documents/cache/sqlite_cache.rb".freeze, "lib/documentrix/documents/splitters/character.rb".freeze, "lib/documentrix/documents/splitters/semantic.rb".freeze, "lib/documentrix/utils.rb".freeze, "lib/documentrix/utils/colorize_texts.rb".freeze, "lib/documentrix/utils/math.rb".freeze, "lib/documentrix/utils/tags.rb".freeze, "lib/documentrix/version.rb".freeze, "spec/assets/embeddings.json".freeze, "spec/documentrix/documents/cache/memory_cache_spec.rb".freeze, "spec/documentrix/documents/cache/redis_backed_memory_cache_spec.rb".freeze, "spec/documentrix/documents/cache/redis_cache_spec.rb".freeze, "spec/documentrix/documents/cache/sqlite_cache_spec.rb".freeze, "spec/documentrix/documents/splitters/character_spec.rb".freeze, "spec/documentrix/documents/splitters/semantic_spec.rb".freeze, "spec/documents_spec.rb".freeze, "spec/spec_helper.rb".freeze, "spec/utils/colorize_texts_spec.rb".freeze, "spec/utils/tags_spec.rb".freeze]
|
15
|
+
s.files = [".yardopts".freeze, "CHANGES.md".freeze, "Gemfile".freeze, "LICENSE".freeze, "README.md".freeze, "Rakefile".freeze, "docker-compose.yml".freeze, "documentrix.gemspec".freeze, "lib/documentrix.rb".freeze, "lib/documentrix/documents.rb".freeze, "lib/documentrix/documents/cache/common.rb".freeze, "lib/documentrix/documents/cache/memory_cache.rb".freeze, "lib/documentrix/documents/cache/records.rb".freeze, "lib/documentrix/documents/cache/redis_backed_memory_cache.rb".freeze, "lib/documentrix/documents/cache/redis_cache.rb".freeze, "lib/documentrix/documents/cache/sqlite_cache.rb".freeze, "lib/documentrix/documents/splitters/character.rb".freeze, "lib/documentrix/documents/splitters/semantic.rb".freeze, "lib/documentrix/utils.rb".freeze, "lib/documentrix/utils/colorize_texts.rb".freeze, "lib/documentrix/utils/math.rb".freeze, "lib/documentrix/utils/tags.rb".freeze, "lib/documentrix/version.rb".freeze, "redis/redis.conf".freeze, "spec/assets/embeddings.json".freeze, "spec/documentrix/documents/cache/memory_cache_spec.rb".freeze, "spec/documentrix/documents/cache/redis_backed_memory_cache_spec.rb".freeze, "spec/documentrix/documents/cache/redis_cache_spec.rb".freeze, "spec/documentrix/documents/cache/sqlite_cache_spec.rb".freeze, "spec/documentrix/documents/splitters/character_spec.rb".freeze, "spec/documentrix/documents/splitters/semantic_spec.rb".freeze, "spec/documents_spec.rb".freeze, "spec/spec_helper.rb".freeze, "spec/utils/colorize_texts_spec.rb".freeze, "spec/utils/tags_spec.rb".freeze]
|
16
16
|
s.homepage = "https://github.com/flori/documentrix".freeze
|
17
17
|
s.licenses = ["MIT".freeze]
|
18
|
-
s.rdoc_options = ["--title".freeze, "Documentrix -
|
18
|
+
s.rdoc_options = ["--title".freeze, "Documentrix - Ruby library for embedding vector database".freeze, "--main".freeze, "README.md".freeze]
|
19
19
|
s.required_ruby_version = Gem::Requirement.new("~> 3.1".freeze)
|
20
|
-
s.rubygems_version = "3.
|
21
|
-
s.summary = "
|
20
|
+
s.rubygems_version = "3.6.2".freeze
|
21
|
+
s.summary = "Ruby library for embedding vector database".freeze
|
22
22
|
s.test_files = ["spec/documentrix/documents/cache/memory_cache_spec.rb".freeze, "spec/documentrix/documents/cache/redis_backed_memory_cache_spec.rb".freeze, "spec/documentrix/documents/cache/redis_cache_spec.rb".freeze, "spec/documentrix/documents/cache/sqlite_cache_spec.rb".freeze, "spec/documentrix/documents/splitters/character_spec.rb".freeze, "spec/documentrix/documents/splitters/semantic_spec.rb".freeze, "spec/documents_spec.rb".freeze, "spec/spec_helper.rb".freeze, "spec/utils/colorize_texts_spec.rb".freeze, "spec/utils/tags_spec.rb".freeze]
|
23
23
|
|
24
24
|
s.specification_version = 4
|
data/lib/documentrix/version.rb
CHANGED
data/redis/redis.conf
ADDED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: documentrix
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Florian Frank
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-29 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: gem_hadar
|
@@ -259,9 +258,12 @@ extra_rdoc_files:
|
|
259
258
|
- lib/documentrix/version.rb
|
260
259
|
files:
|
261
260
|
- ".yardopts"
|
261
|
+
- CHANGES.md
|
262
262
|
- Gemfile
|
263
|
+
- LICENSE
|
263
264
|
- README.md
|
264
265
|
- Rakefile
|
266
|
+
- docker-compose.yml
|
265
267
|
- documentrix.gemspec
|
266
268
|
- lib/documentrix.rb
|
267
269
|
- lib/documentrix/documents.rb
|
@@ -278,6 +280,7 @@ files:
|
|
278
280
|
- lib/documentrix/utils/math.rb
|
279
281
|
- lib/documentrix/utils/tags.rb
|
280
282
|
- lib/documentrix/version.rb
|
283
|
+
- redis/redis.conf
|
281
284
|
- spec/assets/embeddings.json
|
282
285
|
- spec/documentrix/documents/cache/memory_cache_spec.rb
|
283
286
|
- spec/documentrix/documents/cache/redis_backed_memory_cache_spec.rb
|
@@ -293,10 +296,9 @@ homepage: https://github.com/flori/documentrix
|
|
293
296
|
licenses:
|
294
297
|
- MIT
|
295
298
|
metadata: {}
|
296
|
-
post_install_message:
|
297
299
|
rdoc_options:
|
298
300
|
- "--title"
|
299
|
-
- Documentrix -
|
301
|
+
- Documentrix - Ruby library for embedding vector database
|
300
302
|
- "--main"
|
301
303
|
- README.md
|
302
304
|
require_paths:
|
@@ -312,10 +314,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
312
314
|
- !ruby/object:Gem::Version
|
313
315
|
version: '0'
|
314
316
|
requirements: []
|
315
|
-
rubygems_version: 3.
|
316
|
-
signing_key:
|
317
|
+
rubygems_version: 3.6.2
|
317
318
|
specification_version: 4
|
318
|
-
summary:
|
319
|
+
summary: Ruby library for embedding vector database
|
319
320
|
test_files:
|
320
321
|
- spec/documentrix/documents/cache/memory_cache_spec.rb
|
321
322
|
- spec/documentrix/documents/cache/redis_backed_memory_cache_spec.rb
|