File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -208,12 +208,12 @@ def get_model_source(url):
208
208
209
209
210
210
def create_proprietary_model_table ():
211
- marketpkace_content_intro = f """
211
+ marketpkace_content_intro = """
212
212
.. list-table:: Available Proprietary Models
213
213
:widths: 50 20 20 20 20
214
214
:header-rows: 1
215
215
:class: datatable
216
-
216
+
217
217
* - Model ID
218
218
- Fine Tunable?
219
219
- Supported Version
Original file line number Diff line number Diff line change @@ -321,7 +321,8 @@ def _get_open_weight_manifest_key_from_model_id(
321
321
) -> JumpStartVersionedModelId :
322
322
"""For open weights models, retrieve model manifest key for open source model.
323
323
324
- Filters models list by supported versions."""
324
+ Filters models list by supported versions.
325
+ """
325
326
return self ._model_id_retrieval_function (
326
327
key , value , model_type = JumpStartModelType .OPEN_WEIGHTS
327
328
)
@@ -333,7 +334,8 @@ def _get_proprietary_manifest_key_from_model_id(
333
334
) -> JumpStartVersionedModelId :
334
335
"""For proprietary models, retrieve model manifest key for proprietary model.
335
336
336
- Filters models list by supported versions."""
337
+ Filters models list by supported versions.
338
+ """
337
339
return self ._model_id_retrieval_function (
338
340
key , value , model_type = JumpStartModelType .PROPRIETARY
339
341
)
You can’t perform that action at this time.
0 commit comments