summary refs log tree commit diff stats
path: root/ollama/llm.py
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-01 20:03:53 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-01 20:03:53 +0000
commit0d42327250d4b8d521ef1b0ef17ac673b2ae2ed4 (patch)
treef2ad7241d12baaebdfb09249d10302162f5e87aa /ollama/llm.py
parent8e05d4390d2af608edf5829583b63f3054760c02 (diff)
downloademulator-bug-study-0d42327250d4b8d521ef1b0ef17ac673b2ae2ed4.tar.gz
emulator-bug-study-0d42327250d4b8d521ef1b0ef17ac673b2ae2ed4.zip
fix invalid paths
Diffstat (limited to 'ollama/llm.py')
-rwxr-xr-xollama/llm.py2
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()