Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getSummarySystemPrompt (0.14 seconds)

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

            return answerGenerationSystemPrompt;
        }
    
        /**
         * Gets the system prompt for summary generation.
         *
         * @return the summary system prompt
         */
        protected String getSummarySystemPrompt() {
            if (summarySystemPrompt == null) {
                throw new LlmException("summarySystemPrompt is not configured for " + getName());
            }
            return summarySystemPrompt;
        }
    
        /**
    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

            protected String getAnswerGenerationSystemPrompt() {
                return "{{systemPrompt}}\n{{context}}\n{{languageInstruction}}";
            }
    
            @Override
            protected String getSummarySystemPrompt() {
                return testSummarySystemPrompt;
            }
    
            @Override
            protected String getFaqAnswerSystemPrompt() {
    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