Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 34 for assistant (0.04 seconds)

  1. src/main/resources/fess_config.properties

    # Highlight settings for RAG search.
    rag.chat.highlight.fragment.size=500
    rag.chat.highlight.number.of.fragments=3
    # History content mode for assistant messages (full, smart_summary, source_titles, source_titles_and_urls, truncated, none).
    rag.chat.history.assistant.content=smart_summary
    
    # Index Export
    index.export.path=/var/lib/fess/export
    index.export.exclude.fields=cache
    index.export.scroll.size=100
    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)
  2. src/main/resources/fess_message_fr.properties

    errors.design_file_is_unsupported_type = Ce type de fichier n'est pas pris en charge.
    errors.failed_to_create_crawling_config_at_wizard = Échec de la création d'une configuration d'exploration dans un assistant.
    errors.design_editor_disabled = Cette fonctionnalité est désactivée.
    errors.not_found_on_file_system = Non trouvé. Cause : {0}
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 14.1K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: AI Mode */
        public static final String LABELS_chat_ai_mode = "{labels.chat_ai_mode}";
    
        /** The key of the message: AI Assistant */
        public static final String LABELS_chat_status_ready = "{labels.chat_status_ready}";
    
        /** The key of the message: Processing */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 172.6K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         */
        Integer getRagChatHighlightNumberOfFragmentsAsInteger();
    
        /**
         * Get the value for the key 'rag.chat.history.assistant.content'. <br>
         * The value is, e.g. smart_summary <br>
         * comment: History content mode for assistant messages (full, smart_summary, source_titles, source_titles_and_urls, truncated, none).
    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. CLAUDE.md

    - This project supports up to 21 languages. When modifying user-facing strings, error codes, or labels, always propagate changes to ALL language files (fess_label_*.properties and frontend i18n files).
    
    ## Important Patterns for AI Assistants
    
    ### Do's
    1. Use `@Resource` for field injection (not constructor injection)
    2. Access helpers via `ComponentUtil.getXyzHelper()`
    3. Use `OptionalEntity<T>` for nullable entity returns
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistant.java

    import org.dbflute.twowaysql.factory.SqlAnalyzerFactory;
    
    /**
     * Implementation of DBFlute's InvokerAssistant interface for OpenSearch integration.
     * This class provides basic scaffolding for DBFlute behavior invoker assistance,
     * primarily returning null implementations as placeholders for OpenSearch-specific functionality.
     *
     */
    public class ImplementedInvokerAssistant implements InvokerAssistant {
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.1K bytes
    - Click Count (0)
  7. src/main/resources/fess_message_pt_BR.properties

    errors.design_file_is_unsupported_type = Este tipo de arquivo não é suportado.
    errors.failed_to_create_crawling_config_at_wizard = Não foi possível criar a configuração de rastreamento no assistente.
    errors.design_editor_disabled = Esta função está desabilitada.
    errors.not_found_on_file_system = Não encontrado. Causa: {0}
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  8. src/main/resources/fess_label_pt_BR.properties

    labels.data_crawling_button_create=Criar
    labels.data_crawling_button_create_job=Criar novo trabalho
    labels.wizard_title_configuration=Assistente de configuração
    labels.wizard_start_title=Configuração rápida
    labels.wizard_start_desc=Você pode criar facilmente uma configuração de rastreamento usando o assistente de configuração.
    labels.wizard_start_button=Iniciar configuração
    labels.wizard_button_cancel=Cancelar
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 53.9K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

        //                                                                           Attribute
        //                                                                           =========
        /** Login assistance helper for managing user authentication and session. */
        @Resource
        protected FessLoginAssist fessLoginAssist;
    
        /** Session manager for handling HTTP session operations. */
        @Resource
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 15K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/service/UserService.java

         */
        public UserService() {
            // Default constructor
        }
    
        /** User behavior for database operations */
        @Resource
        protected UserBhv userBhv;
    
        /** Login assistance for authentication operations */
        @Resource
        protected FessLoginAssist fessLoginAssist;
    
        /** Fess configuration for system settings */
        @Resource
        protected FessConfig fessConfig;
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 06:22:27 GMT 2026
    - 9.3K bytes
    - Click Count (0)
Back to Top