initial commit

This commit is contained in:
2025-05-01 12:21:47 -05:00
parent 2b9c4289e7
commit 226b51a6a1
18 changed files with 13479 additions and 0 deletions

0
llm/__init__.py Normal file
View File

7
llm/ollama.py Normal file
View File

@@ -0,0 +1,7 @@
from langchain_ollama import OllamaLLM
def load_llm():
return OllamaLLM(
model="llama3.2",
base_url="http://localhost:11434",
temperature=0)