| Current Path : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Models/Chatbot/ |
| Current File : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Models/Chatbot/ChatbotDataVector.php |
<?php
namespace App\Models\Chatbot;
use Illuminate\Database\Eloquent\Model;
class ChatbotDataVector extends Model
{
protected $fillable = [
'chatbot_id',
'chatbot_data_id',
'content',
'embedding',
];
protected $casts = [
'embedding' => 'array',
];
}