Files
R3HarpiaChatbot/backend/LLM/Ollama.py

8 lines
220 B
Python

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