> ## Documentation Index
> Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Response Processors

export const LwTemplate = ({title = "Key questions to get you started", icon = "sparkles", cta = "Powered by Agent Studio", linkHref = "https://lucidworks.com/demo/?utm_source=docs&utm_medium=referral&utm_campaign=docs_cta_ai"}) => {
  const [isLoaded, setIsLoaded] = useState(false);
  useEffect(() => {
    const timer = setTimeout(() => {
      setIsLoaded(true);
    }, 500);
    return () => clearTimeout(timer);
  }, []);
  return <div className="lw-template-container">
      <Card title={title} icon={icon}>
        {isLoaded && <span dangerouslySetInnerHTML={{
    __html: `<lw-template id="a029c1a9-28be-427e-b0e1-5d918920246a"></lw-template
            >`
  }} />}
        <Link href={linkHref} className="agent-studio-link text-left text-gray-600 gap-2 dark:text-gray-400 text-sm font-medium flex flex-row items-center hover:text-primary dark:hover:text-primary-light group-hover:text-primary group-hover:dark:text-primary-light">Powered by Lucidworks Agent Studio</Link>
      </Card>
    </div>;
};

[old doc.lw link]: https//doc.lucidworks.com/app-studio/4.2/3185

[localhost link]: http://localhost:3000/docs/5/app-studio/reference/modules/workflow-and-data-processing/response-processors/overview

[mintlify link]: https://doc.lucidworks.com/docs/5/app-studio/reference/modules/workflow-and-data-processing/response-processors/overview

The articles in this section describe response processors.

<LwTemplate />

[**Field Processors**](/docs/5/fusion/dev-portal/appkit/reference/modules/workflow-and-data-processing/response-processors/field-processors)

Field response processors include ones to perform these operations:

* Capitalize the display value of the given field names.
* Add Highlighting to Fields.
* Tag a document with classifications based on field values.
* Format a date object, replacing the original date value with another.
* Parse dates out of field values.
* Set the value of a field that is missing a value, based on the value of a different field.
* Parse the String value of the specified fields into an Object representation.
* Create a multivalued field from a single field value by using a separator.
* Extract the hostname from URLs and place it in a field named 'site'.
* Process fully qualified URLs in field values and markup, and add anchor tags for active links in the display values.
* Statically add metadata to documents that match a given regular expression.
* Replace field values (actual, display, or both) that are HTML or URL encoded with decoded values.
* Replace field values (actual, display, or both) that match a given regular expression with a different value.
* Make Twitter users and hashtags clickable in the display value.
* Duplicate a field, creating two separate instances.
* Create a new field by joining multiple existing fields using a pattern expression.
* Localize the values of a field using a specified bundle.

[**Filter Processors**](/docs/5/fusion/dev-portal/appkit/reference/modules/workflow-and-data-processing/response-processors/filter-processors)

Filter response processors include ones to perform these operations:

* Capitalize the display value of the given filter.
* Parse dates out of facet filter values.
* Sort facet filters by count.
* Sort facet filters by actual value.
* Replace display values in FacetFilters for specified or all Facets.
* Retrieve other filter values for the same facet, despite there being one or more filters for that facet already applied.
* Remove facet filters that match a regular expression pattern from a facet.
* Replace filter values (actual, display, or both) that match a given regular expression with a different value.
* (Since 4.2.0) Dynamically format the display value of a date range facet according to the size of the range.

[**Facet Processors**](/docs/5/fusion/dev-portal/appkit/reference/modules/workflow-and-data-processing/response-processors/facet-processors)

Facet response processors include ones to perform these operations:

* Duplicate a facet.
* Create facets.
* Fill in date filters for a facet.
* Parse and formatting filter values from one Date format to another.
* Create a pseudo date facet.
* Set or changing Parameters for a facet.
* Sort facets based on various properties and parameters.
* Process facet filter values formatted as paths to represent them as hierarchical trees.
* Remove facets from a Response.
* Create pseudo facets based on values in a given field or fields.
* Process hierarchical facets so that only one level is rendered at a time.
* Define a pseudo facet from a list of facets in the response.

[**General Response Processors**](/docs/5/fusion/dev-portal/appkit/reference/modules/workflow-and-data-processing/response-processors/general-response-processors)

General response processors include ones to perform these operations:

* Perform a left join on fields.
* Log response metadata and attributes to log4j.
* Group results by a given Field value.
