14 lines
249 B
PHP
14 lines
249 B
PHP
<?php
|
|
|
|
namespace App\Domain\Model\Persistence;
|
|
|
|
use App\Domain\Model\AI\Embedding;
|
|
|
|
class PersistedEmbedding
|
|
{
|
|
public function __construct(
|
|
public readonly string $phraseHash,
|
|
public readonly Embedding $embedding,
|
|
) {
|
|
}
|
|
} |