SEO module to change tag title for different listing page

Would you mind using the “description” field for tags as the SEO title? If so:

add_filter( 'single_term_title', 'wpse_60464_title_from_description' );
function wpse_60464_title_from_description( $title )
{
    if ( ( $obj = get_queried_object() ) && ! empty( $obj->description ) )
        $title = $obj->description;
    return $title
}