Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for RAG (0.03 seconds)

  1. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

                logger.warn("[RAG] Failed to process chat request. message={}", e.getMessage(), e);
                writeJsonResponse(response, HttpServletResponse.SC_INTERNAL_SERVER_ERROR, createErrorResponse("Internal server error"));
            }
        }
    
        /**
         * Processes a streaming chat request using Server-Sent Events (SSE).
         * Uses the enhanced multi-phase RAG flow with intent detection and result evaluation.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 06:06:55 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         * Path to the service account credentials JSON file.
         */
        @Size(max = 1000)
        public String storageCredentialsPath;
    
        /**
         * RAG LLM provider name.
         * Selects which LLM client to use for RAG operations.
         */
        @Size(max = 100)
        public String ragLlmName;
    
        /**
         * LLM log level.
         * Controls the logging level for LLM-related packages.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  3. src/main/resources/fess_config.properties

    #                                                  RAG Chat
    #                                                     ------
    
    # Whether RAG chat feature is enabled.
    rag.chat.enabled=false
    
    
    # Chat generation settings.
    rag.chat.context.max.documents=5
    
    # Session settings.
    rag.chat.session.timeout.minutes=30
    rag.chat.session.max.size=10000
    rag.chat.history.max.messages=30
    
    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)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 500 */
        String RAG_CHAT_HIGHLIGHT_FRAGMENT_SIZE = "rag.chat.highlight.fragment.size";
    
        /** The key of the configuration. e.g. 3 */
        String RAG_CHAT_HIGHLIGHT_NUMBER_OF_FRAGMENTS = "rag.chat.highlight.number.of.fragments";
    
        /** The key of the configuration. e.g. smart_summary */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  5. src/main/java/org/codelibs/fess/Constants.java

        /** Storage type configuration key (s3, gcs, auto). */
        public static final String STORAGE_TYPE = "storage.type";
    
        /** RAG LLM name configuration key. */
        public static final String RAG_LLM_NAME = "rag.llm.name";
    
        /** Storage region configuration key (for S3). */
        public static final String STORAGE_REGION = "storage.region";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 35.8K bytes
    - Click Count (0)
  6. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                                     styleClass="form-control"/>
                                        </div>
                                    </div>
                                        <%-- RAG --%>
                                    <c:if test="${ragEnabled}">
                                    <h4><la:message key="labels.general_rag"/></h4>
                                    <div class="form-group row">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 83.1K bytes
    - Click Count (0)
Back to Top