Added video transcription
All checks were successful
Push image to registry / build-image (push) Successful in 5m59s

This commit is contained in:
2025-07-04 12:36:03 +02:00
parent a00c5ba4b8
commit f0e52147e4
8 changed files with 321 additions and 41 deletions

View File

@ -16,6 +16,20 @@ return [
* Null if not used
*/
'token' => env('LLM_API_TOKEN', null),
'transcription' => [
/**
* Host for the OpenAI transcription API.
* This should be the base URL of the OpenAI transcription API you are using with the API version (v1)
*/
'host' => env('TRANSC_API_HOST_URL', null),
/**
* Token for authenticating with the OpenAI transcription API.
* Null if not used
*/
'token' => env('TRANSC_API_TOKEN', null),
],
],
/**
@ -39,5 +53,9 @@ return [
'name' => env('LLM_VISION_MODEL', null),
'shouldThink' => env('LLM_VISION_MODEL_THINK', false),
],
'transcription' => [
'name' => env('TRANSC_TRANSCRIPTION_MODEL', null)
],
]
];