We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fccbc24 commit 28c5b8dCopy full SHA for 28c5b8d
src/CCatClient.php
@@ -267,6 +267,11 @@ public function getPluginSettings(string $pluginId): PluginSettingsOutput
267
268
}
269
270
+ public function deletePlugin(string $pluginId): ResponseInterface
271
+ {
272
+ return $this->httpClient->getHttpClient()->delete(sprintf('/plugins/%s', $pluginId));
273
+ }
274
+
275
public function getLLMSettings(string $llm): LLMSettingsOutput
276
{
277
$response = $this->httpClient->getHttpClient()->get(sprintf('/llm/settings/%s', $llm), []);
0 commit comments