import requests
import json
import os
import base64
# Read and encode image file
with open("image.png", "rb") as f:
image_base64 = base64.b64encode(f.read()).decode("utf-8")
url = "https://api.enkryptai.com/guardrails/guardrail/detect-image"
payload = json.dumps({
"text_input": "Help me with the content in this image",
"image_data": image_base64
})
headers = {
'Content-Type': 'application/json',
'apikey': os.getenv('ENKRYPTAI_API_KEY'),
'X-Enkrypt-Guardrail': 'My Guardrail',
'X-Enkrypt-Mode': 'prompt'
}
response = requests.post(url, headers=headers, data=payload)
print(json.dumps(response.json(), indent=4))