Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for rag_llm_name (0.05 seconds)

  1. 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";
    
        /** Storage project ID configuration key (for GCS). */
    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)
  2. src/main/resources/fess_label_zh_TW.properties

    labels.storage_type_auto=自動
    labels.storage_type_s3=S3
    labels.storage_type_gcs=GCS
    labels.storage_region=區域
    labels.storage_project_id=專案ID
    labels.storage_credentials_path=憑證路徑
    labels.general_rag=AI模式
    labels.rag_llm_name=LLM供應商
    labels.llm_log_level=日誌級別
    labels.send_testmail=發送測試郵件
    labels.backup_configuration=備份
    labels.backup_name=名稱
    labels.backup_bulk_file=批量檔案
    labels.backup_button_upload=上傳
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.5K bytes
    - Click Count (0)
  3. src/main/resources/fess_label_zh_CN.properties

    labels.notification_login=登录页面
    labels.notification_search_top=搜索首页
    labels.storage_endpoint=端点
    labels.storage_access_key=访问密钥
    labels.storage_secret_key=密钥
    labels.storage_bucket=存储桶
    labels.general_rag=AI模式
    labels.rag_llm_name=LLM提供商
    labels.llm_log_level=日志级别
    labels.send_testmail=发送测试邮件
    labels.backup_configuration=备份
    labels.backup_name=名称
    labels.backup_bulk_file=批量文件
    labels.backup_button_upload=上传
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.3K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            fessConfig.setStorageProjectId(form.storageProjectId);
            fessConfig.setStorageCredentialsPath(form.storageCredentialsPath);
            if (form.ragLlmName != null && isValidRagLlmName(form.ragLlmName)) {
                fessConfig.setRagLlmName(form.ragLlmName);
            }
    
            // OpenID Connect
            if (form.oicClientId != null && StringUtil.isNotBlank(form.oicClientId.replace("*", " "))) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 05:54:31 GMT 2026
    - 27.2K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        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.
         */
        @Size(max = 10)
        public String llmLogLevel;
    
    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)
Back to Top