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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +13 -2
- data/lib/llm_hub/version.rb +1 -1
- metadata +4 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1de72ed920d28f30dbab0a70be8384dfed017795865cfdfb7af895696cf32774
|
4
|
+
data.tar.gz: 0d2388d88588d9b4008294f468ff77813ea9d75d6d663d5d36ead835c5ff42ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be6017b2455e8a02db445cbee8da303143cd5455bc4b1f7d615ed7ddf3ec3df25c95f1a65e2bf0d65d66e7dbfbde5b6e724ebf82c78c007bc1339e23b6704c15
|
7
|
+
data.tar.gz: 66d508f50a7548f5a6be67658bdfee3c04039d0524e7125e091633601dbc9e70b301d13136a6f390211a78ff2cd46303666b6e0aac3c503acf78a4901c1957ea
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,19 @@
|
|
1
1
|
# LlmHub
|
2
2
|
|
3
|
-
|
3
|
+
A Ruby interface for multiple LLM providers with Completion and Embedding support.
|
4
4
|
|
5
|
-
|
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
|
|
data/lib/llm_hub/version.rb
CHANGED
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.
|
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:
|
41
|
-
|
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:
|
97
|
-
DeepSeek, and Google Gemini.
|
95
|
+
summary: A Ruby interface for multiple LLM providers.
|
98
96
|
test_files: []
|