Skip to content

Commit 48b8ace

Browse files
CopilotVictoKu1
andcommitted
Add missing AI models documentation to USAGE.md
- Added --models flag to Available Sources section - Added AI models example to usage examples - Added models.sh to individual script usage section - Updated --all description to mention AI models inclusion Co-authored-by: VictoKu1 <46734015+VictoKu1@users.noreply.github.com>
1 parent fdb7936 commit 48b8ace

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

docs/USAGE.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The main `emergency_storage.sh` script coordinates all individual scripts and pr
2323

2424
### Available Sources
2525

26-
- `--all` - Download from all sources (default when no flags specified, includes git repositories, excludes manual-sources)
26+
- `--all` - Download from all sources (default when no flags specified, includes git repositories and AI models, excludes manual-sources)
2727
- `--kiwix` - Download Kiwix mirror only
2828
- `--openzim` - Download OpenZIM files only
2929
- `--openstreetmap` - Download OpenStreetMap data only
@@ -32,6 +32,7 @@ The main `emergency_storage.sh` script coordinates all individual scripts and pr
3232
- `--ia-movies` - Download Internet Archive movies collection only
3333
- `--ia-texts` - Download Internet Archive scientific texts only
3434
- `--git` - Clone/update Git repositories from JSON configuration
35+
- `--models` - Download AI models using Ollama (installs Ollama if needed)
3536
- `--manual-sources` - Download from manually configured JSON sources (must be selected explicitly, not part of --all)
3637

3738
### Examples
@@ -70,7 +71,10 @@ The main `emergency_storage.sh` script coordinates all individual scripts and pr
7071
# Advanced: Clone/update Git repositories only
7172
./emergency_storage.sh --git /mnt/external_drive
7273

73-
# Advanced: Explicitly download everything to external drive (includes git repos)
74+
# Advanced: Download AI models only
75+
./emergency_storage.sh --models /mnt/external_drive
76+
77+
# Advanced: Explicitly download everything to external drive (includes git repos and AI models)
7478
./emergency_storage.sh --all /mnt/external_drive
7579

7680
# Show help
@@ -93,6 +97,7 @@ chmod +x scripts/*.sh
9397
./scripts/ia-music.sh /mnt/external_drive # IA Music collection
9498
./scripts/ia-movies.sh /mnt/external_drive # IA Movies collection
9599
./scripts/ia-texts.sh /mnt/external_drive # IA Texts collection
100+
./scripts/models.sh /mnt/external_drive # AI models using Ollama
96101

97102
# Python scripts for Git repos and manual sources
98103
python3 scripts/download_git_repos.py --dest /mnt/external_drive/git_repos

0 commit comments

Comments
 (0)