Files
2025-10-30 18:58:05 +01:00

22 lines
371 B
Plaintext

---
title: "Create Lighthouse Provider"
api: "POST /api/v1/lighthouse/providers"
description: "Add AI provider for Lighthouse."
---
Configure an LLM provider.
## Request Body
\`\`\`json
{
"data": {
"type": "lighthouse-providers",
"attributes": {
"provider_type": "openai",
"api_key": "sk-...",
"name": "OpenAI Production"
}
}
}
\`\`\`