llm_conductor 1.8.0 → 1.8.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: ac4b318b4227e3f089f42d471d51a1d7fefc9c54d080c30bbb2e748039ee4ae0
4
- data.tar.gz: c21eb439aed4fc671fde4dc30c06c12f0853a5f99ba29d47c3bd3b389f5b27c0
3
+ metadata.gz: 15ca3603df4d5bd68d92466c41db9d0f566553a59dc6dab0bc5c674da6c6a980
4
+ data.tar.gz: 47e207aaf562b252fcc69c8cee0332a71ccabee0ac46b1ce9316460795b61fe2
5
5
  SHA512:
6
- metadata.gz: 918613d702e3918ae5651ec8aefab34126a36a17c0be75549a2227fb9a3e6b7392c245a7d96a2d15df6e76996e871c66c1572cb1f061d5bef1c96fe1e31ec8e4
7
- data.tar.gz: e4b356669ce32103a8a264c66574edf7f0819379240798d0d91b0cd29c623e512cd6776eb4d5bcf421d6fb8cb30bb2467cc188154910928a8aa6b16adc017d76
6
+ metadata.gz: 031f71338832774e993b0ba1c1f6c63002299b82f52e2e11bb8d3b1d4e06d6c69f395cb6afdceea600432d8b6b3d658d198f8b4d8460885e813daab15761be5d
7
+ data.tar.gz: f1a113133ccb7b6669902b112cb20cbd3a1a53cba30220f0a3906e3482389ff2749ecaf4d5b3d6eba3aeb5bae8203d3470d69d2043004cfcc9654bf3d8260aeb
data/README.md CHANGED
@@ -10,6 +10,7 @@ A unified Ruby interface for multiple Language Model providers from [Ekohe](http
10
10
  - 🔧 **Custom Parameters** - Fine-tune with temperature, top_p, and more
11
11
  - 💰 **Cost Tracking** - Automatic token counting and cost estimation
12
12
  - ⚡ **Smart Configuration** - Environment variables or code-based setup
13
+ - 📊 **Model Evaluation** - Compare models/vendors on cost, latency, tokens & LLM-judged quality (opt-in)
13
14
 
14
15
  ## Installation
15
16
 
@@ -318,6 +319,7 @@ See [`examples/model_eval_usage.rb`](examples/model_eval_usage.rb) for a complet
318
319
 
319
320
  - **[Custom Parameters Guide](docs/custom-parameters.md)** - Temperature, top_p, and more
320
321
  - **[Vision Support Guide](docs/vision-support.md)** - Using images with LLMs
322
+ - **[Model Evaluation](#model-evaluation-opt-in)** - Compare models on cost, latency & LLM-judged quality
321
323
  - **[Examples](examples/)** - Working code examples for all providers
322
324
 
323
325
  ## Examples
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LlmConductor
4
- VERSION = '1.8.0'
4
+ VERSION = '1.8.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: llm_conductor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0
4
+ version: 1.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Zheng