| 1 | <?php |
||
| 8 | abstract class EmbeddingQueryNarrower implements QueryNarrowerInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | private $query; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * EmbeddingQueryNarrower constructor. |
||
| 17 | * |
||
| 18 | * @param string $query |
||
| 19 | * The big query containing further restrictions. Should contain a placeholder %s at the location where the |
||
| 20 | * unspecific query needs to be embedded. |
||
| 21 | */ |
||
| 22 | public function __construct(string $query) |
||
| 26 | |||
| 27 | public function narrow(string $query): string |
||
| 31 | } |
||
| 32 |