org.codelibs.fess.webapp.semantic_search.SemanticSearchConstants Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2012-2024 CodeLibs Project and the Others.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
package org.codelibs.fess.webapp.semantic_search;
public class SemanticSearchConstants {
private static final String PREFIX = "fess.semantic_search.";
public static final String PIPELINE = PREFIX + "pipeline";
public static final String CONTENT_MODEL_ID = PREFIX + "content.model_id";
public static final String CONTENT_DIMENSION = PREFIX + "content.dimension";
public static final String CONTENT_ENGINE = PREFIX + "content.engine";
public static final String CONTENT_METHOD = PREFIX + "content.method";
public static final String CONTENT_SPACE_TYPE = PREFIX + "content.space_type";
public static final String CONTENT_PARAM_M = PREFIX + "content.param.m";
public static final String CONTENT_PARAM_EF_CONSTRUCTION = PREFIX + "content.param.ef_construction";
public static final String CONTENT_FIELD = PREFIX + "content.field";
public static final String CONTENT_NESTED_FIELD = PREFIX + "content.nested_field";
public static final String CONTENT_CHUNK_FIELD = PREFIX + "content.chunk_field";
public static final String CONTENT_CHUNK_SIZE = PREFIX + "content.chunk_size";
public static final String MIN_SCORE = PREFIX + "min_score";
public static final String MIN_CONTENT_LENGTH = PREFIX + "min_content_length";
public static final String SEMANTIC_SEARCH_HELPER = "semanticSearchHelper";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy