Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for detectIntent (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. 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
         */
        default IntentDetectionResult detectIntent(String userMessage, List<LlmMessage> history) {
    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)
  2. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

            }
            return prompt.replace("{{languageInstruction}}", languageInstruction);
        }
    
        // --- Default RAG method implementations ---
    
        @Override
        public IntentDetectionResult detectIntent(final String userMessage) {
            final long startTime = System.currentTimeMillis();
            if (logger.isDebugEnabled()) {
                logger.debug("[RAG:INTENT] Starting intent detection. userMessage={}", userMessage);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
Back to Top