Skip to content

Commit

Permalink
Merge pull request #37 from troykelly/36-add-elevenlabs-python-librar…
Browse files Browse the repository at this point in the history
…y-for-additional-voices

Added ElevenLabs
  • Loading branch information
troykelly authored May 23, 2024
2 parents eadf8a1 + e6a21c7 commit 3044554
Show file tree
Hide file tree
Showing 6 changed files with 311 additions and 207 deletions.
14 changes: 6 additions & 8 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,28 +35,26 @@
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.debugpy",
"KevinRose.vsc-python-indent",
"njpwerner.autodocstring",
"GitHub.copilot",
"GitHub.copilot-chat",
"ZainChen.json"
"ZainChen.json",
"VisualStudioExptTeam.vscodeintellicode",
"VisualStudioExptTeam.vscodeintellicode-completions"
]
},
},

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "sudo apt-get update && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ffmpeg && pip3 install --user -r requirements.txt",

"postCreateCommand": "echo 'export PATH=$PATH:/home/vscode/.local/bin' >> /home/vscode/.bashrc && sudo apt-get update && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install ffmpeg && pip3 install --user -r requirements.txt",
// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
}
5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"ms-python.vscode-pylance"
]
}
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"python.analysis.typeCheckingMode": "off",
"python.analysis.autoSearchPaths": true,
"python.analysis.useLibraryCodeForTypes": true,
"python.analysis.logLevel": "Trace" // For debugging purposes
}
Loading

0 comments on commit 3044554

Please sign in to comment.