Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for onPhaseComplete (0.07 seconds)

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

  1. src/main/java/org/codelibs/fess/chat/ChatPhaseCallback.java

            onPhaseStart(phase, message);
        }
    
        /**
         * Called when a processing phase completes.
         *
         * @param phase the phase name that completed
         */
        void onPhaseComplete(String phase);
    
        /**
         * Called when a chunk of the response is available during streaming.
         *
         * @param content the content chunk
         * @param done true if this is the final chunk
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:32:04 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

                            }
                        }
                    }
    
                    @Override
                    public void onPhaseComplete(final String phase) {
                        try {
                            sendSseEvent(writer, "phase", Map.of("phase", phase, "status", "complete"));
                            if (logger.isDebugEnabled()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 06:06:55 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/chat/ChatClient.java

                callback.onPhaseStart(ChatPhaseCallback.PHASE_INTENT, "Analyzing your question...");
                final IntentDetectionResult intentResult = llmClientManager.detectIntent(userMessage, history);
                callback.onPhaseComplete(ChatPhaseCallback.PHASE_INTENT);
    
                if (logger.isDebugEnabled()) {
                    logger.debug("[RAG] Phase {} completed. intent={}, query={}, reasoning={}, phaseElapsedTime={}ms",
    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)
Back to Top