eBGP leak v4 in v6

Hello guys,
I have a problem
I have two eBGP multihop session one in v4 one in v6
I have all my full table in v4 leaked to the v6 session
for the same session in v6 when I run a show ip bgp summary I see I export more than 900 000 prefixes and when I run a show IPv6 bgp summary I see I export 161 300 prefixes

How to disable this to send only v6 in the v6 session and v4 in v4 session …

Thank you

Use the correct address-family option for the neighbors

it’s used
IPv4 unicast for the V4 session and IPv6 unicast for the v6

    neighbor 193.x.x.x {
        address-family {
            ipv4-unicast {
                route-map {
                    export full
                    import eBGP-v4-in
                }
            }
        }
        ebgp-multihop 6
        remote-as 1xxx
        update-source lo


    neighbor 2001:xxxx:xxxx:xxxx:xxxx {
        address-family {
            ipv6-unicast {
                route-map {
                    export full-6
                }
            }
        }
        ebgp-multihop 6
        remote-as 1xxx
        shutdown
        update-source lo
    }

I don’t know the used version and so on
but as workaround

set policy route-map REJECT-ALL rule 10 action deny
set protocols bgp neighbor x.x.x.x_ipv4 address-family ipv6-unicast route-map export REJECT-ALL 
set protocols bgp neighbor x:y:y::y_ipv6 address-family ipv4-unicast route-map export REJECT-ALL