Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Models/Chatbot/
Upload File :
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',
    ];
}