mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
19 lines
555 B
PHP
19 lines
555 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| OpenAI API Key and Organization
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may specify your OpenAI API Key and organization. This will be
|
|
| used to authenticate with the OpenAI API - you can find your API key
|
|
| and organization on your OpenAI dashboard, at https://openai.com.
|
|
*/
|
|
|
|
'api_key' => env('OPENAI_API_KEY'),
|
|
'organization' => env('OPENAI_ORGANIZATION'),
|
|
|
|
];
|