- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 23 for suggestions (0.05 seconds)
-
README.md
A powerful Java library that provides intelligent search suggestion functionality built on top of OpenSearch/Elasticsearch. It offers auto-completion, query suggestions, and popular word analytics for search applications. ## Key Features - **Smart Query Suggestions**: Real-time auto-completion and search suggestions - **Multi-language Support**: Built-in support for Japanese text processing with Kuromoji analyzer
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Aug 31 03:31:14 GMT 2025 - 12.1K bytes - Click Count (1) -
src/main/webapp/js/suggestor.js
if (console && console.error) { console.error("Suggestion request failed:", status, error); } suggestor.hideSuggestionBox(); suggestingSts = false; }); }, /** * Hide suggestion box and update ARIA attributes */ hideSuggestionBox: function () {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 11:04:08 GMT 2025 - 13.3K bytes - Click Count (0) -
src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js
numSuggestionElements&&c.bind("resize",function(){a(".jquery-form-suggestions").each(function(){var b=a(this),c=b.attr("data-suggest-container");g(b,a(".suggestions-"+c).eq(0))})}),this._numSuggestionElements++;var h=function(b){var c=b.valAttr("suggestion-nr");a.formUtils._selectedSuggestion=null,a.formUtils._previousTypedVal=null,a(".jquery-form-suggestion-"+c).fadeOut("fast")};return b.data("suggestions",d).valAttr("suggestion-nr",this._numSuggestionElements).unbind("focus.suggest").bind("foc...
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 01 05:12:47 GMT 2018 - 32.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
/** * Enable or disable search suggestions based on search logs. * When enabled, suggestions are generated from previous searches. */ @Size(max = 10) public String suggestSearchLog; /** * Enable or disable search suggestions based on document content. * When enabled, suggestions are generated from indexed documents. */ @Size(max = 10)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) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
* <li>{@link #getAllWordsNum()}: Returns the total number of words in the suggestion index.</li> * <li>{@link #getDocumentWordsNum()}: Returns the number of document words in the suggestion index.</li> * <li>{@link #getQueryWordsNum()}: Returns the number of query words in the suggestion index.</li> * </ul> * * <p>Protected Methods: * <ul>
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 21.6K bytes - Click Count (3) -
docs/en/docs/contributing.md
Instead of adding suggestions to the translation PR, make the suggestions to the LLM prompt file for that language, in a new PR. For example, for Spanish, the LLM prompt file is at: [`docs/es/llm-prompt.md`](https://github.com/fastapi/fastapi/blob/master/docs/es/llm-prompt.md).
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Mar 23 13:59:26 GMT 2026 - 10.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java
import org.opensearch.search.sort.SortOrder; import org.opensearch.transport.client.Client; /** * SuggestRequest is a class that handles the request for suggestions. * It extends the Request class with a SuggestResponse type. * * <p>This class provides various methods to set parameters for the suggestion request, * such as index, query, size, tags, roles, fields, kinds, languages, and other configurations.
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 14 02:35:38 GMT 2026 - 13.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java
* <li>{@link #client} - OpenSearch client.</li> * <li>{@link #index} - Index name.</li> * <li>{@link #settings} - Suggest settings.</li> * <li>{@link #supportedFields} - Supported fields for suggestions.</li> * <li>{@link #tagFieldNames} - Tag field names.</li> * <li>{@link #roleFieldName} - Role field name.</li> * <li>{@link #langFieldName} - Language field name.</li> * <li>{@link #badWords} - List of bad words.</li>
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 14 02:35:38 GMT 2026 - 20.9K bytes - Click Count (0) -
src/main/webapp/css/chat.css
line-height: 1.6; } .empty-state-suggestions { width: 100%; max-width: 500px; } .suggestions-label { font-size: 0.8125rem; color: #6b778c; margin-bottom: 0.75rem; font-weight: 500; } .suggestion-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; } .suggestion-chip { padding: 0.5rem 1rem;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 19.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java
super(); } private static final Logger logger = LogManager.getLogger(ApiAdminBadwordAction.class); @Resource private BadWordService badWordService; /** Helper for managing search suggestions and bad words */ @Resource protected SuggestHelper suggestHelper; /** * Retrieves bad word settings with pagination support. *
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 10.3K bytes - Click Count (0)