from openapi import SDK
with SDK(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
) as sdk:
res = sdk.llm.models.check_registry_model_health(id="meetkai:my-custom-chat-v1")
# Handle response
print(res){
"is_available": true,
"checked_at": 1704067200000
}Sondea el punto final del proveedor del modelo y actualiza el estado de salud.
from openapi import SDK
with SDK(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
) as sdk:
res = sdk.llm.models.check_registry_model_health(id="meetkai:my-custom-chat-v1")
# Handle response
print(res){
"is_available": true,
"checked_at": 1704067200000
}Gateway auth: send Authorization: Bearer <mka1-api-key>. For multi-user server-side integrations, you can also send X-On-Behalf-Of: <external-user-id>.
¿Esta página le ayudó?