qdrant-ruby 0.9.1 → 0.9.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +4 -3
- data/README.md +9 -3
- data/lib/qdrant/version.rb +1 -1
- metadata +12 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 83421b4d9396204bd26f10785051c32a7501098ca5a25ae248dd9a7d9ed87ec3
|
4
|
+
data.tar.gz: ac329fe93aab2bef4c7a6356624c7ff177d5a236ac8cf945d62c738c6acff72a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc472841700f6f97a7986d69a678b78e1822633e2dd07ab2f042809d210f91ff3c7c636bb6091fd2b8a5344183067fe78768687c0eddfcc0b1d4530a1ac565de
|
7
|
+
data.tar.gz: f6b813a73743101e87a528d4ffa80c5ba986c8d341ff9f6ef014af47815d9ef293806216dfd002ae0c41acf8c25b02ae83bb27ec6e7c439406255bd5dc6c5e3e
|
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
qdrant-ruby (0.9.
|
5
|
-
faraday (
|
4
|
+
qdrant-ruby (0.9.3)
|
5
|
+
faraday (>= 2.0.1, < 3)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
@@ -11,7 +11,7 @@ GEM
|
|
11
11
|
byebug (11.1.3)
|
12
12
|
coderay (1.1.3)
|
13
13
|
diff-lcs (1.5.0)
|
14
|
-
faraday (2.7.
|
14
|
+
faraday (2.7.10)
|
15
15
|
faraday-net_http (>= 2.0, < 3.1)
|
16
16
|
ruby2_keywords (>= 0.0.4)
|
17
17
|
faraday-net_http (3.0.2)
|
@@ -69,6 +69,7 @@ GEM
|
|
69
69
|
|
70
70
|
PLATFORMS
|
71
71
|
x86_64-darwin-19
|
72
|
+
x86_64-darwin-21
|
72
73
|
x86_64-linux
|
73
74
|
|
74
75
|
DEPENDENCIES
|
data/README.md
CHANGED
@@ -6,9 +6,15 @@
|
|
6
6
|
<img alt='Ruby logo' src='https://user-images.githubusercontent.com/541665/230231593-43861278-4550-421d-a543-fd3553aac4f6.png' height='40' />
|
7
7
|
</p>
|
8
8
|
|
9
|
-
Ruby wrapper for the Qdrant vector search database API
|
9
|
+
Ruby wrapper for the Qdrant vector search database API.
|
10
10
|
|
11
|
-
|
11
|
+
Part of the [Langchain.rb](https://github.com/andreibondarev/langchainrb) stack.
|
12
|
+
|
13
|
+
![Tests status](https://github.com/andreibondarev/qdrant-ruby/actions/workflows/ci.yml/badge.svg)
|
14
|
+
[![Gem Version](https://badge.fury.io/rb/qdrant-ruby.svg)](https://badge.fury.io/rb/qdrant-ruby)
|
15
|
+
[![Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://rubydoc.info/gems/qdrant-ruby)
|
16
|
+
[![License](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/andreibondarev/qdrant-ruby/blob/main/LICENSE.txt)
|
17
|
+
[![](https://dcbadge.vercel.app/api/server/WDARp7J2n8?compact=true&style=flat)](https://discord.gg/WDARp7J2n8)
|
12
18
|
|
13
19
|
## Installation
|
14
20
|
|
@@ -37,7 +43,7 @@ client = Qdrant::Client.new(
|
|
37
43
|
|
38
44
|
```ruby
|
39
45
|
# Get list name of all existing collections
|
40
|
-
client.collections.list
|
46
|
+
client.collections.list
|
41
47
|
|
42
48
|
# Get detailed information about specified existing collection
|
43
49
|
client.collections.get(collection_name: "string")
|
data/lib/qdrant/version.rb
CHANGED
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: qdrant-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrei Bondarev
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 2.0.1
|
20
|
+
- - "<"
|
18
21
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
22
|
+
version: '3'
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 2.0.1
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
32
|
+
version: '3'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: pry-byebug
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|