mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-11 13:10:50 +00:00
feat: add Google Gemini API support (#535)
This commit is contained in:
parent
f5a63eb889
commit
74fc2e6219
21 changed files with 379 additions and 15 deletions
|
|
@ -27,6 +27,9 @@ public class ModelIconLabel extends JBLabel {
|
|||
if ("llama.chat.completion".equals(clientCode)) {
|
||||
setIcon(Icons.Llama);
|
||||
}
|
||||
if ("google.chat.completion".equals(clientCode)) {
|
||||
setIcon(Icons.Google);
|
||||
}
|
||||
setText(formatModelName(modelCode));
|
||||
setFont(JBFont.small());
|
||||
setHorizontalAlignment(SwingConstants.LEADING);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue