llm_hub 0.3.0 → 0.3.1

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: 48d9d052b63d19d6c83b84e5cae7c60ac65ce53d6fe464a557a665d682f55e55
4
- data.tar.gz: 276a0ad6024d42b9e6dc0000fb0ed2ecea7339ce8412b1be48c3ab1326c92279
3
+ metadata.gz: 1de72ed920d28f30dbab0a70be8384dfed017795865cfdfb7af895696cf32774
4
+ data.tar.gz: 0d2388d88588d9b4008294f468ff77813ea9d75d6d663d5d36ead835c5ff42ec
5
5
  SHA512:
6
- metadata.gz: 87949cc584f5f8cf6da70de897a1c31c5a0f3e66a312534a90c803ded364fa51cec51b5c855c339fa29c905765e11ea5f315f3de4254870d4fd5d2a50d29c382
7
- data.tar.gz: 5d4bdadeec61209087d063ed6e0cb98a490eb5e1f2423e724d0b154259f06416b1b44259a2d9a12fad169f5927fa1c9c6624b023a25e2cacacdeb64b2d3c4346
6
+ metadata.gz: be6017b2455e8a02db445cbee8da303143cd5455bc4b1f7d615ed7ddf3ec3df25c95f1a65e2bf0d65d66e7dbfbde5b6e724ebf82c78c007bc1339e23b6704c15
7
+ data.tar.gz: 66d508f50a7548f5a6be67658bdfee3c04039d0524e7125e091633601dbc9e70b301d13136a6f390211a78ff2cd46303666b6e0aac3c503acf78a4901c1957ea
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.3.1] - 2025-07-08
4
+
5
+ - Updated description
6
+
3
7
  ## [0.3.0] - 2025-07-08
4
8
 
5
9
  - Added Google as a provider.
data/README.md CHANGED
@@ -1,8 +1,19 @@
1
1
  # LlmHub
2
2
 
3
- This is a Ruby interface for multiple LLM providers, such as OpenAI, Anthropic, DeepSeek, and Google Gemini.
3
+ A Ruby interface for multiple LLM providers with Completion and Embedding support.
4
4
 
5
- It provides easy access to Completion and Embedding functionalities.
5
+ ## Supported Providers
6
+
7
+ ### Completion API
8
+ - **OpenAI**
9
+ - **Anthropic**
10
+ - **DeepSeek**
11
+ - **Google**
12
+
13
+ ### Embedding API
14
+ - **OpenAI**
15
+
16
+ The gem provides a unified interface to interact with these different providers, making it easy to switch between them or use multiple providers in your application.
6
17
 
7
18
  ## Installation
8
19
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LlmHub
4
- VERSION = '0.3.0'
4
+ VERSION = '0.3.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: llm_hub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - akiraNuma
@@ -37,9 +37,8 @@ dependencies:
37
37
  - - ">="
38
38
  - !ruby/object:Gem::Version
39
39
  version: '0'
40
- description: This is a Ruby interface for multiple LLM providers, such as OpenAI,
41
- Anthropic, DeepSeek, and Google Gemini.It provides easy access to Completion and
42
- Embedding functionalities.
40
+ description: A Ruby interface for multiple LLM providers.It provides easy access to
41
+ Completion and Embedding functionalities.
43
42
  email:
44
43
  - akiran@akiranumakura.com
45
44
  executables: []
@@ -93,6 +92,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
92
  requirements: []
94
93
  rubygems_version: 3.6.3
95
94
  specification_version: 4
96
- summary: This is a Ruby interface for multiple LLM providers, such as OpenAI, Anthropic,
97
- DeepSeek, and Google Gemini.
95
+ summary: A Ruby interface for multiple LLM providers.
98
96
  test_files: []