Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for faq (0.01 seconds)

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

        }
    
        /**
         * Creates a FAQ intent result with a Fess query.
         *
         * @param query the Fess query string
         * @param reasoning the detection reasoning
         * @return the FAQ intent result
         */
        public static IntentDetectionResult faq(final String query, final String reasoning) {
            return new IntentDetectionResult(ChatIntent.FAQ, query, null, reasoning);
        }
    
        /**
    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)
  2. src/test/java/org/codelibs/fess/llm/ChatIntentTest.java

        }
    
        @Test
        public void test_fromValue_faq() {
            assertEquals(ChatIntent.FAQ, ChatIntent.fromValue("faq"));
            assertEquals(ChatIntent.FAQ, ChatIntent.fromValue("FAQ"));
            assertEquals(ChatIntent.FAQ, ChatIntent.fromValue("Faq"));
        }
    
        @Test
        public void test_fromValue_unclear() {
            assertEquals(ChatIntent.UNCLEAR, ChatIntent.fromValue("unclear"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 01 08:11:18 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/llm/ChatIntent.java

        /** User wants to search for documents in Fess */
        SEARCH("search"),
    
        /** User wants a summary of a specific document */
        SUMMARY("summary"),
    
        /** User is asking a FAQ-type question */
        FAQ("faq"),
    
        /** Intent is unclear - need to ask user for clarification */
        UNCLEAR("unclear");
    
        private final String value;
    
        ChatIntent(final String value) {
            this.value = value;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 01 08:11:18 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/llm/IntentDetectionResultTest.java

            final String query = "+Docker (install OR setup)";
            final IntentDetectionResult result = IntentDetectionResult.faq(query, "faq intent");
    
            assertEquals(ChatIntent.FAQ, result.getIntent());
            assertEquals(query, result.getQuery());
            assertNull(result.getDocumentUrl());
            assertEquals("faq intent", result.getReasoning());
        }
    
        @Test
        public void test_faq_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)
  5. src/main/java/org/codelibs/fess/llm/LlmClient.java

                LlmStreamCallback callback);
    
        /**
         * Generates an FAQ answer using document content (streaming).
         * Uses a prompt optimized for direct, concise FAQ-style answers.
         *
         * @param userMessage the user's message
         * @param documents the documents with content
         * @param history the conversation history
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 7.3K bytes
    - Click Count (0)
  6. src/main/assemblies/extension/kibana/README.md

    1. Click **Saved Objects**.
    1. Click **Import** and select "fess\_log.ndjson" to import example settings.
    1. Click **Dashboard**.
    1. Select "fess\_log" dashboard.
    1. (Change the period from upper right if you want to do.)
    ## FAQ
    
    #### Q. Kibana can't connect Elasticsearch.
    
    A. Please check `${KIBANA_HOME}/config/kibana.yml` and set correct Elasticsearch URL.
    
    Example:
    ```
    # The Elasticsearch instance to use for all your queries.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Aug 12 01:26:21 GMT 2019
    - 1.2K bytes
    - Click Count (0)
Back to Top