Skip to content

Commit

Permalink
update code after rebase
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandros Pappas <[email protected]>
  • Loading branch information
apappascs committed Feb 13, 2025
1 parent 4e67dbc commit 78067d9
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,9 @@ public boolean equals(Object o) {
&& Objects.equals(this.metadata, that.metadata)
&& Objects.equals(this.stopSequences, that.stopSequences)
&& Objects.equals(this.temperature, that.temperature) && Objects.equals(this.topP, that.topP)
&& Objects.equals(this.topK, that.topK)
&& Objects.equals(this.functionCallbacks, that.functionCallbacks)
&& Objects.equals(this.functions, that.functions)
&& Objects.equals(this.proxyToolCalls, that.proxyToolCalls)
&& Objects.equals(this.topK, that.topK) && Objects.equals(this.toolCallbacks, that.toolCallbacks)
&& Objects.equals(this.toolNames, that.toolNames)
&& Objects.equals(this.internalToolExecutionEnabled, that.internalToolExecutionEnabled)
&& Objects.equals(this.toolContext, that.toolContext);
}

Expand All @@ -274,9 +273,10 @@ public int hashCode() {
result = prime * result + (this.temperature != null ? this.temperature.hashCode() : 0);
result = prime * result + (this.topP != null ? this.topP.hashCode() : 0);
result = prime * result + (this.topK != null ? this.topK.hashCode() : 0);
result = prime * result + (this.functionCallbacks != null ? this.functionCallbacks.hashCode() : 0);
result = prime * result + (this.functions != null ? this.functions.hashCode() : 0);
result = prime * result + (this.proxyToolCalls != null ? this.proxyToolCalls.hashCode() : 0);
result = prime * result + (this.toolCallbacks != null ? this.toolCallbacks.hashCode() : 0);
result = prime * result + (this.toolNames != null ? this.toolNames.hashCode() : 0);
result = prime * result
+ (this.internalToolExecutionEnabled != null ? this.internalToolExecutionEnabled.hashCode() : 0);
result = prime * result + (this.toolContext != null ? this.toolContext.hashCode() : 0);
return result;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -439,9 +439,10 @@ public boolean equals(Object o) {
&& Objects.equals(this.n, that.n) && Objects.equals(this.stop, that.stop)
&& Objects.equals(this.deploymentName, that.deploymentName)
&& Objects.equals(this.responseFormat, that.responseFormat)
&& Objects.equals(this.functionCallbacks, that.functionCallbacks)
&& Objects.equals(this.functions, that.functions)
&& Objects.equals(this.proxyToolCalls, that.proxyToolCalls) && Objects.equals(this.seed, that.seed)

&& Objects.equals(this.toolCallbacks, that.toolCallbacks)
&& Objects.equals(this.toolNames, that.toolNames)
&& Objects.equals(this.internalToolExecutionEnabled, that.internalToolExecutionEnabled)
&& Objects.equals(this.logprobs, that.logprobs) && Objects.equals(this.topLogProbs, that.topLogProbs)
&& Objects.equals(this.enhancements, that.enhancements)
&& Objects.equals(this.streamOptions, that.streamOptions)
Expand All @@ -461,9 +462,10 @@ public int hashCode() {
result = prime * result + (this.stop != null ? this.stop.hashCode() : 0);
result = prime * result + (this.deploymentName != null ? this.deploymentName.hashCode() : 0);
result = prime * result + (this.responseFormat != null ? this.responseFormat.hashCode() : 0);
result = prime * result + (this.functionCallbacks != null ? this.functionCallbacks.hashCode() : 0);
result = prime * result + (this.functions != null ? this.functions.hashCode() : 0);
result = prime * result + (this.proxyToolCalls != null ? this.proxyToolCalls.hashCode() : 0);
result = prime * result + (this.toolCallbacks != null ? this.toolCallbacks.hashCode() : 0);
result = prime * result + (this.toolNames != null ? this.toolNames.hashCode() : 0);
result = prime * result
+ (this.internalToolExecutionEnabled != null ? this.internalToolExecutionEnabled.hashCode() : 0);
result = prime * result + (this.seed != null ? this.seed.hashCode() : 0);
result = prime * result + (this.logprobs != null ? this.logprobs.hashCode() : 0);
result = prime * result + (this.topLogProbs != null ? this.topLogProbs.hashCode() : 0);
Expand Down

0 comments on commit 78067d9

Please sign in to comment.