Lines Matching refs:storage
35 protected $storage; variable in dokuwiki\\plugin\\aichat\\Embeddings
52 * @param AbstractStorage $storage
58 AbstractStorage $storage, argument
64 $this->storage = $storage;
77 return $this->storage;
161 $this->storage->startCreation($clear);
173 $this->storage->deletePageChunks($page, $chunkID);
177 $firstChunk = $this->storage->getChunk($chunkID);
180 $this->storage->reusePageChunks($page, $chunkID);
184 $this->storage->deletePageChunks($page, $chunkID);
186 if ($chunks) $this->storage->addPageChunks($chunks);
189 $this->storage->finalizeCreation();
312 $chunks = $this->storage->getSimilarChunks($vector, $lang, $fetch);
406 $chunks = $this->storage->getPageChunks($page, $pos * 100);