weaviate-ruby 0.8.2 → 0.8.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: 4bcf8baba483726456d4c887dc2e7195a5b879992ed417d7d250c4d57c9937d4
4
- data.tar.gz: 6d5934c6ac503b6883fbc06efc505f2df9cc69a6441d10ab4793a86ec7bd61c1
3
+ metadata.gz: 8e63b3f0149e87dc2aec7c38970e91866e45dfccfc9e46c1378c27b9135f4a4d
4
+ data.tar.gz: f22c4a1c4eb8cdd2acd9d70b95404c46afb11c19e3821be35fb5b49048563dcb
5
5
  SHA512:
6
- metadata.gz: 21f5725a8751126d0468c3e48cdefc30ac37650193f7140e052bee082d1cdc572083896e0df0d5b3c0943958c56afb1d3cb0bcaf87cc1567fa7e2510674460cd
7
- data.tar.gz: 52fffd1f50a8f981f650b12487179ea47c4791f08d469389a03b15648017d52214db21eb9b61c3d82609c6b32b2b6f5e5d0ffd39d3c44710c64f13d7707ae828
6
+ metadata.gz: 843a49164ce05ed851dcf80e228e75839f05d7ee73c65087da21f72ab689f2c5388ac14ba06a1782c3aeda62ff1b01104bf52eb230313df145b9afafcb856c25
7
+ data.tar.gz: b1fd3ee9aa230da2499cc9ce1e8c24f69bb29a3199b07e16cf0f1095f53da9094a83ae849c9d266ff27a8292cb6d7b4166c7e257cb02a698b7d53702bbdb1f20
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.8.3] - 2023-06-25
4
+ - Add Google PaLM support
5
+
6
+ ## [0.8.2] - 2023-05-18
7
+
8
+ ## [0.8.1] - 2023-05-10
9
+
3
10
  ## [0.8.0] - 2023-04-18
4
11
 
5
12
  ### Breaking
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- weaviate-ruby (0.8.2)
4
+ weaviate-ruby (0.8.3)
5
5
  faraday (~> 1)
6
6
  faraday_middleware (~> 1)
7
7
  graphlient (~> 0.6.0)
data/README.md CHANGED
@@ -30,8 +30,8 @@ require 'weaviate'
30
30
  client = Weaviate::Client.new(
31
31
  url: 'https://some-endpoint.weaviate.network', # Replace with your endpoint
32
32
  api_key: '', # Weaviate API key
33
- model_service: :openai, # Service that will be used to generate vectors. Possible values: :openai, :azure_openai, :cohere, :huggingface
34
- model_service_api_key: 'xxxxxxx' # Either OpenAI, Azure OpenAI, Cohere or Hugging Face API key
33
+ model_service: :openai, # Service that will be used to generate vectors. Possible values: :openai, :azure_openai, :cohere, :huggingface, :google_palm
34
+ model_service_api_key: 'xxxxxxx' # Either OpenAI, Azure OpenAI, Cohere, Hugging Face or Google PaLM api key
35
35
  )
36
36
  ```
37
37
 
@@ -14,7 +14,8 @@ module Weaviate
14
14
  openai: "X-OpenAI-Api-Key",
15
15
  azure_openai: "X-Azure-Api-Key",
16
16
  cohere: "X-Cohere-Api-Key",
17
- huggingface: "X-HuggingFace-Api-Key"
17
+ huggingface: "X-HuggingFace-Api-Key",
18
+ google_palm: "X-Palm-Api-Key"
18
19
  }
19
20
 
20
21
  def initialize(
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Weaviate
4
- VERSION = "0.8.2"
4
+ VERSION = "0.8.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: weaviate-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.2
4
+ version: 0.8.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-19 00:00:00.000000000 Z
11
+ date: 2023-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday