How can I exclude tags from category_rss function?

Try this – think I found this from little mike.

add_filter('get_the_tags', 'strip_tags_from_feeds');
function strip_tags_from_feeds($terms) {
    if (is_feed())
        return array();
    return $terms;
}