benchgecko 0.1.1 → 0.2.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +17 -8
- data/lib/benchgecko.rb +3 -3
- metadata +9 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d8d1081a88ea9b84bd0ce328125cca300ae5b50a4f958936531683a22291f342
|
|
4
|
+
data.tar.gz: 34aa28808170063b21ebb3dc1a5bbcb4ee7a8696f8697154044db7b57446e0ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9d8501cda7ce337d38df5c93918300a69fb739ba10c3032ee1880133aeffc97dfccaf1b88ab660fbb1ae9f8f2bebc70af2bdfef0911aa98c05e77d7fd0f50d19
|
|
7
|
+
data.tar.gz: ba861f4d31368d4a95017c561306ccee24de87dfa60cc79af246809acd1073d711427be4c31467b5d8192f9545f9702d857fbc6a416dff19f8f30662928054c0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.0 (2026-03-27)
|
|
4
|
+
|
|
5
|
+
- Rewrite gem description, summary, and README with the official BenchGecko brand voice
|
|
6
|
+
- Remove hardcoded model and provider counts in favor of evergreen language
|
|
7
|
+
- Reframe the SDK around the full BenchGecko data layer: models, companies, benchmarks, agents, and the live changelog
|
|
8
|
+
|
|
3
9
|
## 0.1.0 (2026-03-30)
|
|
4
10
|
|
|
5
11
|
- Initial release
|
data/README.md
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
# BenchGecko for Ruby
|
|
2
2
|
|
|
3
|
-
**The
|
|
3
|
+
**The data layer of the AI economy.** Official Ruby SDK for querying thousands of AI models with cross-provider pricing and daily price history, company valuations, funding timelines, revenue estimates, benchmark scores, agent leaderboards, and a live changelog of every price drop, every launch, every deprecation.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
If it moved in AI today, it's already on BenchGecko.
|
|
6
|
+
|
|
7
|
+
## What's Tracked
|
|
8
|
+
|
|
9
|
+
- **Models.** Thousands of AI models with cross-provider pricing and daily price history.
|
|
10
|
+
- **Companies.** Hundreds of AI companies with valuations, funding timelines, and revenue estimates.
|
|
11
|
+
- **Benchmarks.** Reasoning, coding, math, instruction following, safety, multimodal, multilingual, long context.
|
|
12
|
+
- **Agents.** Developer adoption signals and agent leaderboards.
|
|
13
|
+
- **Changelog.** Every price drop, every launch, every deprecation, as it happens.
|
|
6
14
|
|
|
7
15
|
## Installation
|
|
8
16
|
|
|
@@ -105,15 +113,16 @@ puts model.cost_per_million #=> 0.685
|
|
|
105
113
|
|
|
106
114
|
## Use Cases
|
|
107
115
|
|
|
108
|
-
- **Model selection pipelines
|
|
109
|
-
- **Cost monitoring
|
|
110
|
-
- **Benchmark dashboards
|
|
111
|
-
- **Agent evaluation
|
|
116
|
+
- **Model selection pipelines.** Programmatically pick the cheapest model that meets your quality bar.
|
|
117
|
+
- **Cost monitoring.** Estimate monthly spend across different model configurations.
|
|
118
|
+
- **Benchmark dashboards.** Pull structured scores into internal reporting tools.
|
|
119
|
+
- **Agent evaluation.** Compare AI agents across capability dimensions.
|
|
120
|
+
- **Pricing intelligence.** Track every price drop and launch through the live changelog.
|
|
112
121
|
|
|
113
122
|
## Resources
|
|
114
123
|
|
|
115
|
-
- [BenchGecko](https://benchgecko.ai)
|
|
116
|
-
- [Source Code](https://github.com/BenchGecko/benchgecko-ruby)
|
|
124
|
+
- [BenchGecko](https://benchgecko.ai). The data layer of the AI economy.
|
|
125
|
+
- [Source Code](https://github.com/BenchGecko/benchgecko-ruby). Contributions welcome.
|
|
117
126
|
|
|
118
127
|
## License
|
|
119
128
|
|
data/lib/benchgecko.rb
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# BenchGecko - The
|
|
4
|
-
#
|
|
3
|
+
# BenchGecko - The data layer of the AI economy.
|
|
4
|
+
# Every model. Every agent. Everything AI. Tracked.
|
|
5
5
|
# https://benchgecko.ai
|
|
6
6
|
|
|
7
7
|
module BenchGecko
|
|
8
|
-
VERSION = "0.
|
|
8
|
+
VERSION = "0.2.0"
|
|
9
9
|
|
|
10
10
|
# Represents an AI model with its benchmark scores, pricing, and metadata.
|
|
11
11
|
class Model
|
metadata
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: benchgecko
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- BenchGecko
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-04-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
description: Official Ruby SDK for BenchGecko, the data layer of the AI economy. Query
|
|
14
|
+
thousands of AI models with cross-provider pricing and daily price history. Track
|
|
15
|
+
company valuations, funding timelines, and revenue estimates. Pull benchmark scores,
|
|
16
|
+
agent leaderboards, and a live changelog of every price drop, every launch, every
|
|
17
|
+
deprecation. If it moved in AI today, it's already on BenchGecko.
|
|
17
18
|
email:
|
|
18
19
|
- hello@benchgecko.ai
|
|
19
20
|
executables: []
|
|
@@ -49,6 +50,6 @@ requirements: []
|
|
|
49
50
|
rubygems_version: 3.0.3.1
|
|
50
51
|
signing_key:
|
|
51
52
|
specification_version: 4
|
|
52
|
-
summary:
|
|
53
|
-
|
|
53
|
+
summary: The data layer of the AI economy. Every model. Every agent. Everything AI.
|
|
54
|
+
Tracked.
|
|
54
55
|
test_files: []
|