Skip to content

Commit c2f5508

Browse files
committed
show used query when doing similarity queries
1 parent ae09ced commit c2f5508

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Embeddings.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -264,8 +264,8 @@ public function getSimilarChunks($query, $lang = '')
264264
$this->timeSpent = round(microtime(true) - $time, 2);
265265
if ($this->logger instanceof CLI) {
266266
$this->logger->info(
267-
'Fetched {count} similar chunks from store in {time} seconds',
268-
['count' => count($chunks), 'time' => $this->timeSpent]
267+
'Fetched {count} similar chunks from store in {time} seconds. Query: {query}',
268+
['count' => count($chunks), 'time' => $this->timeSpent, 'query' => $query]
269269
);
270270
}
271271

0 commit comments

Comments
 (0)