Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getReasoning (0.04 seconds)

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

  1. src/main/java/org/codelibs/fess/llm/IntentDetectionResult.java

         */
        public String getDocumentUrl() {
            return documentUrl;
        }
    
        /**
         * Returns the reasoning for the detected intent.
         *
         * @return the reasoning
         */
        public String getReasoning() {
            return reasoning;
        }
    
        /**
         * Creates a search intent result with a Fess query.
         *
         * @param query the Fess query string
         * @param reasoning the detection reasoning
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

                    logger.debug("[RAG:INTENT] Intent detection completed. intent={}, query={}, reasoning={}, elapsedTime={}ms",
                            result.getIntent(), result.getQuery(), result.getReasoning(), System.currentTimeMillis() - startTime);
                }
    
                return result;
            } catch (final Exception e) {
    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