Lines Matching refs:getConf
125 'enable_chromadb' => $this->getConf('enable_chromadb')
231 if ($this->getConf('enable_chromadb')) {
233 $this->getConf('chroma_host'),
234 $this->getConf('chroma_port'),
235 $this->getConf('chroma_tenant'),
236 $this->getConf('chroma_database'),
237 $this->getConf('chroma_collection'),
238 $this->getConf('ollama_host'),
239 $this->getConf('ollama_port'),
240 $this->getConf('ollama_embeddings_model')
244 $this->getConf('api_url'),
245 $this->getConf('api_key'),
246 $this->getConf('model'),
247 $this->getConf('timeout'),
248 $this->getConf('temperature'),
249 $this->getConf('top_p'),
250 $this->getConf('top_k'),
251 $this->getConf('min_p'),
252 $this->getConf('think', false),
253 $this->getConf('profile', 'default'),
301 $profile = $this->getConf('profile', 'default');
393 if ($this->getConf('enable_chromadb')) {
395 $this->getConf('chroma_host'),
396 $this->getConf('chroma_port'),
397 $this->getConf('chroma_tenant'),
398 $this->getConf('chroma_database'),
399 $this->getConf('chroma_collection'),
400 $this->getConf('ollama_host'),
401 $this->getConf('ollama_port'),
402 $this->getConf('ollama_embeddings_model')
406 $this->getConf('api_url'),
407 $this->getConf('api_key'),
408 $this->getConf('model'),
409 $this->getConf('timeout'),
410 $this->getConf('temperature'),
411 $this->getConf('top_p'),
412 $this->getConf('top_k'),
413 $this->getConf('min_p'),
414 $this->getConf('think', false),
415 $this->getConf('profile', 'default'),
478 if (!$this->getConf('enable_chromadb')) {
485 $chromaHost = $this->getConf('chroma_host');
486 $chromaPort = $this->getConf('chroma_port');
487 $chromaTenant = $this->getConf('chroma_tenant');
488 $chromaDatabase = $this->getConf('chroma_database');
489 $ollamaHost = $this->getConf('ollama_host');
490 $ollamaPort = $this->getConf('ollama_port');
491 $ollamaModel = $this->getConf('ollama_embeddings_model');
498 $this->getConf('chroma_collection'),
535 if ($this->getConf('replace_id')) {
559 if ($event->data['view'] != 'page' || !$this->getConf('show_copy_button')) {