Skip to content

Commit f93272b

Browse files
committed
auto codestyle cleanup
1 parent 661701e commit f93272b

File tree

6 files changed

+604
-622
lines changed

6 files changed

+604
-622
lines changed

Model/Groq/ChatModel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function __construct(string $name, array $config)
1616
throw new \Exception('Groq API key not configured');
1717
}
1818

19-
$this->http->headers['Authorization'] = 'Bearer '.$config['groq_apikey'];
19+
$this->http->headers['Authorization'] = 'Bearer ' . $config['groq_apikey'];
2020
}
2121

2222
/** @inheritdoc */

Model/Ollama/AbstractOllama.php

-1
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,4 @@ protected function parseAPIResponse($response)
5151

5252
return $response;
5353
}
54-
5554
}

Model/Reka/ChatModel.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ protected function request($endpoint, $data)
6565
/** @inheritdoc */
6666
protected function parseAPIResponse($response)
6767
{
68-
if(((int) $this->http->status) !== 200) {
69-
if(isset($response['detail'])) {
68+
if (((int) $this->http->status) !== 200) {
69+
if (isset($response['detail'])) {
7070
throw new \Exception('Reka API error: ' . $response['detail']);
7171
} else {
7272
throw new \Exception('Reka API error: ' . $this->http->status . ' ' . $this->http->error);

Storage/PineconeStorage.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public function deletePageChunks($page, $firstChunkID)
124124
$this->runQuery('/vectors/delete', ['ids' => $ids]);
125125
} catch (\Exception $e) {
126126
// 5 is the code for "namespace not found" See #12
127-
if($e->getCode() !== 5) throw $e;
127+
if ($e->getCode() !== 5) throw $e;
128128
}
129129
}
130130

cli.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -358,10 +358,10 @@ protected function createEmbeddings($clear)
358358
$data = $this->helper->getRunData();
359359
$lastEmbedModel = $data['embed used'] ?? '';
360360

361-
if(
361+
if (
362362
!$clear && $lastEmbedModel &&
363363
$lastEmbedModel != (string) $this->helper->getEmbeddingModel()
364-
){
364+
) {
365365
$this->warning('Embedding model has changed since last run. Forcing an index rebuild');
366366
$clear = true;
367367
}

0 commit comments

Comments
 (0)