refactored project to use poetry

This commit is contained in:
2025-05-20 22:19:30 -05:00
parent 3beb160c22
commit b3da128396
20 changed files with 5113 additions and 23 deletions

5
rag_system/llm/ollama.py Normal file
View File

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