Skip to content

Commit

Permalink
csfix
Browse files Browse the repository at this point in the history
  • Loading branch information
AlboCode committed Dec 18, 2023
1 parent bffbfd1 commit 3c945c1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/CCatClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,8 @@ public function getLLMSettings(string $llm): LLMSettingsOutput
* @param array<string, mixed> $values
* @return LLMSettingsOutput
*/
public function putLLMSettings(string $llm, array $values): LLMSettingsOutput {
public function putLLMSettings(string $llm, array $values): LLMSettingsOutput
{
$response = $this->httpClient->getHttpClient()->put(sprintf('/llm/settings/%s', $llm), [
'json' => $values
]);
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Api/LLMSetting/LLMSettingsOutput.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ class LLMSettingsOutput
* @var array<string, mixed>
*/
public array $value;
}
}
1 change: 1 addition & 0 deletions src/index.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

//
//
//require dirname(__DIR__).'/vendor/autoload.php';
Expand Down

0 comments on commit 3c945c1

Please sign in to comment.