Files
R3HarpiaChatbot/backend/LLM/Ollama.py
2025-04-21 21:24:55 -03:00

8 lines
191 B
Python

from interfaces.LLM_model import LLMInterface
from langchain_core.prompts import ChatMessagePromptTemplate
class OllamaLLM(LLMInterface):
def __init__(self):
super().__init__()