Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 10 for asko (0.02 seconds)

  1. src/main/resources/fess_indices/_aws/fess.json

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  2. src/main/resources/fess_indices/_cloud/fess.json

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/llm/ChatIntent.java

        SEARCH("search"),
    
        /** User wants a summary of a specific document */
        SUMMARY("summary"),
    
        /** User is asking a FAQ-type question */
        FAQ("faq"),
    
        /** Intent is unclear - need to ask user for clarification */
        UNCLEAR("unclear");
    
        private final String value;
    
        ChatIntent(final String value) {
            this.value = value;
        }
    
        /**
    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)
  4. CONTRIBUTING.md

    * For user-facing features, what will the API look like?
    * What test cases should it have? What could go wrong?
    * How will it roughly be implemented? We'll happily provide code pointers to save you time.
    
    We may ask you to answer these questions directly in the GitHub issue or (for large changes) in a shared Google Doc.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  5. README.md

    - **Newsletter**: Subscribe to the [Gradle Newsletter](https://newsletter.gradle.org) for news, tutorials, and community highlights.
    
    > **Quick Tip**: New contributors to Gradle projects are encouraged to ask questions in the Slack `#community-support` channel.
    
    ---
    
    ### 🌱 **Contributing to Gradle**
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Feb 12 18:58:41 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  6. src/main/resources/fess_label_en.properties

    labels.chat_phase_fetch=Retrieving documents...
    labels.chat_phase_answer=Generating answer...
    labels.chat_messages_area=Chat messages
    labels.chat_welcome_title=Ask and Discover.
    labels.chat_welcome_description=Ask questions and I'll search through documents to find the answers you need.
    labels.chat_step_intent=Analyze
    labels.chat_step_search=Search
    labels.chat_step_evaluate=Evaluate
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  7. AI_POLICY.md

    3. **Actively collaborate with us.** We commit real time and attention to everything we review. Low-effort submissions—where...
    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)
  8. src/main/resources/fess_label.properties

    labels.chat_phase_fetch=Retrieving documents...
    labels.chat_phase_answer=Generating answer...
    labels.chat_messages_area=Chat messages
    labels.chat_welcome_title=Ask and Discover.
    labels.chat_welcome_description=Ask questions and I'll search through documents to find the answers you need.
    labels.chat_step_intent=Analyze
    labels.chat_step_search=Search
    labels.chat_step_evaluate=Evaluate
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/chat/ChatClient.java

                }
    
                if (intentResult.getIntent() == ChatIntent.UNCLEAR) {
                    // Unclear intent - generate answer with empty documents to ask for clarification
                    final LlmChatResponse llmResponse = llmClientManager.generateAnswer(userMessage, Collections.emptyList(), 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)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_chat_messages_area = "{labels.chat_messages_area}";
    
        /** The key of the message: Ask and Discover. */
        public static final String LABELS_chat_welcome_title = "{labels.chat_welcome_title}";
    
        /** The key of the message: Ask questions and I'll search through documents to find the answers you need. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 172.6K bytes
    - Click Count (0)
Back to Top