Corrigido o caminho do venv

This commit is contained in:
2025-04-21 21:34:19 -03:00
parent 0cb8298272
commit 9c162fe21f
2 changed files with 4 additions and 2 deletions

View File

@@ -11,5 +11,7 @@
"terminal.integrated.env.linux": { "terminal.integrated.env.linux": {
"PYTHONPATH": "${workspaceFolder}/backend" "PYTHONPATH": "${workspaceFolder}/backend"
}, },
"python.analysis.autoImportCompletions": false "python.analysis.autoImportCompletions": false,
"python.defaultInterpreterPath": "${workspaceFolder}/backend/.venv/bin/python",
"python.terminal.activateEnvInCurrentTerminal": "true"
} }

View File

@@ -1,6 +1,6 @@
from interfaces.LLM_model import LLMInterface from interfaces.LLM_model import LLMInterface
from langchain_core.prompts import ChatMessagePromptTemplate from langchain_core.prompts import ChatMessagePromptTemplate
from langchain_ollama import
class OllamaLLM(LLMInterface): class OllamaLLM(LLMInterface):