Video AI 3.0.0.9.b

Hi
I try to use cli for video processing.
First of all i reproduced required actions with GUI and result is OK.
I was copied ffmpeg command and put it to a script convert.cmd for Windows.

@echo off

cd "C:\Program Files\Topaz Labs LLC\Topaz Video AI BETA"
set VEAI_MODEL_DIR="C:\ProgramData\Topaz Labs LLC\Topaz Video AI BETA\"

ffmpeg ^
-hide_banner ^
-nostdin ^
-y ^
-nostats ^
-i "C:/Users/paul/Desktop/render_src.mp4" ^
-vsync 0 ^
-avoid_negative_ts 1 ^
-color_trc 2 ^
-colorspace 2 ^
-color_primaries 2 ^
-filter_complex "scale=in_range=limited:out_range=full,veai_up=model=ahq-12:scale=0:w=1800:h=1800:device=0:vram=0.9:instances=1,veai_fi=model=chf-3:slowmo=2:device=0:vram=0.9:instances=1,scale=w=1800:h=1800:flags=lanczos:threads=0" ^
-c:v h264_nvenc ^
-profile:v high ^
-preset medium ^
-pix_fmt yuv420p ^
-b:v 7.5M ^
-map_metadata 0 ^
-movflags "frag_keyframe+empty_moov+delay_moov+use_metadata_tags+write_colr " ^
-map_metadata:s:v 0:s:v ^
-an ^
-metadata "videoai=test" ^
"C:/Users/paul/Desktop/render_output.mp4"

And the script are crash with error

[Parsed_veai_up_0 @ 000001C6583ADEC0] Failed to configure output pad on Parsed_veai_up_0
Error reinitializing filters!
Failed to inject frame into filter network: Invalid argument
Error while processing the decoded data for stream #0:0
Conversion failed!

The same configuration works from UI but CLI is crashed. Perhaps an error in the configuration of environment variables?