google_palm_api 0.1.0 → 0.1.1

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: 07dac69e13dd3173be4f180d964976dd23fa6fc77b36af0742507d853cf17638
4
- data.tar.gz: a495c0b2f59377c57c3d90f4d8bbedbc4835a75b194e745c7d99d0322e0fc8f4
3
+ metadata.gz: ac7103e077c1ab4551ab2c296f2eb3d99eb3b7359e59eea1a3b1b4bbdcfea815
4
+ data.tar.gz: ce2f516c03358ec6e1b320a333e2b630fd716565ed8c53e48528681a0c74eece
5
5
  SHA512:
6
- metadata.gz: 7732a91b0c60d747cb48c1f7c5f9d939d07708a518745ca2c0112b91b52343ef3c1e0b7359a39bcb33b4b5fb68e12b08858c5e5c607f8a9e8e26105111781da1
7
- data.tar.gz: 428afa1b2b46347acec9826fb8ca9f92eaa68418ba69761170b5e82809f120a4b86b09b47210e41fb405473a94c36bc0e9eba41cf5db4a8cdda9006ac9432608
6
+ metadata.gz: eef61e7eb7981f6f12f5568deb359e5a71c2339d0696e4c6595b5521df9a5bb16649587ba0c773f2c563b9aa9b4d6a44403cf1f2634854f388ce40cf05644486
7
+ data.tar.gz: 963774e47464929a32a2dc92247a8ed171eb79efb1b911bd0be25a28bb7396490e627a155f198e45354e42b5e96c15a57974befe4935d1836f2f7d42609048c0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2023-06-09
4
+ - Fix the `generate_chat_message()`
5
+
3
6
  ## [0.1.0] - 2023-05-23
4
7
 
5
8
  - Initial release
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- google_palm_api (0.1.0)
4
+ google_palm_api (0.1.1)
5
5
  faraday (>= 1.0.0)
6
6
  faraday_middleware (>= 1.0.0)
7
7
 
data/README.md CHANGED
@@ -1,8 +1,9 @@
1
1
  # GooglePalmApi
2
2
 
3
- TODO: Delete this and the text below, and describe your gem
3
+ Ruby API client for the Google PaLM APIs.
4
+
5
+ ![Tests status](https://github.com/andreibondarev/google_palm_api/actions/workflows/ci.yml/badge.svg) [![Gem Version](https://badge.fury.io/rb/google_palm_api.svg)](https://badge.fury.io/rb/google_palm_api)
4
6
 
5
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/google_palm_api`. To experiment with that code, run `bin/console` for an interactive prompt.
6
7
 
7
8
  ## Installation
8
9
 
@@ -85,10 +85,10 @@ module GooglePalmApi
85
85
  # @return [Hash]
86
86
  #
87
87
  def generate_chat_message(
88
- prompt:,
88
+ messages:,
89
+ prompt: nil,
89
90
  context: nil,
90
91
  examples: nil,
91
- messages: nil,
92
92
  temperature: nil,
93
93
  candidate_count: nil,
94
94
  top_p: nil,
@@ -99,10 +99,12 @@ module GooglePalmApi
99
99
  response = connection.post("/v1beta2/models/#{DEFAULTS[:chat_completion_model_name]}:generateMessage") do |req|
100
100
  req.params = {key: api_key}
101
101
 
102
- req.body = {prompt: {messages: [{content: prompt}]}}
103
- req.body[:context] = context if context
104
- req.body[:examples] = examples if examples
105
- req.body[:messages] = messages if messages
102
+ req.body = {prompt: {}}
103
+
104
+ req.body[:prompt][:messages] = messages if messages
105
+ req.body[:prompt][:context] = context if context
106
+ req.body[:prompt][:examples] = examples if examples
107
+
106
108
  req.body[:temperature] = temperature || DEFAULTS[:temperature]
107
109
  req.body[:candidate_count] = candidate_count if candidate_count
108
110
  req.body[:top_p] = top_p if top_p
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GooglePalmApi
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google_palm_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
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-24 00:00:00.000000000 Z
11
+ date: 2023-06-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry-byebug