Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for Faq (0.01 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

                throw new LlmException("summarySystemPrompt is not configured for " + getName());
            }
            return summarySystemPrompt;
        }
    
        /**
         * Gets the system prompt for FAQ answer generation.
         *
         * @return the FAQ answer system prompt
         */
        protected String getFaqAnswerSystemPrompt() {
            if (faqAnswerSystemPrompt == null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

            client.setChatResponse("{\"intent\":\"faq\",\"query\":\"Fess features\",\"reasoning\":\"FAQ question\"}");
    
            // Call the original single-arg method
            final IntentDetectionResult result = client.detectIntent("What are Fess features?");
    
            assertEquals(ChatIntent.FAQ, result.getIntent());
            assertEquals("Fess features", result.getQuery());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/chat/ChatClient.java

                    return new ChatResult(session.getSessionId(), assistantMessage, Collections.emptyList());
                }
    
                // For SUMMARY intent, search by URL; for SEARCH/FAQ, search with query
                ChatSearchResult searchResult;
                if (intentResult.getIntent() == ChatIntent.SUMMARY && StringUtil.isNotBlank(intentResult.getDocumentUrl())) {
    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)
Back to Top