Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getNoResultsSystemPrompt (0.24 seconds)

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

            return unclearIntentSystemPrompt;
        }
    
        /**
         * Gets the system prompt for no-results responses.
         *
         * @return the no-results system prompt
         */
        protected String getNoResultsSystemPrompt() {
            if (noResultsSystemPrompt == null) {
                throw new LlmException("noResultsSystemPrompt is not configured for " + getName());
            }
            return noResultsSystemPrompt;
        }
    
    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 getUnclearIntentSystemPrompt() {
                return "unclear prompt {{languageInstruction}}";
            }
    
            @Override
            protected String getNoResultsSystemPrompt() {
                return "no results prompt {{languageInstruction}}";
            }
    
            @Override
            protected String getDocumentNotFoundSystemPrompt() {
    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