diff options
Diffstat (limited to 'ollama/llm.py')
| -rwxr-xr-x | ollama/llm.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ollama/llm.py b/ollama/llm.py index acf76421..c1a62d90 100755 --- a/ollama/llm.py +++ b/ollama/llm.py @@ -12,9 +12,6 @@ for name in listdir(directory): with open(path.join(directory, name)) as file: content = preambel + "\n" + file.read() - with open("test", "r") as file: - content = file.read() - response : ChatResponse = chat( model=model, messages=[ { |