replicate-client 0.1.1 → 0.1.2
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/lib/replicate-client/prediction.rb +6 -0
- data/lib/replicate-client/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: f52df5f5238a476baf9e3927913349bc9a331374dcbdd34024d4a133a962c48c
|
4
|
+
data.tar.gz: d640caa759a841a173cccdb6309377375e78b9c2fc77bba3d9894ef42701ef70
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b0883674e776e744ae3af6c1cfa5dd5dc6dcc472e5635ecafce1dc2c1a73251f3803921fb5b6ee7ef3557650e2604b5487f2a3d94bf597d07649f475596b371
|
7
|
+
data.tar.gz: d9cc6a9d6cb19efd0ecf7ae5aad3568282e37cbc1c3981d1718559398211c493fa6e23f2fd120c19e94a157fd6ecd7b331ee5ecf1b4be5490d8672db646f70cc
|
@@ -190,6 +190,11 @@ module ReplicateClient
|
|
190
190
|
# @return [Hash]
|
191
191
|
attr_accessor :urls
|
192
192
|
|
193
|
+
# The logs for the prediction.
|
194
|
+
#
|
195
|
+
# @return [String]
|
196
|
+
attr_accessor :logs
|
197
|
+
|
193
198
|
def initialize(attributes)
|
194
199
|
reset_attributes(attributes)
|
195
200
|
end
|
@@ -279,6 +284,7 @@ module ReplicateClient
|
|
279
284
|
@completed_at = attributes["completed_at"]
|
280
285
|
@metrics = attributes["metrics"]
|
281
286
|
@urls = attributes["urls"]
|
287
|
+
@logs = attributes["logs"]
|
282
288
|
|
283
289
|
@model = nil
|
284
290
|
@version = nil
|