mirror of
https://github.com/BookStackApp/BookStack.git
synced 2026-02-25 03:10:24 +03:00
13 lines
250 B
PHP
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;
|
|
}
|