SearchPod1.0 / setup.sh
siddhartharyaai's picture
Create setup.sh
51f8403 verified
raw
history blame
329 Bytes
#!/bin/bash
# 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