Files
TicketAssistent/app/Models/EmbeddingCache.php

16 lines
279 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class EmbeddingCache extends Model
{
protected $table = 'embedding_cache';
protected $fillable = ['text_hash', 'text', 'embedding'];
protected $casts = [
'embedding' => 'array',
];
}