GET /health/
import os
from aymara_ai import AymaraAI

client = AymaraAI(
    api_key=os.environ.get("AYMARA_AI_API_KEY"),  # This is the default and can be omitted
)
client.health.check()
curl \
 --request GET 'https://api.aymara.ai/health/'