Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for History (0.06 seconds)

  1. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

        public void test_buildIntentRequest_historyExactlySix() {
            final List<LlmMessage> history = new ArrayList<>();
            history.add(LlmMessage.user("Q1"));
            history.add(LlmMessage.assistant("A1"));
            history.add(LlmMessage.user("Q2"));
            history.add(LlmMessage.assistant("A2"));
            history.add(LlmMessage.user("Q3"));
            history.add(LlmMessage.assistant("A3"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

        }
    
        /**
         * Adds conversation history as structured messages for intent detection.
         *
         * @param request the LLM chat request
         * @param history the conversation history
         */
        protected void addIntentHistory(final LlmChatRequest request, final List<LlmMessage> history) {
            if (history == null || history.isEmpty()) {
                return;
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/chat/ChatClient.java

            }
        }
    
        /**
         * Extracts conversation history from a chat session as LlmMessage list.
         * The assistant message content in history is controlled by the
         * {@code rag.chat.history.assistant.content} configuration property.
         *
         * @param session the chat session
         * @return the list of LlmMessages representing the conversation history
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
  4. src/main/resources/fess_config.properties

    rag.chat.session.max.size=10000
    rag.chat.history.max.messages=30
    
    # Enhanced RAG flow settings.
    # Fields to retrieve for full document content.
    rag.chat.content.fields=title,url,content,doc_id,content_title,content_description
    rag.chat.message.max.length=4000
    # Highlight settings for RAG search.
    rag.chat.highlight.fragment.size=500
    rag.chat.highlight.number.of.fragments=3
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  5. docs/changelogs/changelog_3x.md

        compatible sets of cipher suites. These two cipher suites aren't enabled by default in either
        Firefox or Chrome.
    
        See our [TLS Configuration History][tls_configuration_history] tracker for a log of all changes
        to OkHttp's default TLS options.
    
     *  New: Upgrade to Conscrypt 2.0.0. OkHttp works with other versions of Conscrypt but this is the
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Click Count (0)
Back to Top