Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 15 for SUMMARY (0.09 seconds)

  1. 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)
  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/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)
  4. 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)
  5. 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)
  6. .github/ISSUE_TEMPLATE/20_contributor_feature_request.yml

            Please open Gradle Native-related issues on [the Gradle Native repository](https://github.com/gradle/gradle-native/issues)
    
            Provide a brief summary of the issue in the title above
      - type: textarea
        id: expected-behavior
        attributes:
          label: Expected Behavior
          description: Tell us how it should work
        validations:
          required: true
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Nov 27 15:48:22 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  7. 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)
  8. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/nullaway/NullawayStatusTask.kt

            group = LifecycleBasePlugin.BUILD_GROUP
            description = "Checks status of NullAway support in this project. Call unqualified to get summary for all projects."
        }
    
        @TaskAction
        fun action() {
            val nullawayIncompatibleDeps = nullawayAwareDeps.get().filter { it.hasNullAwayDisabled }
            val service = statusService.get()
            when {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Aug 20 13:18:23 GMT 2025
    - 2.5K bytes
    - Click Count (0)
  9. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

            Please open Gradle Native-related issues on [the Gradle Native repository](https://github.com/gradle/gradle-native/issues)
    
            Provide a brief summary of the issue in the title above
      - type: textarea
        id: current-behavior
        attributes:
          label: Current Behavior
          description: Tell us what happens
        validations:
          required: true
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Sep 09 14:48:49 GMT 2024
    - 3K bytes
    - Click Count (1)
  10. src/main/webapp/css/admin/html5shiv.min.js

    undefined"==typeof a.createElement}()}catch(c){k=!0,l=!0}}();var t={elements:n.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:m,shivCSS:n.shivCSS!==!1,supportsUnknownElements:l,shivMethods:n.shivMethods!==!1,type:"default",shivDocument:j,createElement:g,createDocumentFragment:h,addElements:e};a.html5=t,j(b),"object"==typeof module&&module.ex...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Dec 31 23:16:54 GMT 2017
    - 2.7K bytes
    - Click Count (0)
Back to Top