ruby_llm 0.1.0.pre49 → 1.0.0

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +18 -9
  3. data/lib/ruby_llm/version.rb +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c7a86805562863f11f52b4cc62826401774291b1a299a328d8622e8a721ffcd9
4
- data.tar.gz: 7757aa1b1ad19804c508a7988dd50fe91acce3e9ab0f66f69e013eb59c5c9196
3
+ metadata.gz: c357c02ad6d779fab06975f3e06d6d699fe8860b99f05af4f4f89116c0c02868
4
+ data.tar.gz: e1379dcae9b2077b5bde9dd2a1f1a110151db15286ffa3503e9f596f64eb05fb
5
5
  SHA512:
6
- metadata.gz: b4ce44b2baa5cc565b52f162acc8ce30517616425d7f3d320fc1357d64f9f657532f3c9f20fbbb2dc8a6cd340f5ba84bad912fbdceab184929ce971766c09071
7
- data.tar.gz: 6c15ce1c00cda64980d451a470ab1007bb7914fce9da43d3a1ce2bf08950c15bdd96ab2b80d9749292561e22903acc4974c20265b58a26d4130bd86f28018a7e
6
+ metadata.gz: 131ffdba032ec5844b1cd893ab3c712ee0a821faedc640ea4a2affc399f8c497a85b7a4c4e98daf13b7b7f52a1905e9135da4e94fd13967b96f47b02cd42a524
7
+ data.tar.gz: 75415cab8eba778d7b5d7918309dea8ea0e48bca1aca0ef13214835aec8ee9993bd943ff08efd827c5577636c6aa60ad998a6c81eac973e7cadd0061ce428fa2
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # RubyLLM
1
+ <img src="/docs/assets/images/logotype.svg" alt="RubyLLM" height="120" width="250">
2
2
 
3
3
  A delightful Ruby way to work with AI. No configuration madness, no complex callbacks, no handler hell – just beautiful, expressive Ruby code.
4
4
 
5
- <p align="center">
5
+ <div style="display: flex; align-items: center; flex-wrap: wrap; gap: 4px;">
6
6
  <img src="https://upload.wikimedia.org/wikipedia/commons/4/4d/OpenAI_Logo.svg" alt="OpenAI" height="40" width="120">
7
7
  &nbsp;&nbsp;&nbsp;&nbsp;
8
8
  <img src="https://upload.wikimedia.org/wikipedia/commons/7/78/Anthropic_logo.svg" alt="Anthropic" height="40" width="120">
@@ -10,14 +10,12 @@ A delightful Ruby way to work with AI. No configuration madness, no complex call
10
10
  <img src="https://upload.wikimedia.org/wikipedia/commons/8/8a/Google_Gemini_logo.svg" alt="Google" height="40" width="120">
11
11
  &nbsp;&nbsp;&nbsp;&nbsp;
12
12
  <img src="https://upload.wikimedia.org/wikipedia/commons/e/ec/DeepSeek_logo.svg" alt="DeepSeek" height="40" width="120">
13
- </p>
13
+ </div>
14
14
 
15
- <p align="center">
16
- <a href="https://badge.fury.io/rb/ruby_llm"><img src="https://badge.fury.io/rb/ruby_llm.svg" alt="Gem Version" /></a>
17
- <a href="https://github.com/testdouble/standard"><img src="https://img.shields.io/badge/code_style-standard-brightgreen.svg" alt="Ruby Style Guide" /></a>
18
- <a href="https://rubygems.org/gems/ruby_llm"><img alt="Gem Downloads" src="https://img.shields.io/gem/dt/ruby_llm"></a>
19
- <a href="https://codecov.io/gh/crmne/ruby_llm"><img src="https://codecov.io/gh/crmne/ruby_llm/branch/main/graph/badge.svg" alt="codecov" /></a>
20
- </p>
15
+ <a href="https://badge.fury.io/rb/ruby_llm"><img src="https://badge.fury.io/rb/ruby_llm.svg" alt="Gem Version" /></a>
16
+ <a href="https://github.com/testdouble/standard"><img src="https://img.shields.io/badge/code_style-standard-brightgreen.svg" alt="Ruby Style Guide" /></a>
17
+ <a href="https://rubygems.org/gems/ruby_llm"><img alt="Gem Downloads" src="https://img.shields.io/gem/dt/ruby_llm"></a>
18
+ <a href="https://codecov.io/gh/crmne/ruby_llm"><img src="https://codecov.io/gh/crmne/ruby_llm/branch/main/graph/badge.svg" alt="codecov" /></a>
21
19
 
22
20
  ðŸĪš Battle tested at [💎 Chat with Work](https://chatwithwork.com)
23
21
 
@@ -27,6 +25,17 @@ Every AI provider comes with its own client library, its own response format, it
27
25
 
28
26
  RubyLLM fixes all that. One beautiful API for everything. One consistent format. Minimal dependencies — just Faraday and Zeitwerk. Because working with AI should be a joy, not a chore.
29
27
 
28
+ ## Features
29
+
30
+ - 💎 **Chat** with OpenAI, Anthropic, Gemini, and DeepSeek models
31
+ - 👁ïļ **Vision and Audio** understanding
32
+ - 📄 **PDF Analysis** for analyzing documents
33
+ - 🖞ïļ **Image generation** with DALL-E and other providers
34
+ - 📊 **Embeddings** for vector search and semantic analysis
35
+ - 🔧 **Tools** that let AI use your Ruby code
36
+ - 🚂 **Rails integration** to persist chats and messages with ActiveRecord
37
+ - 🌊 **Streaming** responses with proper Ruby patterns
38
+
30
39
  ## What makes it great
31
40
 
32
41
  ```ruby
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubyLLM
4
- VERSION = '0.1.0.pre49'
4
+ VERSION = '1.0.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_llm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre49
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carmine Paolino
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-02-28 00:00:00.000000000 Z
11
+ date: 2025-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: event_stream_parser