LLM reel caption and video description + Refactor in services

This commit is contained in:
2025-06-30 16:14:29 +02:00
parent 21abbcdff5
commit 228d67a48d
20 changed files with 575 additions and 151 deletions

View File

@ -2,10 +2,21 @@
return [
/**
* Host for the OpenAI API.
* This should be the base URL of the OpenAI API you are using.
* API configuration
*/
'host' => env('LLM_HOST_URL', null),
'api' => [
/**
* Host for the OpenAI API.
* This should be the base URL of the OpenAI API you are using.
*/
'host' => env('LLM_API_HOST_URL', null),
/**
* Token for authenticating with the OpenAI API.
* Null if not used
*/
'token' => env('LLM_API_TOKEN', null),
],
/**
* Models configuration.