This commit is contained in:
ct
2025-06-21 09:13:23 +08:00
parent db10fc3f1c
commit 8e58f85860
39 changed files with 684 additions and 181 deletions

View File

@@ -19,8 +19,6 @@
* @property string|null $tag
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
*
* @package App\Models
*/
class KeywordEmbedding extends Model
{
@@ -33,6 +31,6 @@ class KeywordEmbedding extends Model
protected $fillable = [
'keyword',
'embedding',
'tag'
'tag',
];
}