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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c5faeaf863dc4846f2a594e68c7a03858cf0e41e677103c57088aeb699539e32
4
- data.tar.gz: d86c32d7a033176eaad8661847daebf235f2cdffae482b491ef703b8a793bbbc
3
+ metadata.gz: 83421b4d9396204bd26f10785051c32a7501098ca5a25ae248dd9a7d9ed87ec3
4
+ data.tar.gz: ac329fe93aab2bef4c7a6356624c7ff177d5a236ac8cf945d62c738c6acff72a
5
5
  SHA512:
6
- metadata.gz: efbf0ef50926d4096992d4901f2dbb0dd0b7e87681fc9c9cfd56e678dfe98cd0713a35001f3500f04a8c4b749e1679ea204849adb6d2a929ed77d199258d52ec
7
- data.tar.gz: 1b52751835e08b9455299f12c35bbed9a18c1073d3ee2fe8cb3178ed554706204db03b99f9e404a64a3dc69d354cbaedb24ce25a3c5969c3b67fda8ae5a51bb1
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.1)
5
- faraday (~> 2.7)
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.4)
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
- ![Tests status](https://github.com/andreibondarev/qdrant-ruby/actions/workflows/ci.yml/badge.svg) [![Gem Version](https://badge.fury.io/rb/qdrant-ruby.svg)](https://badge.fury.io/rb/qdrant-ruby)
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(collection_name: "string")
46
+ client.collections.list
41
47
 
42
48
  # Get detailed information about specified existing collection
43
49
  client.collections.get(collection_name: "string")
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Qdrant
4
- VERSION = "0.9.1"
4
+ VERSION = "0.9.3"
5
5
  end
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.1
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-05-03 00:00:00.000000000 Z
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: '2.7'
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: '2.7'
32
+ version: '3'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: pry-byebug
29
35
  requirement: !ruby/object:Gem::Requirement