- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for setFinishReason (0.09 seconds)
-
src/main/java/org/codelibs/fess/llm/LlmChatResponse.java
*/ public String getFinishReason() { return finishReason; } /** * Sets the finish reason. * * @param finishReason the finish reason */ public void setFinishReason(final String finishReason) { this.finishReason = finishReason; } /** * Gets the number of prompt tokens. * * @return the prompt tokens count */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 12 10:32:40 GMT 2026 - 3.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/LlmChatResponseTest.java
} @Test public void test_setFinishReason() { final LlmChatResponse response = new LlmChatResponse(); response.setFinishReason("stop"); assertEquals("stop", response.getFinishReason()); response.setFinishReason("length"); assertEquals("length", response.getFinishReason()); } @Test public void test_tokenCounts() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 5.1K bytes - Click Count (0)