Added video transcription
All checks were successful
Push image to registry / build-image (push) Successful in 5m59s
All checks were successful
Push image to registry / build-image (push) Successful in 5m59s
This commit is contained in:
@ -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)
|
||||
],
|
||||
]
|
||||
];
|
||||
|
Reference in New Issue
Block a user