fix strange error where env variables are not read but somehow cashed. fixed by renaming the .env variable.

addind auto-detect of tts language
This commit is contained in:
Dobromir Popov
2024-06-10 12:45:23 +03:00
parent aac600ebaf
commit 11de0b27d2
12 changed files with 91 additions and 36 deletions

28
.vscode/tasks.json vendored
View File

@ -86,17 +86,19 @@
"panel": "new"
},
},
{
"label": "conda-activate",
"type": "shell",
"command": "source ~/miniconda3/etc/profile.d/conda.sh && conda activate py && echo 'Activated Conda Environment (py)!'",
"problemMatcher": [],
"options": {
"shell": {
"executable": "/bin/bash",
"args": ["-c"]
}
}
}
]
{
"label": "conda-activate",
"type": "shell",
"command": "source ~/miniconda3/etc/profile.d/conda.sh && conda activate ${input:condaEnv} && echo 'Activated Conda Environment (${input:condaEnv})!'",
"problemMatcher": [],
}
],
"inputs": [
{
"id": "condaEnv",
"type": "promptString",
"description": "Enter the Conda environment name",
"default": "py"
}
]
}