diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-06-01 20:03:53 +0000 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-06-01 20:03:53 +0000 |
| commit | 0d42327250d4b8d521ef1b0ef17ac673b2ae2ed4 (patch) | |
| tree | f2ad7241d12baaebdfb09249d10302162f5e87aa /ollama/llm.py | |
| parent | 8e05d4390d2af608edf5829583b63f3054760c02 (diff) | |
| download | emulator-bug-study-0d42327250d4b8d521ef1b0ef17ac673b2ae2ed4.tar.gz emulator-bug-study-0d42327250d4b8d521ef1b0ef17ac673b2ae2ed4.zip | |
fix invalid paths
Diffstat (limited to 'ollama/llm.py')
| -rwxr-xr-x | ollama/llm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ollama/llm.py b/ollama/llm.py index c1a62d90..d6ea059c 100755 --- a/ollama/llm.py +++ b/ollama/llm.py @@ -3,7 +3,7 @@ from re import sub from os import listdir, path model : str = "deepseek-r1:70b" -directory : str = "../mailinglist/output_mailinglist" +directory : str = "../results/scraper/mailinglist" with open("preambel", "r") as file: preambel = file.read() |