Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getHistoryMaxChars (0.08 seconds)

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

         * for its target model. The default returns 4000 for backward compatibility.
         *
         * @return the maximum history characters
         */
        protected int getHistoryMaxChars() {
            return 4000;
        }
    
        /**
         * Gets the maximum number of history messages for intent detection.
         * The default returns 6. Override in subclasses for provider-specific tuning.
         *
    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

                return 3;
            }
    
            @Override
            protected int getEvaluationDescriptionMaxChars() {
                return 500;
            }
    
            @Override
            protected int getHistoryMaxChars() {
                return testHistoryMaxChars;
            }
    
            @Override
            protected int getIntentHistoryMaxMessages() {
                return testIntentHistoryMaxMessages;
            }
    
    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