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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/README.md +17 -8
  4. data/lib/benchgecko.rb +3 -3
  5. metadata +9 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e3c24fda70edf90737896315311a7fd3dadf39bdc5b72c0f80fa8d70aa794d5
4
- data.tar.gz: 63f534363f7724060ff2f430a65cda55b1d4d432ec3d566e7aa38527a8e5a14e
3
+ metadata.gz: d8d1081a88ea9b84bd0ce328125cca300ae5b50a4f958936531683a22291f342
4
+ data.tar.gz: 34aa28808170063b21ebb3dc1a5bbcb4ee7a8696f8697154044db7b57446e0ed
5
5
  SHA512:
6
- metadata.gz: 11141fb93c9345a50e484fe6597b89c205fb2cba4a81451929e19af888c6de94e1a71a8b7413073c8c990fb7a211a14ca498dcdce2b58b49743cfe6d35aa0867
7
- data.tar.gz: 4b6ef5a4f8d420710122b3a903e4e3d185298463bd8983b8911d1c00f9aede1c1a77a9cb1f13bdffc349448ab5e615b087b929c67cf8c5f55164ab006e09b5c5
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 CoinGecko for AI.** Ruby client for accessing AI model benchmarks, comparing language models, estimating inference costs, and discovering AI agents.
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
- BenchGecko tracks 300+ AI models across 50+ providers with real benchmark scores, latency metrics, and transparent pricing. This gem gives you structured access to that data directly in your Ruby applications -- no API key required for the built-in catalog.
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** -- programmatically pick the cheapest model that meets your quality bar
109
- - **Cost monitoring** -- estimate monthly spend across different model configurations
110
- - **Benchmark dashboards** -- pull structured scores into internal reporting tools
111
- - **Agent evaluation** -- compare AI agents across capability dimensions
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) -- Full platform with interactive comparisons
116
- - [Source Code](https://github.com/BenchGecko/benchgecko-ruby) -- Contributions welcome
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 CoinGecko for AI
4
- # Data platform for AI model benchmarks, pricing, and agent comparison
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.1.1"
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.1.1
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-03-31 00:00:00.000000000 Z
11
+ date: 2026-04-11 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: BenchGecko is the CoinGecko for AI. This gem provides a Ruby interface
14
- for accessing AI model benchmarks, comparing language models, estimating inference
15
- costs, and discovering AI agents. Query structured data on 300+ models across 50+
16
- providers with real benchmark scores, latency metrics, and transparent pricing.
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: Ruby client for BenchGecko - the data platform for AI model benchmarks, pricing,
53
- and agent comparison.
53
+ summary: The data layer of the AI economy. Every model. Every agent. Everything AI.
54
+ Tracked.
54
55
  test_files: []