Skip to content

Commit 8b0b100

Browse files
committed
Apply spotless.
Signed-off-by: Austin Lee <[email protected]>
1 parent 1e7d853 commit 8b0b100

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

search-processors/src/main/java/org/opensearch/searchpipelines/questionanswering/generative/GenerativeQAResponseProcessor.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,8 @@ public SearchResponse processResponse(SearchRequest request, SearchResponse resp
156156
llmQuestion,
157157
chatHistory,
158158
searchResults,
159-
timeout, params.getLlmResponseField()
159+
timeout,
160+
params.getLlmResponseField()
160161
)
161162
);
162163
log.info("doChatCompletion complete. ({})", getDuration(start));

search-processors/src/main/java/org/opensearch/searchpipelines/questionanswering/generative/ext/GenerativeQAParameters.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public GenerativeQAParameters(
134134
this.contextSize = (contextSize == null) ? SIZE_NULL_VALUE : contextSize;
135135
this.interactionSize = (interactionSize == null) ? SIZE_NULL_VALUE : interactionSize;
136136
this.timeout = (timeout == null) ? SIZE_NULL_VALUE : timeout;
137-
this.llmResponseField = llmResponseField;
137+
this.llmResponseField = llmResponseField;
138138
}
139139

140140
public GenerativeQAParameters(StreamInput input) throws IOException {

0 commit comments

Comments
 (0)