- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for reasoning (0.07 seconds)
-
src/main/java/org/codelibs/fess/llm/IntentDetectionResult.java
} /** * Returns the reasoning for the detected intent. * * @return the reasoning */ public String getReasoning() { return reasoning; } /** * Creates a search intent result with a Fess query. * * @param query the Fess query string * @param reasoning the detection reasoning * @return the search intent result */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 4.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/IntentDetectionResultTest.java
final IntentDetectionResult result = IntentDetectionResult.search(query, "test reasoning"); assertEquals(ChatIntent.SEARCH, result.getIntent()); assertEquals(query, result.getQuery()); assertNull(result.getDocumentUrl()); assertEquals("test reasoning", result.getReasoning()); } @Test public void test_search_withEmptyQuery() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 8.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0) -
.github/CONTRIBUTING.md
during compilation indicate errors in your style and can be viewed in the `checkstyle-result.xml` file. Some general advice - Don’t change public API lightly, avoid if possible, and include your reasoning in the PR if essential. It causes pain for developers who use OkHttp and sometimes runtime errors.
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Mar 17 04:16:26 GMT 2019 - 1.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java
@Test public void test_detectIntent_withHistory_usesStructuredMessages() { // Set up chat to return a valid JSON response client.setChatResponse("{\"intent\":\"search\",\"query\":\"Fess Docker\",\"reasoning\":\"Follow-up about Docker\"}"); final List<LlmMessage> history = new ArrayList<>(); history.add(LlmMessage.user("What is Fess?"));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 53K bytes - Click Count (0) -
scripts/general-llm-prompt.md
then KEEP those additional abbr elements in the translation. Do not remove them. Except when you remove the whole sentence from the translation, because the whole sentence was removed from the English text, then also remove the abbr element. The reasoning for this rule is, that such additional abbr elements are manually added by the human editor of the translation, in order to translate or explain an English word to the human readers of the translation. These additional abbr elements would not make...
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Mar 18 10:55:36 GMT 2026 - 14.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
callback.onPhaseComplete(ChatPhaseCallback.PHASE_INTENT); if (logger.isDebugEnabled()) { logger.debug("[RAG] Phase {} completed. intent={}, query={}, reasoning={}, phaseElapsedTime={}ms", ChatPhaseCallback.PHASE_INTENT, intentResult.getIntent(), intentResult.getQuery(), intentResult.getReasoning(), System.currentTimeMillis() - phaseStartTime);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 56.6K bytes - Click Count (0)