Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getDocumentUrl (0.05 seconds)

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

         */
        public String getQuery() {
            return query;
        }
    
        /**
         * Returns the document URL for summary intent.
         *
         * @return the document URL
         */
        public String getDocumentUrl() {
            return documentUrl;
        }
    
        /**
         * Returns the reasoning for the detected intent.
         *
         * @return the reasoning
         */
        public String getReasoning() {
    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/IntentDetectionResultTest.java

            assertEquals(ChatIntent.SEARCH, result.getIntent());
            assertEquals(query, result.getQuery());
            assertNull(result.getDocumentUrl());
            assertEquals("test reasoning", result.getReasoning());
        }
    
        @Test
        public void test_search_withEmptyQuery() {
            final IntentDetectionResult result = IntentDetectionResult.search("", "test");
    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)
Back to Top