Comprehensive API reference for integrating with Noxi Labs AI-powered DevOps platform
/ai/analyze-deploymentAnalyzes deployment logs and provides troubleshooting recommendations
/ai/generate-deploymentGenerates a test completion using Gemini LLM with system instruction grounded to current projects
/ai/hardware-deploymentLearns from historical deployments to provide proactive recommendations
const response = await fetch('https://api.noxilabs.dev/v1/ai/analyze-deployment', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
});
const data = await response.json();
console.log(data);