Spaces:
Running
Running
# setup.sh: Clone the smolagents repository if not already present. | |
# Check if the repository folder exists | |
if [ ! -d "smolagents" ]; then | |
echo "Cloning smolagents repository..." | |
git clone https://github.com/huggingface/smolagents.git | |
else | |
echo "smolagents repository already exists. Skipping clone." | |
fi | |