Home
last modified time | relevance | path

Searched refs:firstChunkID (Results 1 – 6 of 6) sorted by relevance

/plugin/aichat/Storage/
DAbstractStorage.php58 * @param int $firstChunkID The ID of the first chunk to reuse
61 abstract public function reusePageChunks($page, $firstChunkID); argument
67 * @param int $firstChunkID The ID of the first chunk
70 abstract public function deletePageChunks($page, $firstChunkID); argument
103 * @param int $firstChunkID The ID of the first chunk
106 abstract public function getPageChunks($page, $firstChunkID); argument
DPineconeStorage.php112 public function reusePageChunks($page, $firstChunkID) argument
118 public function deletePageChunks($page, $firstChunkID) argument
121 $ids = range($firstChunkID, $firstChunkID + 99, 1);
169 public function getPageChunks($page, $firstChunkID) argument
171 $ids = range($firstChunkID, $firstChunkID + 99, 1);
DChromaStorage.php153 public function reusePageChunks($page, $firstChunkID) argument
159 public function deletePageChunks($page, $firstChunkID) argument
162 $ids = range($firstChunkID, $firstChunkID + 99, 1);
215 public function getPageChunks($page, $firstChunkID) argument
217 $ids = range($firstChunkID, $firstChunkID + 99, 1);
DQdrantStorage.php171 public function reusePageChunks($page, $firstChunkID) argument
177 public function deletePageChunks($page, $firstChunkID) argument
187 $ids = range($firstChunkID, $firstChunkID + 99, 1);
237 public function getPageChunks($page, $firstChunkID) argument
239 $ids = range($firstChunkID, $firstChunkID + 99, 1);
DSQLiteStorage.php73 public function reusePageChunks($page, $firstChunkID) argument
79 public function deletePageChunks($page, $firstChunkID) argument
118 public function getPageChunks($page, $firstChunkID) argument
/plugin/aichat/
DEmbeddings.php224 * @param int $firstChunkID The ID of the first chunk of this page
229 public function createPageChunks($page, $firstChunkID) argument
267 $chunkList[] = new Chunk($page, $firstChunkID, $part, $embedding);
268 $firstChunkID++;