Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for rebuilding (0.04 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

                }
            }
            return defaultValue;
        }
    
        /**
         * Gets the maximum characters for context building for a specific prompt type.
         * Each LlmClient implementation defines per-prompt-type defaults appropriate
         * for its target model.
         *
         * @param promptType the prompt type (e.g., "answer", "summary", "faq")
    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

        }
    
        @Override
        protected void tearDown(final TestInfo testInfo) throws Exception {
            super.tearDown(testInfo);
        }
    
        // ========== P1: Intent detection request building tests ==========
    
        @Test
        public void test_buildIntentRequest_withoutHistory() {
            final LlmChatRequest request = client.testBuildIntentRequest("What is Fess?", null);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
Back to Top