ruby_llm 0.1.0.pre5 → 0.1.0.pre7

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: e264102f1dc08b505cd5f32b71dfa76b08739eb432db629076540ca3a27f31a8
4
- data.tar.gz: 63e4980ef0b41a61fc841fa4c34c159e43a449684e63eb53b5d86f6f74e0f2ec
3
+ metadata.gz: 8eb02dfff845a6208bc5adfdf8521b631d9d55f426f97055c896e25c225d3951
4
+ data.tar.gz: 82406d843c66ad41a7a4cdc1b7ea756b6deb120e5e30a77ef983b8cc9e7ca935
5
5
  SHA512:
6
- metadata.gz: 3445bb2819b3b4a694685517e7cc947e8f6e073c9dc9e13eb334c37e03d6ac00ec7baded472eab0615521daa14d872dac704aa1ff04188a3ced8e551bc111acb
7
- data.tar.gz: 1ab7e769e47b3116a92a615401fc2f088f04d47eb4eebb75684814e83d848a6c57142b1adafd0e1d75e3a3ed4893a0782b23bd9681b237104c4a17c6b2a9c19c
6
+ metadata.gz: fe88fbc67f5fd50951fb16b407279a507094b793c674e5cadab99ed2de58aff44aecdc7fcc1f36bb9a22ebb8faf9cc990c8682f7728c4665d08b20bfdcbbfb46
7
+ data.tar.gz: 62ca5d2399b8ffee6cc247ba36eec99d52488e7cbead4b20e7b7f17284ec65c4113ff3b2dad1b6c1169aab9a8a1bc1365c606a0f172e0d9d205f545c75eef1aa
@@ -11,7 +11,7 @@ jobs:
11
11
  uses: ./.github/workflows/test.yml
12
12
 
13
13
  build:
14
- # needs: test # This ensures tests must pass before building/publishing
14
+ needs: test # This ensures tests must pass before building/publishing
15
15
  name: Build + Publish
16
16
  runs-on: ubuntu-latest
17
17
  permissions:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubyLLM
4
- VERSION = '0.1.0.pre5'
4
+ VERSION = '0.1.0.pre7'
5
5
  end
data/lib/ruby_llm.rb CHANGED
@@ -28,7 +28,7 @@ module RubyLLM
28
28
  end
29
29
 
30
30
  def logger
31
- @logger ||= Logger.new($stdout)
31
+ @logger ||= Logger.new($stdout, level: ENV['RUBY_LLM_DEBUG'] == 'true' ? Logger::DEBUG : Logger::INFO)
32
32
  end
33
33
  end
34
34
  end
data/ruby_llm.gemspec CHANGED
@@ -8,18 +8,19 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ['Carmine Paolino']
9
9
  spec.email = ['carmine@paolino.me']
10
10
 
11
- spec.summary = 'The Ruby LLM client library - unified interface for OpenAI, Anthropic, and other LLM providers'
12
- spec.description = 'Complete Ruby library for working with Large Language Models (LLMs). ' \
13
- 'Supports OpenAI, Anthropic, and others with a consistent interface. ' \
14
- 'Features include tool usage, token tracking, and seamless Rails integration.'
11
+ spec.summary = 'Clean Ruby interface to modern AI language models'
12
+ spec.description = 'A delightful Ruby way to work with AI language models. Provides a unified interface to OpenAI' \
13
+ ' and Anthropic models with automatic token counting, proper streaming support, and a focus on' \
14
+ ' developer happiness. No wrapping your head around multiple APIs - just clean Ruby code that' \
15
+ ' works.'
15
16
  spec.homepage = 'https://github.com/crmne/ruby_llm'
16
17
  spec.license = 'MIT'
17
18
  spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0')
18
19
 
19
20
  spec.metadata['homepage_uri'] = spec.homepage
20
21
  spec.metadata['source_code_uri'] = spec.homepage
21
- spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/main/CHANGELOG.md"
22
- spec.metadata['documentation_uri'] = 'https://rubydoc.info/gems/ruby_llm'
22
+ spec.metadata['changelog_uri'] = "#{spec.homepage}/commits/main"
23
+ spec.metadata['documentation_uri'] = spec.homepage
23
24
  spec.metadata['bug_tracker_uri'] = "#{spec.homepage}/issues"
24
25
 
25
26
  # Specify which files should be added to the gem when it is released.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_llm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre5
4
+ version: 0.1.0.pre7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carmine Paolino
@@ -322,9 +322,10 @@ dependencies:
322
322
  - - ">="
323
323
  - !ruby/object:Gem::Version
324
324
  version: '0.9'
325
- description: Complete Ruby library for working with Large Language Models (LLMs).
326
- Supports OpenAI, Anthropic, and others with a consistent interface. Features include
327
- tool usage, token tracking, and seamless Rails integration.
325
+ description: A delightful Ruby way to work with AI language models. Provides a unified
326
+ interface to OpenAI and Anthropic models with automatic token counting, proper streaming
327
+ support, and a focus on developer happiness. No wrapping your head around multiple
328
+ APIs - just clean Ruby code that works.
328
329
  email:
329
330
  - carmine@paolino.me
330
331
  executables: []
@@ -366,8 +367,8 @@ licenses:
366
367
  metadata:
367
368
  homepage_uri: https://github.com/crmne/ruby_llm
368
369
  source_code_uri: https://github.com/crmne/ruby_llm
369
- changelog_uri: https://github.com/crmne/ruby_llm/blob/main/CHANGELOG.md
370
- documentation_uri: https://rubydoc.info/gems/ruby_llm
370
+ changelog_uri: https://github.com/crmne/ruby_llm/commits/main
371
+ documentation_uri: https://github.com/crmne/ruby_llm
371
372
  bug_tracker_uri: https://github.com/crmne/ruby_llm/issues
372
373
  post_install_message:
373
374
  rdoc_options: []
@@ -387,6 +388,5 @@ requirements: []
387
388
  rubygems_version: 3.5.22
388
389
  signing_key:
389
390
  specification_version: 4
390
- summary: The Ruby LLM client library - unified interface for OpenAI, Anthropic, and
391
- other LLM providers
391
+ summary: Clean Ruby interface to modern AI language models
392
392
  test_files: []