Lines Matching refs:ollamaClient
11 private $ollamaClient; variable in dokuwiki\\plugin\\dokullm\\ChromaDBClient
65 $this->ollamaClient = curl_init();
66 curl_setopt($this->ollamaClient, CURLOPT_RETURNTRANSFER, true);
67 curl_setopt($this->ollamaClient, CURLOPT_HTTPHEADER, [
81 curl_close($this->ollamaClient);
135 curl_setopt($this->ollamaClient, CURLOPT_URL, $ollamaUrl);
148 curl_setopt($this->ollamaClient, CURLOPT_POSTFIELDS, json_encode($data));
149 $response = curl_exec($this->ollamaClient);
150 $httpCode = curl_getinfo($this->ollamaClient, CURLINFO_HTTP_CODE);
151 if (curl_error($this->ollamaClient)) {
152 throw new \Exception('Ollama Curl error: ' . curl_error($this->ollamaClient));