Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for content_description (0.07 seconds)

  1. src/main/java/org/codelibs/fess/entity/ChatMessage.java

                }
                this.title = titleValue;
                this.url = toStringOrNull(doc.get("url"));
                this.docId = toStringOrNull(doc.get("doc_id"));
                this.snippet = toStringOrNull(doc.get("content_description"));
                this.urlLink = toStringOrNull(doc.get("url_link"));
            }
    
            private static String toStringOrNull(final Object value) {
                if (value == null) {
                    return null;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 04:52:31 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/query/QueryFieldConfigSetBasedLookupTest.java

                public String getIndexFieldAnchor() {
                    return "anchor";
                }
    
                @Override
                public String getResponseFieldContentDescription() {
                    return "content_description";
                }
    
                @Override
                public String getResponseFieldContentTitle() {
                    return "content_title";
                }
    
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

                final String content = getStringValue(doc, "content");
                final String description = getStringValue(doc, "content_description");
                String descText = StringUtil.isNotBlank(content) ? content : description;
                descText = sanitizeDocumentContent(stripHtmlTags(descText));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

            final Map<String, Object> doc = new HashMap<>();
            doc.put("title", "Test Doc");
            doc.put("url", "http://example.com");
            doc.put("content", "<p>Hello <b>world</b></p>");
            doc.put("content_description", "description");
            documents.add(doc);
    
            final String result = client.testBuildContext(documents);
            assertTrue(result.contains("Hello world"));
            assertFalse(result.contains("<p>"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

                public String getIndexFieldAnchor() {
                    return "anchor";
                }
    
                @Override
                public String getResponseFieldContentDescription() {
                    return "content_description";
                }
    
                @Override
                public String getResponseFieldContentTitle() {
                    return "content_title";
                }
    
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 33.6K bytes
    - Click Count (0)
  6. src/main/resources/fess_config.properties

    index.field.virtual_host=virtual_host
    # Field name for content title in the response.
    response.field.content_title=content_title
    # Field name for content description in the response.
    response.field.content_description=content_description
    # Field name for URL link in the response.
    response.field.url_link=url_link
    # Field name for site path in the response.
    response.field.site_path=site_path
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. content_title */
        String RESPONSE_FIELD_content_title = "response.field.content_title";
    
        /** The key of the configuration. e.g. content_description */
        String RESPONSE_FIELD_content_description = "response.field.content_description";
    
        /** The key of the configuration. e.g. url_link */
        String RESPONSE_FIELD_url_link = "response.field.url_link";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
Back to Top