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 +4 -4
- data/README.md +2 -0
- data/lib/llm_conductor/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 15ca3603df4d5bd68d92466c41db9d0f566553a59dc6dab0bc5c674da6c6a980
|
|
4
|
+
data.tar.gz: 47e207aaf562b252fcc69c8cee0332a71ccabee0ac46b1ce9316460795b61fe2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|