11 lines
252 B
PHP
11 lines
252 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Contracts;
|
|
|
|
use App\DTOs\ArticleCandidateDTO;
|
|
|
|
interface ArticleRepositoryInterface
|
|
{
|
|
/** @return array<ArticleCandidateDTO> */
|
|
public function findSimilarByEmbedding(array $embedding, int $limit = 5): array;
|
|
} |