BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
app
/
Models
/
Chatbot
📤 Upload
📝 New File
📁 New Folder
Close
Editing: 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', ]; }
Save
Cancel