- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 130 for conversation (0.08 seconds)
-
src/main/java/org/codelibs/fess/llm/LlmClient.java
*/ IntentDetectionResult detectIntent(String userMessage); /** * Detects the intent of a user message with conversation history context. * * @param userMessage the user's message * @param history the conversation history for context * @return the detected intent with extracted keywords */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 7.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/chat/ChatForm.java
/** * The user's message/question. */ @Size(max = 4000) public String message; /** * The session ID for conversation continuity. */ @Size(max = 100) public String sessionId; /** * Flag to clear the conversation history. */ public boolean clearHistory;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 12 10:32:40 GMT 2026 - 1.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmClientManager.java
} return getAvailableClient().detectIntent(userMessage); } /** * Detects the intent of a user message with conversation history context. * * @param userMessage the user's message * @param history the conversation history for context * @return the detected intent with extracted keywords * @throws LlmException if LLM is not available */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 11:10:51 GMT 2026 - 17.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
} /** * Adds conversation history as structured messages for intent detection. * * @param request the LLM chat request * @param history the conversation history */ protected void addIntentHistory(final LlmChatRequest request, final List<LlmMessage> history) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmMessage.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.llm; import java.io.Serializable; /** * Represents a message in a chat conversation. * * @author FessProject */ public class LlmMessage implements Serializable { private static final long serialVersionUID = 1L; /** The role identifier for system messages. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 12 10:32:40 GMT 2026 - 3.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/ChatSession.java
import java.time.LocalDateTime; import java.util.ArrayList; import java.util.List; import java.util.UUID; import java.util.concurrent.CopyOnWriteArrayList; /** * Represents a chat session containing conversation history. * * @author FessProject */ public class ChatSession { /** The unique session identifier. */ private String sessionId; /** The user ID associated with this session. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 01:53:06 GMT 2026 - 6.7K bytes - Click Count (0) -
AI_POLICY.md
This policy protects our limited review budget, allowing us to invest our attention wisely. A pull request is not a finished product—it is the start of a conversation, and an implied contract: we promise to provide thoughtful feedback, and we expect the contributor to engage with us in return. ## What we expect from contributors
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 18:43:39 GMT 2026 - 3.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/ChatMessage.java
package org.codelibs.fess.entity; import java.io.Serializable; import java.time.LocalDateTime; import java.util.ArrayList; import java.util.List; import java.util.Map; /** * Represents a message in a chat conversation. * * @author FessProject */ public class ChatMessage implements Serializable { private static final long serialVersionUID = 1L; /** The role identifier for user messages. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 04:52:31 GMT 2026 - 10.1K bytes - Click Count (0) -
docs/en/docs/help-fastapi.md
Use the chat only for other general conversations. /// ### Don't use the chat for questions { #dont-use-the-chat-for-questions } Keep in mind that as chats allow more "free conversation", it's easy to ask questions that are too general and more difficult to answer, so, you might not receive answers.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 12.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
} } /** * Extracts conversation history from a chat session as LlmMessage list. * The assistant message content in history is controlled by the * {@code rag.chat.history.assistant.content} configuration property. * * @param session the chat session * @return the list of LlmMessages representing the conversation history */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 56.6K bytes - Click Count (0)