Spaces:
Sleeping
Sleeping
File size: 279 Bytes
45b17a5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Creating directory
mkdir -p src
mkdir -p research
# Creating files
touch src/__init__.py
touch src/helper.py
touch src/prompt.py
touch .env
touch setup.py
touch app.py
touch research/trials.ipynb
touch requirements.txt
echo "Directory and files created successfully!."
|