builder_apm 0.5.12 → 0.5.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2f9d7c7af0913b72c61b524ecc012de2bf7184cbeb0feeb42dbf61e6b7fb71d6
4
- data.tar.gz: c4337273e42bec6234f1cb8c2987ab82a5dddb28ee150e179b3162d5d53ebdf5
3
+ metadata.gz: 4046741fdb0eb97585b597bde81dfc488910d2052e7b238760ef96169bb9a353
4
+ data.tar.gz: '0586f44c189135ff8691fb27de062f3f34fca6ce4f0da1c3802bf6ba860c22e4'
5
5
  SHA512:
6
- metadata.gz: 70c6b5cbe90f474260100e7d7c563a555f73cfe2f1f8072462f6e6934be7990ebf6c486b02d2b820b879c4fb65828abe86b0cc66b9dcc95348417a84ea051dbe
7
- data.tar.gz: 3b8b18b6c41bacc1b3cfd0a0a6ca2f691f097d2ce495bc99583b0582a61c28d654443235982360e3912cf256448de817c8de6a679f1009b1b13a91cddd19912b
6
+ metadata.gz: 99c4e7a0c2db87dbcb7595652b6e7c07ff733ff1ba65c5892714ac53813e1526558ac8e4484c1e0dd876e4cb3b3a7f2ce31416eaaa0dcfe5f27a756e79a9c972
7
+ data.tar.gz: a082f2c0a4249b85a03d77deb23853d20e9e1a167df6b258c1ec5caf930ce13a351ae47ab0a7d83c314476a2ac8822645449c75528d98273464c6587048ce41a
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- builder_apm (0.4.2)
4
+ builder_apm (0.5.12)
5
5
  rails (>= 4.0, < 8)
6
- redis (~> 4.5)
6
+ redis (>= 4.5)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -10,7 +10,7 @@ module BuilderApm
10
10
 
11
11
  def initialize(api_key)
12
12
  @api_key = api_key
13
- @uri = URI.parse("https://models-gateway.builder.ai/api/v1/openai/deployments/gpt-35-turbo/chat/completions")
13
+ @uri = URI.parse("https://models-gateway.builder.ai/api/v1/openai/deployments/gpt-35-turbo-16k-0613/chat/completions")
14
14
  @role = "You are to be my assistant"
15
15
  @temperature = 0.2
16
16
  end
@@ -1,3 +1,3 @@
1
1
  module BuilderApm
2
- VERSION = "0.5.12"
2
+ VERSION = "0.5.14"
3
3
  end
@@ -1,5 +1,5 @@
1
1
  BuilderApm.configure do |config|
2
- config.redis_url = 'redis://localhost:6379/0' # optional - defaults to 'redis://localhost:6379/0'
2
+ config.redis_url = ENV['REDIS_URL'] # optional - defaults to 'redis://localhost:6379/0'
3
3
  config.api_key = ENV["OPENAI_API_KEY"] #required only if you want to use Ai Doctor
4
4
  config.api = "Bravo" # optional - default to 'Bravo' - "Bravo" - internal Ai / "OpenAi" - use openai ChatGPT
5
5
  config.enable_active_record_profiler = true # optional - defaults to true
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: builder_apm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.12
4
+ version: 0.5.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Ketelle
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-10-03 00:00:00.000000000 Z
11
+ date: 2023-12-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails