Home
last modified time | relevance | path

Searched refs:getEmbedding (Results 1 – 14 of 14) sorted by relevance

/plugin/aichat/Model/
H A DEmbeddingInterface.php22 public function getEmbedding($text): array; function
/plugin/aichat/Model/Mistral/
H A DEmbeddingModel.php10 public function getEmbedding($text): array function in dokuwiki\\plugin\\aichat\\Model\\Mistral\\EmbeddingModel
/plugin/aichat/Model/Ollama/
H A DEmbeddingModel.php10 public function getEmbedding($text): array function in dokuwiki\\plugin\\aichat\\Model\\Ollama\\EmbeddingModel
/plugin/aichat/Model/Gemini/
H A DEmbeddingModel.php10 public function getEmbedding($text): array function in dokuwiki\\plugin\\aichat\\Model\\Gemini\\EmbeddingModel
/plugin/aichat/Storage/
H A DQdrantStorage.php205 'vector' => $chunk->getEmbedding(),
216 '/collections/' . $this->getCollection(count($chunk->getEmbedding())) . '/points',
H A DPineconeStorage.php138 'values' => $chunk->getEmbedding(),
H A DChromaStorage.php182 $embeddings[] = $chunk->getEmbedding();
H A DSQLiteStorage.php92 'embedding' => json_encode($chunk->getEmbedding(), JSON_THROW_ON_ERROR),
/plugin/aichat/
H A DEmbeddings.php257 $embedding = $this->embedModel->getEmbedding($part);
298 $vector = $this->embedModel->getEmbedding($query);
369 $chunk->getEmbedding(),
H A DChunk.php93 public function getEmbedding() function in dokuwiki\\plugin\\aichat\\Chunk
H A DAGENTS.md73 - `EmbeddingInterface`: For embedding models (getEmbedding method, getDimensions method)
/plugin/aichat/Model/Generic/
H A DAbstractGenericModel.php82 public function getEmbedding($text): array function in dokuwiki\\plugin\\aichat\\Model\\Generic\\AbstractGenericModel
/plugin/aichat/syntax/
H A Dsimilar.php64 $similar += $storage->getSimilarChunks($chunk->getEmbedding(), 10);
/plugin/aichat/_test/
H A DAbstractModelTest.php105 $embedding = $model->getEmbedding($text);