- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 61 for thinking (0.16 seconds)
-
src/main/webapp/js/chat.js
} /** * Add thinking indicator */ function addThinkingIndicator() { var id = 'thinking-' + Date.now(); var html = '<div id="' + id + '" class="chat-message assistant">' + '<div class="message-avatar"><i class="fa fa-robot" aria-hidden="true"></i></div>' + '<div class="thinking-indicator">' +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) -
src/main/java/org/codelibs/fess/llm/LlmChatRequest.java
} /** * Gets the thinking budget for models that support thinking tokens. * {@code null} means use the model default, {@code 0} disables thinking. * * @return the thinking budget */ public Integer getThinkingBudget() { return thinkingBudget; } /** * Sets the thinking budget for models that support thinking tokens.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 05 03:38:31 GMT 2026 - 6.4K bytes - Click Count (0) -
src/main/webapp/css/chat.css
.thinking-dots span { width: 6px; height: 6px; background-color: #0052cc; border-radius: 50%; margin: 0 2px; animation: thinking-bounce 1.4s ease-in-out infinite both; } .thinking-dots span:nth-child(1) { animation-delay: -0.32s; } .thinking-dots span:nth-child(2) { animation-delay: -0.16s; } @keyframes thinking-bounce { 0%, 80%, 100% { transform: scale(0); }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) -
docs/en/docs/advanced/security/http-basic-auth.md
... ``` But right at the moment Python compares the first `j` in `johndoe` to the first `s` in `stanleyjobson`, it will return `False`, because it already knows that those two strings are not the same, thinking that "there's no need to waste more computation comparing the rest of the letters". And your application will say "Incorrect username or password". But then the attackers try with username `stanleyjobsox` and password `love123`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 5K bytes - Click Count (0) -
src/main/webapp/WEB-INF/orig/view/chat/chat.jsp
<script type="text/javascript"> $(function() { FessChat.init({ apiUrl: '${fe:url('/api/v1/chat')}', streamUrl: '${fe:url('/api/v1/chat/stream')}', labels: { thinking: '<la:message key="labels.chat_thinking" />', waiting: '<la:message key="labels.chat_waiting" />', error: '<la:message key="labels.chat_error" />', sources: '<la:message key="labels.chat_sources" />',Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 10.4K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/chat/chat.jsp
<script type="text/javascript"> $(function() { FessChat.init({ apiUrl: '${fe:url('/api/v1/chat')}', streamUrl: '${fe:url('/api/v1/chat/stream')}', labels: { thinking: '<la:message key="labels.chat_thinking" />', waiting: '<la:message key="labels.chat_waiting" />', error: '<la:message key="labels.chat_error" />', sources: '<la:message key="labels.chat_sources" />',Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 01:36:02 GMT 2026 - 10.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java
} catch (final FileUploadException e) { // contains fileCount exceeded handleFileUploadException(e); } } protected void prepareElementsHash() { // traditional name // #thinking jflute might lazy-loaded be unneeded? because created per request (2024/09/08) elementsAll = new HashMap<>(); elementsText = new HashMap<>(); elementsFile = new HashMap<>(); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:48:41 GMT 2026 - 18.9K bytes - Click Count (1) -
docs/en/docs/tutorial/path-params.md
{* ../../docs_src/path_params/tutorial003_py310.py hl[6,11] *} Otherwise, the path for `/users/{user_id}` would match also for `/users/me`, "thinking" that it's receiving a parameter `user_id` with a value of `"me"`. Similarly, you cannot redefine a path operation: {* ../../docs_src/path_params/tutorial003b_py310.py hl[6,11] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 8.8K bytes - Click Count (0) -
src/main/resources/fess_label_en.properties
labels.login.update=Update # Chat labels labels.chat_title=AI Search Mode - Fess labels.chat_new_chat=New Chat labels.chat_input_placeholder=Ask a question... labels.chat_thinking=Thinking... labels.chat_error=An error occurred. Please try again. labels.chat_error_rate_limit=It's currently busy. Please wait a moment and try again.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 48.9K bytes - Click Count (0) -
docs/en/docs/deployment/https.md
/// To **learn the basics of HTTPS**, from a consumer perspective, check [https://howhttps.works/](https://howhttps.works/). Now, from a **developer's perspective**, here are several things to keep in mind while thinking about HTTPS: * For HTTPS, **the server** needs to **have "certificates"** generated by a **third party**. * Those certificates are actually **acquired** from the third party, not "generated".
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 14K bytes - Click Count (0)