Examples
Python
import requests
API_KEY = "gbs_live_abc123..."
BASE_URL = "https://api.gibs.dev"
def classify_ai_system(description: str) -> dict:
response = requests.post(
f"{BASE_URL}/v1/classify",
headers={"Authorization": f"Bearer {API_KEY}"},
json={"description": description},
)
response.raise_for_status()
return response.json()
result = classify_ai_system("AI chatbot that helps customers choose insurance products")
print(f"Risk level: {result['risk_level']}")
print(f"Sources: {[s['article'] for s in result['sources']]}")JavaScript / Node.js
CI/CD — GitHub Actions
MCP Server (Claude / Cursor / AI Agents)
Webhook / Scheduled Monitoring
Last updated