Home
last modified time | relevance | path

Searched refs:embedding (Results 1 – 25 of 47) sorted by relevance

12

/plugin/aichat/
DChunk.php16 * @param float[] $embedding
24 protected $embedding, argument
95 return $this->embedding;
99 * @param float[] $embedding
101 public function setEmbedding($embedding): void argument
103 $this->embedding = $embedding;
199 'embedding' => $this->embedding,
DAGENTS.md47 - Creates and retrieves embeddings via embedding models
58 - Creates and caches model instances (chat, rephrase, embedding)
73 - `EmbeddingInterface`: For embedding models (getEmbedding method, getDimensions method)
DEmbeddings.php257 $embedding = $this->embedModel->getEmbedding($part);
267 $chunkList[] = new Chunk($page, $firstChunkID, $part, $embedding);
Dcli.php283 foreach ($result['embedding'] as $name => $info) {
/plugin/command/inc/
Dextension.php69 * @param string $embedding 'inline' or 'block'
99 function getCachedData($embedding, $params, $paramHash, $content, argument
119 * @param string $embedding 'inline' or 'block'
139 function runCommand($embedding, $cachedData, &$renderer, argument
Dembedding.php117 $embedding = $this->getEmbeddingType();
119 '$p, $pH, $c, &$e', '"'.$embedding.'", $p, $pH, $c, $e');
154 $embedding = $this->getEmbeddingType();
156 '$c, &$r, &$e', '"'.$embedding.'", $c, $r, $e');
/plugin/aichat/_test/
DAbstractModelTest.php105 $embedding = $model->getEmbedding($text);
114 $this->assertIsArray($embedding);
115 $this->assertNotEmpty($embedding, 'Embedding should not be empty');
116 $this->assertIsFloat($embedding[0], 'Embedding should be an array of floats');
/plugin/aichat/Storage/
DSQLiteStorage.php197 * @param string $embedding JSON encoded vector array
200 public function sqliteCosineSimilarityCallback($query, $embedding) argument
204 json_decode($embedding, true, 512, JSON_THROW_ON_ERROR)
214 * @param float[] $embedding The normalized vector of the chunk
217 protected function cosineSimilarity($queryVector, $embedding) argument
221 if(!isset($embedding[$key])) break; // if the vector is shorter than the query, stop.
222 $dotProduct += $value * $embedding[$key];
/plugin/command/ext/
Dabstract.php14 function getCachedData($embedding, $params, $paramHash, $content, argument
31 if($embedding == 'block')
Ddt.php14 function getCachedData($embedding, $params, $paramHash, $content, argument
67 if($embedding == 'block')
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/
DFilter.YouTube.txt12 This directive enables YouTube video embedding in HTML Purifier. Check
14 on embedding videos</a> for more information on what this filter does.
DURI.DisableExternalResources.txt6 Disables the embedding of external resources, preventing users from
7 embedding things like images from other hosts. This prevents access
DURI.DisableResources.txt7 Disables embedding resources, essentially meaning no pictures. You can
/plugin/gist/
Dgist.php11 function getCachedData($embedding, $params, $paramHash, $content, &$errorMessage) argument
/plugin/aichat/db/
Dupdate0001.sql5 embedding BLOB NOT NULL, field
/plugin/embeddedphp/
H A Dplugin.info.txt6 desc Allows embedding PHP code on wiki pages
/plugin/yql/
Dplugin.info.txt6 desc A plugin for embedding results of the Yahoo! YQL query API.
/plugin/explorertree/
Dplugin.info.txt6 desc DokuWiki helper for embedding NS/page explorer to a plugin
/plugin/inlinejs/
Dplugin.info.txt6 desc Allow spot-based embedding of JavaScript and StyleSheet in the page.
/plugin/mapillary/
DREADME1 **This plugin is currently broken as Mapillary discontinued their embedding widget and the underlyi…
2 Please use the iframe plugin with the embedding options that Mapillary provides [http://blog.mapill…
/plugin/fontface/
Dinstall_fonts.txt4 The settings depend on the embedding technique you use.
/plugin/aichat/cli/
Ddev.php89 if (!in_array($data['mode'], ['chat', 'embedding'])) continue;
/plugin/iframeinterwiki/
H A DREADME.md107 - Check if the target URL allows iframe embedding
113 - Validate external URLs before embedding
/plugin/dokullm/
H A DREADME.md37 - Ollama for local embedding generation (optional)
/plugin/commonmark/
H A DREADME.md18 …krun", DW have [completely disabled](https://www.dokuwiki.org/faq:html) embedding HTML code. [HTML…

12