Hi
gin_fuzzy_search_limit is just PGC_USERSET setting. You can change it anytime with SET command, for example for concrete transaction:
begin;
set local gin_fuzzy_search_limit to 0; -- zero is default value
/* some queries */
commit;
regards, Sergei