model-cards
Get Model Card Pdf
Export a model card as PDF.
GET
/
v1
/
model-cards
/
{model_card_id}
/
pdf
Get Model Card Pdf
curl --request GET \
--url https://api.example.com/v1/model-cards/{model_card_id}/pdfimport requests
url = "https://api.example.com/v1/model-cards/{model_card_id}/pdf"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/model-cards/{model_card_id}/pdf', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}⌘I
Get Model Card Pdf
curl --request GET \
--url https://api.example.com/v1/model-cards/{model_card_id}/pdfimport requests
url = "https://api.example.com/v1/model-cards/{model_card_id}/pdf"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/model-cards/{model_card_id}/pdf', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}