Merge branch 'main' into random_image_downloader

This commit is contained in:
RealEvoranz
2026-08-24 14:35:59 -04:00
3 changed files with 1528 additions and 2 deletions
+1
View File
@@ -1,6 +1,7 @@
*.png *.png
*.txt *.txt
random_image.json random_image.json
!nouns.txt
Todo.md Todo.md
data-dir/ data-dir/
__pycache__/ __pycache__/
+2 -2
View File
@@ -12,11 +12,11 @@ Clone the repository.
git clone https://github.com/User0332/rewards-farmer git clone https://github.com/User0332/rewards-farmer
``` ```
Enter the root directory of the repository and create a wordlist named `nouns.txt` which will contain seed words for the LLM to complete 20 searches. The wordlist should be separated by newline A sample `nouns.txt` file is included in the project root and can be modified by the user to contain seed words for the LLM to complete 20 searches. The wordlist should be separated by newline.
```sh ```sh
cd rewards-farmer cd rewards-farmer
cp /path/to/my_amazing_wordlist.txt nouns.txt # Edit the included nouns.txt file to add or replace words as needed
``` ```
You should also have an Ollama account created (for the LLM), the `ollama` tool installed, and you should have signed in to the Ollama CLI via the command line using `ollama signin`. This project will use a minimal amount of Ollama cloud usage using `gemma4:cloud`. If you wish to use a different model, please change the `model` parameter in the `get_ollama_response` function in `src/llm_utils.py`. You should also have an Ollama account created (for the LLM), the `ollama` tool installed, and you should have signed in to the Ollama CLI via the command line using `ollama signin`. This project will use a minimal amount of Ollama cloud usage using `gemma4:cloud`. If you wish to use a different model, please change the `model` parameter in the `get_ollama_response` function in `src/llm_utils.py`.
+1525
View File
File diff suppressed because it is too large Load Diff