mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-19 10:31:51 +00:00
22 lines
371 B
Plaintext
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"
|
|
}
|
|
}
|
|
}
|
|
\`\`\`
|