mirror of
https://gh.wpcy.net/https://github.com/presswizards/FreeScoutGPT.git
synced 2026-07-15 03:13:10 +08:00
34 lines
No EOL
706 B
PHP
34 lines
No EOL
706 B
PHP
<?php
|
|
|
|
namespace Modules\FreeScoutGPT\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class GPTSettings extends Model
|
|
{
|
|
protected $table = 'freescoutgpt';
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $primaryKey = 'mailbox_id';
|
|
|
|
public $incrementing = false;
|
|
|
|
protected $fillable = [
|
|
'mailbox_id',
|
|
'api_key',
|
|
'token_limit',
|
|
'start_message',
|
|
'enabled',
|
|
'model',
|
|
'client_data_enabled',
|
|
'use_responses_api',
|
|
'article_urls',
|
|
'responses_api_prompt',
|
|
'infomaniak_enabled',
|
|
'infomaniak_api_key',
|
|
'infomaniak_product_id',
|
|
'infomaniak_model',
|
|
'infomaniak_api_prompt',
|
|
];
|
|
} |