Searched refs:firstChunkID (Results 1 – 6 of 6) sorted by relevance
| /plugin/aichat/Storage/ |
| D | AbstractStorage.php | 58 * @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
|
| D | PineconeStorage.php | 112 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);
|
| D | ChromaStorage.php | 153 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);
|
| D | QdrantStorage.php | 171 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);
|
| D | SQLiteStorage.php | 73 public function reusePageChunks($page, $firstChunkID) argument 79 public function deletePageChunks($page, $firstChunkID) argument 118 public function getPageChunks($page, $firstChunkID) argument
|
| /plugin/aichat/ |
| D | Embeddings.php | 224 * @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++;
|