feat: support claude completions (#398)

This commit is contained in:
Carl-Robert 2024-03-06 12:48:29 +02:00 committed by GitHub
parent 20c31de21d
commit 9706a357d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
24 changed files with 283 additions and 10 deletions

View file

@ -18,6 +18,9 @@ public class ModelIconLabel extends JBLabel {
if ("chat.completion".equals(clientCode)) {
setIcon(Icons.OpenAI);
}
if ("anthropic.chat.completion".equals(clientCode)) {
setIcon(Icons.Anthropic);
}
if ("azure.chat.completion".equals(clientCode)) {
setIcon(Icons.Azure);
}