PHP Classes

File: config/chatgpt-seeder.php

Recommend this page to a friend!
  Classes of Naif Alshaye   PHP ChatGPT API Seeder   config/chatgpt-seeder.php   Download  
File: config/chatgpt-seeder.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP ChatGPT API Seeder
Generate constant seed data using ChatGPT API
Author: By
Last change:
Date: 10 months ago
Size: 559 bytes
 

Contents

Class file image Download
<?php

return [

   
/*
    |--------------------------------------------------------------------------
    | ChatGPT Nova4 Configuration
    |--------------------------------------------------------------------------
    |
    | Here you may configure your settings for ChatGPT such as, API_Key and Max Tokens to be used per request.
    |
    */

   
'chatgpt_api_key' => env('CHATGPT_SEEDER_API_KEY', ''),
   
'chatgpt_max_tokens' => env('CHATGPT_SEEDER_MAX_TOKENS', '1000'),
   
'chatgpt_generate_retry' => env('CHATGPT_SEEDER_GENERATE_RETRY', '3'),


];