Skip to content

Commit

Permalink
1744 - SF
Browse files Browse the repository at this point in the history
  • Loading branch information
ivicac committed Dec 18, 2024
1 parent 896d41c commit 5020cdf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -499,17 +499,17 @@ public void setApiKey(String apiKey) {
}
}

private NVIDIA NVIDIA = new NVIDIA();
private Nvidia nvidia = new Nvidia();

public NVIDIA getNVIDIA() {
return NVIDIA;
public Nvidia getNvidia() {
return nvidia;
}

public void setNVIDIA(NVIDIA NVIDIA) {
this.NVIDIA = NVIDIA;
public void setNvidia(Nvidia nvidia) {
this.nvidia = nvidia;
}

public static class NVIDIA {
public static class Nvidia {

private String apiKey;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ protected String perform(
yield GroqChatAction.CHAT;
}
case 9 -> {
modelConnectionParametersMap.put(TOKEN, component.getNVIDIA()
modelConnectionParametersMap.put(TOKEN, component.getNvidia()
.getApiKey());

yield NVIDIAChatAction.CHAT;
Expand Down

0 comments on commit 5020cdf

Please sign in to comment.