Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getIntentDetectionPrompt (0.41 seconds)

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

            }
            return systemPrompt;
        }
    
        /**
         * Gets the intent detection prompt template.
         *
         * @return the intent detection prompt
         */
        protected String getIntentDetectionPrompt() {
            if (intentDetectionPrompt == null) {
                throw new LlmException("intentDetectionPrompt is not configured for " + getName());
            }
            return intentDetectionPrompt;
        }
    
    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 String getSystemPrompt() {
                return testSystemPrompt;
            }
    
            @Override
            protected String getIntentDetectionPrompt() {
                return testIntentDetectionPrompt;
            }
    
            @Override
            protected String getUnclearIntentSystemPrompt() {
                return "unclear prompt {{languageInstruction}}";
    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