from mka1 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
}Probes the model’s provider endpoint and updates health status.
from mka1 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>.
Was this page helpful?