Files
BookStack/app/Search/Vectors/Services/VectorQueryService.php
2025-08-17 09:43:00 +01:00

13 lines
250 B
PHP

<?php
namespace BookStack\Search\Vectors\Services;
interface VectorQueryService
{
/**
* Generate embedding vectors from the given chunk of text.
* @return float[]
*/
public function generateEmbeddings(string $text): array;
}