Adding AI models to OpenMV ecosystem?

Thank you so much. I went to the master branch of the downloaded git repository and the error isn’t there as you said.
I used these commands to go to the master branch:

git checkout master

Then, I used the following command as there was a restriction to prevent overwriting the previously changed files.

git stash

But now, I have the following error. Do you know how to get rid of it?

CC ports/stm32/wifidbg.c
CC ports/stm32/main.c
CC ports/stm32/hash.c
CC ports/stm32/soft_i2c.c
CC ../hal/cmsis/src/dsp/BasicMathFunctions/arm_shift_q7.c
CC ../hal/cmsis/src/dsp/BasicMathFunctions/arm_shift_q15.c
CC ../hal/cmsis/src/dsp/BasicMathFunctions/arm_dot_prod_f32.c
CC ../hal/cmsis/src/dsp/SupportFunctions/arm_float_to_q7.c
CC ../hal/cmsis/src/dsp/SupportFunctions/arm_float_to_q15.c
CC ../hal/cmsis/src/dsp/SupportFunctions/arm_q7_to_float.c
CC ../hal/cmsis/src/dsp/SupportFunctions/arm_q15_to_float.c
CC ../hal/cmsis/src/dsp/SupportFunctions/arm_q7_to_q15.c
CC ../hal/cmsis/src/dsp/SupportFunctions/arm_q15_to_q7.c
CC nn_st.c
In file included from /home/hamedelahi/openmv_workspace/openmv/src/stm32cubeai/AI/Inc/ai_datatypes_defines.h:25,
                 from nn_st.h:17,
                 from nn_st.c:11:
nn_st.c: In function 'aiRun':
/home/hamedelahi/openmv_workspace/openmv/src/stm32cubeai/AI/Inc/ai_platform.h:323:4: error: 'union <anonymous>' has no member named 'format'
  323 | { .format = (ai_buffer_format)(format_), \
      |    ^~~~~~
/home/hamedelahi/openmv_workspace/openmv/src/stm32cubeai/data/network_data.h:45:3: note: in expansion of macro 'AI_BUFFER_OBJ_INIT'
   45 |   AI_BUFFER_OBJ_INIT( \
      |   ^~~~~~~~~~~~~~~~~~
nn_st.c:212:7: note: in expansion of macro 'AI_NETWORK_DATA_WEIGHTS'
  212 |       AI_NETWORK_DATA_WEIGHTS(ai_network_data_weights_get()),
      |       ^~~~~~~~~~~~~~~~~~~~~~~
/home/hamedelahi/openmv_workspace/openmv/src/stm32cubeai/AI/Inc/ai_platform.h:324:4: error: 'union <anonymous>' has no member named 'n_batches'
  324 |   .n_batches = (n_batches_), \
      |    ^~~~~~~~~
....