diff --git a/.vscode/settings.json b/.vscode/settings.json index 7213822..56bd17c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -11,5 +11,7 @@ "terminal.integrated.env.linux": { "PYTHONPATH": "${workspaceFolder}/backend" }, - "python.analysis.autoImportCompletions": false + "python.analysis.autoImportCompletions": false, + "python.defaultInterpreterPath": "${workspaceFolder}/backend/.venv/bin/python", + "python.terminal.activateEnvInCurrentTerminal": "true" } \ No newline at end of file diff --git a/backend/LLM/Ollama.py b/backend/LLM/Ollama.py index c656090..aeba8c7 100644 --- a/backend/LLM/Ollama.py +++ b/backend/LLM/Ollama.py @@ -1,6 +1,6 @@ from interfaces.LLM_model import LLMInterface from langchain_core.prompts import ChatMessagePromptTemplate - +from langchain_ollama import class OllamaLLM(LLMInterface):