Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 27 for SUMMARY (0.04 seconds)

  1. src/test/java/org/codelibs/fess/llm/IntentDetectionResultTest.java

            final IntentDetectionResult result = IntentDetectionResult.summary(documentUrl, "summary request");
    
            assertEquals(ChatIntent.SUMMARY, result.getIntent());
            assertEquals(documentUrl, result.getDocumentUrl());
            assertNull(result.getQuery());
            assertEquals("summary request", result.getReasoning());
        }
    
        @Test
        public void test_summary_withNullDocumentUrl() {
    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)
  2. src/main/java/org/codelibs/fess/llm/IntentDetectionResult.java

        }
    
        /**
         * Creates a summary intent result for a specific document.
         *
         * @param documentUrl the document URL to summarize
         * @param reasoning the detection reasoning
         * @return the summary intent result
         */
        public static IntentDetectionResult summary(final String documentUrl, final String reasoning) {
            return new IntentDetectionResult(ChatIntent.SUMMARY, null, documentUrl, 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)
  3. src/test/java/org/codelibs/fess/llm/ChatIntentTest.java

        }
    
        @Test
        public void test_fromValue_summary() {
            assertEquals(ChatIntent.SUMMARY, ChatIntent.fromValue("summary"));
            assertEquals(ChatIntent.SUMMARY, ChatIntent.fromValue("SUMMARY"));
            assertEquals(ChatIntent.SUMMARY, ChatIntent.fromValue("Summary"));
        }
    
        @Test
        public void test_fromValue_faq() {
            assertEquals(ChatIntent.FAQ, ChatIntent.fromValue("faq"));
    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)
  4. src/main/java/org/codelibs/fess/llm/ChatIntent.java

     */
    public enum ChatIntent {
    
        /** 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");
    
    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)
  5. src/main/config/openapi/openapi-user.yaml

      - name: suggest
        description: Suggest operations
      - name: favorite
        description: Favorite operations
    paths:
      /documents:
        get:
          tags:
            - search
          summary: Finds documents by query
          description: Finds documents by search conditions
          operationId: searchDocuments
          parameters:
            - name: q
              in: query
              description: Search words
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu May 09 06:31:27 GMT 2024
    - 21.6K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/chat/ChatClient.java

                                fullResponse.length(), System.currentTimeMillis() - phaseStartTime);
                    }
                } else if (intentResult.getIntent() == ChatIntent.SUMMARY) {
                    // Summary intent - search by URL and generate summary
                    final String documentUrl = intentResult.getDocumentUrl();
                    phaseStartTime = System.currentTimeMillis();
    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)
  7. src/main/resources/mail/log_notification.dfmail

    /*
     [Log Notification]
    */
    subject: [FESS] /*pmb.level*/ Log Alert: /*pmb.hostname*/
    >>>
    --- Server Info ---
    Host Name: /*pmb.hostname:orElse('Unknown')*/
    
    --- Log Summary ---
    Level: /*pmb.level*/
    Total: /*pmb.count*/ event(s) in the last /*pmb.interval*/ seconds
    
    --- Log Details ---
    /*pmb.details*/
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 343 bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

            }
            return answerGenerationSystemPrompt;
        }
    
        /**
         * Gets the system prompt for summary generation.
         *
         * @return the summary system prompt
         */
        protected String getSummarySystemPrompt() {
            if (summarySystemPrompt == 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)
  9. src/main/java/org/codelibs/fess/llm/LlmClient.java

         * @param callback the streaming callback
         */
        void generateDocumentNotFoundResponse(String userMessage, String documentUrl, List<LlmMessage> history, LlmStreamCallback callback);
    
        /**
         * Generates a summary of the specified documents.
         *
         * @param userMessage the user's message
         * @param documents the documents to summarize
         * @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)
  10. src/main/java/org/codelibs/fess/job/LogNotificationJob.java

         *
         * @param events the list of log notification events
         * @param maxDetailsLength the maximum length of the details string
         * @param maxDisplayEvents the maximum number of events to display
         * @param maxMessageLength the maximum length of each log message
         * @return the formatted details string with summary header and truncated entries
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 9.4K bytes
    - Click Count (0)
Back to Top