Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 13 for mindent (0.07 seconds)

  1. src/main/resources/fess_indices/fess/hu/stopwords.txt

    lenne
    lenni
    lesz
    lett
    maga
    magát
    majd
    majd
    már
    más
    másik
    meg
    még
    mellett
    mert
    mely
    melyek
    mi
    mit
    míg
    miért
    milyen
    mikor
    minden
    mindent
    mindenki
    mindig
    mint
    mintha
    mivel
    most
    nagy
    nagyobb
    nagyon
    ne
    néha
    nekem
    neki
    nem
    néhány
    nélkül
    nincs
    olyan
    ott
    össze
    ő
    ők
    őket
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 1.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/llm/IntentDetectionResult.java

            this.intent = intent;
            this.query = query;
            this.documentUrl = documentUrl;
            this.reasoning = reasoning;
        }
    
        /**
         * Returns the detected intent type.
         *
         * @return the intent type
         */
        public ChatIntent getIntent() {
            return intent;
        }
    
        /**
         * Returns the Fess query string for search.
         *
    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)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/XIncludeAwareXmlProvider.groovy

        }
    
        void write(File destFile, boolean indent = false) {
            destFile.withOutputStream { OutputStream stream ->
                TransformerFactory factory = TransformerFactory.newInstance()
                Transformer transformer = factory.newTransformer()
                if (indent) {
                    transformer.setOutputProperty(OutputKeys.INDENT, "yes")
                }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/llm/ChatIntent.java

         */
        public static ChatIntent fromValue(final String value) {
            if (value == null) {
                return UNCLEAR;
            }
            for (final ChatIntent intent : values()) {
                if (intent.value.equalsIgnoreCase(value.trim())) {
                    return intent;
                }
            }
            return UNCLEAR;
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 01 08:11:18 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  5. build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/GeneratorTask.kt

        private class NodeWriter(private val writer: PrintWriter, private val indent: String) {
            fun println() {
                writer.println()
            }
    
            fun node(node: String) {
                writer.print(indent)
                writer.println(node)
            }
    
            fun node(node: String, builder: NodeWriter.() -> Unit) {
                writer.print(indent)
                writer.println(node)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:56 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/chat/ChatPhaseCallback.java

     * Used for SSE streaming to notify clients about the current processing state.
     */
    public interface ChatPhaseCallback {
    
        /** Phase name for intent detection */
        String PHASE_INTENT = "intent";
    
        /** Phase name for document search */
        String PHASE_SEARCH = "search";
    
        /** Phase name for result evaluation */
        String PHASE_EVALUATE = "evaluate";
    
    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)
  7. src/main/java/org/codelibs/fess/llm/LlmClient.java

        boolean isAvailable();
    
        // RAG workflow methods
    
        /**
         * Detects the intent of a user message.
         *
         * @param userMessage the user's message
         * @return the detected intent with extracted keywords
         */
        IntentDetectionResult detectIntent(String userMessage);
    
        /**
         * Detects the intent of a user message with conversation history context.
         *
         * @param userMessage the user's message
    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)
  8. src/test/java/org/codelibs/fess/chat/ChatPhaseCallbackTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    public class ChatPhaseCallbackTest extends UnitFessTestCase {
    
        @Test
        public void test_phaseConstants() {
            assertEquals("intent", ChatPhaseCallback.PHASE_INTENT);
            assertEquals("search", ChatPhaseCallback.PHASE_SEARCH);
            assertEquals("evaluate", ChatPhaseCallback.PHASE_EVALUATE);
            assertEquals("fetch", ChatPhaseCallback.PHASE_FETCH);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 7.3K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/llm/IntentDetectionResultTest.java

            final IntentDetectionResult result = IntentDetectionResult.faq(query, "faq intent");
    
            assertEquals(ChatIntent.FAQ, result.getIntent());
            assertEquals(query, result.getQuery());
            assertNull(result.getDocumentUrl());
            assertEquals("faq intent", result.getReasoning());
        }
    
        @Test
        public void test_faq_withEmptyQuery() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  10. docs/de/README.md

    *[Fess Site Search](https://github.com/codelibs/fess-site-search)* ist eine kostenlose Alternative zur [Google Site Search](https://enterprise.google.com/search/products/gss.html). Weitere Details finden Sie in der [Dokumentation des FSS JS Generators](https://fss-generator.codelibs.org/docs/manual).
    
    ## Website
    
    [fess.codelibs.org](https://fess.codelibs.org/)
    
    ## Probleme/Fragen
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Nov 11 22:42:32 GMT 2025
    - 7.8K bytes
    - Click Count (0)
Back to Top