#!/bin/bash # Update and initialize submodules recursively git submodule update --init --recursive # Checkout specific branches for your submodules cd olas-predict-benchmark/benchmark git checkout fix/mech-packages cd ../.. cd olas-predict-benchmark/benchmark/mech git checkout main cd ../../.. # Configure poetry to create virtual environments within the project directory poetry config virtualenvs.in-project true # Install dependencies as specified in poetry.lock file poetry install # run gradio using the command below poetry run python app.py