Initial Commit

This commit is contained in:
2025-04-21 21:24:55 -03:00
commit 0cb8298272
10 changed files with 2357 additions and 0 deletions

8
backend/LLM/Ollama.py Normal file
View File

@@ -0,0 +1,8 @@
from interfaces.LLM_model import LLMInterface
from langchain_core.prompts import ChatMessagePromptTemplate
class OllamaLLM(LLMInterface):
def __init__(self):
super().__init__()