runapi-core 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/README.md +1 -1
- data/lib/runapi/core/pricing.rb +1 -0
- data/lib/runapi/core/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: cb5369d4bc3ec00ba92341e7151b7e1d62b6972ef3e84fd35474638da86a9926
|
|
4
|
+
data.tar.gz: ed1fe305dba138db597e86e31421312bf0a017d9c3ed1564b0e44044a9a537a0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7c885608b3f52f9e5ab11937e032149a164a781c8f413e19d394484a7b6576b622afd82c2c152ed52ca5ff67c389f9ee40d28aef174f7553947fd888c204a1cb
|
|
7
|
+
data.tar.gz: b0af7a1272a3f69003bb4fa80ca4848511f847dcd7a5a1e1c5678b358c90313962312ddc4f7a0f870a32de801cf2e5af94e33879fec14084ecf1b36e920be8ed
|
data/README.md
CHANGED
|
@@ -10,7 +10,7 @@ gem install runapi-core
|
|
|
10
10
|
|
|
11
11
|
## Notes
|
|
12
12
|
|
|
13
|
-
Use the core gem for common client options, error classes, request helpers, and task polling behavior that Provider Clients share. Public SDK docs live at https://runapi.ai/docs
|
|
13
|
+
Use the core gem for common client options, error classes, request helpers, and task polling behavior that Provider Clients share. Public SDK docs live at https://runapi.ai/docs/resources/sdks and the model catalog lives at https://runapi.ai/models.
|
|
14
14
|
|
|
15
15
|
## Live Pricing
|
|
16
16
|
|
data/lib/runapi/core/pricing.rb
CHANGED
|
@@ -21,6 +21,7 @@ module RunApi
|
|
|
21
21
|
optional :input_price_per_1m_cents, Numeric
|
|
22
22
|
optional :output_price_per_1m_cents, Numeric
|
|
23
23
|
optional :cache_read_price_per_1m_cents, Numeric
|
|
24
|
+
optional :cache_write_price_per_1m_cents, Numeric
|
|
24
25
|
optional :cache_write_5m_price_per_1m_cents, Numeric
|
|
25
26
|
optional :cache_write_1h_price_per_1m_cents, Numeric
|
|
26
27
|
required :billing_config, Hash
|
data/lib/runapi/core/version.rb
CHANGED