Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 17 of 17 for RAG (0.3 seconds)

  1. 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)
  2. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

                private static final long serialVersionUID = 1L;
    
                @Override
                public String getOrDefault(final String key, final String defaultValue) {
                    if ("rag.chat.history.assistant.content".equals(key)) {
                        return "full";
                    }
                    return defaultValue;
                }
            });
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 40.6K bytes
    - Click Count (0)
  3. 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)
  4. src/main/webapp/js/chat.js

    /**
     * Fess RAG Chat JavaScript
     * Enhanced with Atlassian Design System patterns
     */
    var FessChat = (function() {
        'use strict';
    
        var config = {
            apiUrl: '/api/v1/chat',
            streamUrl: '/api/v1/chat/stream',
            labels: {
                thinking: 'Thinking...',
                waiting: '...',
                error: 'An error occurred. Please try again.',
                sources: 'Sources',
                statusReady: 'AI Assistant',
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  5. pom.xml

    		<dependency>
    			<groupId>org.apache.groovy</groupId>
    			<artifactId>groovy</artifactId>
    			<version>${groovy.version}</version>
    		</dependency>
    
    		<!-- markdown and html sanitization for RAG chat -->
    		<dependency>
    			<groupId>org.commonmark</groupId>
    			<artifactId>commonmark</artifactId>
    			<version>0.24.0</version>
    		</dependency>
    		<dependency>
    			<groupId>org.commonmark</groupId>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 49.9K 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)
  7. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

        }
    
        // ========== History content mode pattern tests ==========
        // These test the different history shapes that extractHistory() produces
        // depending on rag.chat.history.assistant.content mode (full, source_titles,
        // source_titles_and_urls, truncated, none).
    
        @Test
        public void test_buildIntentRequest_noneMode_userOnlyHistory() {
    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