From 1e10cc79f78dabf4e31854ccb89f9180c4055dc1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 23:09:55 +0000 Subject: [PATCH 1/5] Bump urllib3 from 2.2.1 to 2.2.2 Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.2.1 to 2.2.2. - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](https://github.com/urllib3/urllib3/compare/2.2.1...2.2.2) --- updated-dependencies: - dependency-name: urllib3 dependency-type: indirect ... Signed-off-by: dependabot[bot] --- Pipfile.lock | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Pipfile.lock b/Pipfile.lock index 7faccd9..b73d74b 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -972,11 +972,12 @@ }, "urllib3": { "hashes": [ - "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d", - "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19" + "sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472", + "sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168" ], + "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==2.2.1" + "version": "==2.2.2" } }, "develop": {} From 8cd2342a9de9250afb98f9ced6f4b9ca0de28b81 Mon Sep 17 00:00:00 2001 From: Manuel Thomsen Date: Tue, 23 Jul 2024 07:34:20 +0200 Subject: [PATCH 2/5] feat: Add support for Claude integration and page routing --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5aab2df..3ad3464 100644 --- a/README.md +++ b/README.md @@ -22,17 +22,19 @@ Create a /.streamlit/config.toml file in the root directory to set the page sett - Voice selection search through the Elevenlabs library - Model selection - Allows for text variables for personalization -- Random and fixed seed for reproducibility (bugged) +- Random and fixed seed for reproducibility - Voice settings - review generation data and play audio ## TODO: -- [ ] FIXED SEED +- [x] FIXED SEED - [x] OPENAI INTEGRATION - [ ] OLLAMA INTEGRATION +- [ ] CLAUDE INTEGRATION - [ ] Batch processing - [ ] Voice to Voice - [x] Import user voices automatically - [ ] Error handling - [x] Locked or random seed - [ ] Save generated audio data +- [ ] Page routing From e1b1872e6a20712faa5a126a666441f868a1352c Mon Sep 17 00:00:00 2001 From: Manuel Thomsen Date: Tue, 23 Jul 2024 07:39:12 +0200 Subject: [PATCH 3/5] feat: Add support for OLLAMA integration, batch processing with CSV, and search by voice ID --- README.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3ad3464..75219dc 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ It has all of the bells and whistles I need to get started on a new project. Install Python 3.10 or latest and pipenv if you want ```bash -pip install streamlit, openai +pip install streamlit openai streamlit run app.py ``` @@ -27,14 +27,19 @@ Create a /.streamlit/config.toml file in the root directory to set the page sett - review generation data and play audio ## TODO: -- [x] FIXED SEED -- [x] OPENAI INTEGRATION + - [ ] OLLAMA INTEGRATION - [ ] CLAUDE INTEGRATION -- [ ] Batch processing +- [ ] Batch processing with CSV - [ ] Voice to Voice -- [x] Import user voices automatically - [ ] Error handling -- [x] Locked or random seed - [ ] Save generated audio data - [ ] Page routing +- [ ] search by voice ID + +## DONE: + +- [x] FIXED SEED +- [x] OPENAI INTEGRATION +- [x] Import user voices automatically +- [x] Locked or random seed \ No newline at end of file From f6c3c4798bedd41a590f096639fc8844a590d839 Mon Sep 17 00:00:00 2001 From: Manuel Thomsen Date: Tue, 23 Jul 2024 07:39:44 +0200 Subject: [PATCH 4/5] chore: Update error handling for audio generation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 75219dc..e079dae 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Create a /.streamlit/config.toml file in the root directory to set the page sett - [ ] CLAUDE INTEGRATION - [ ] Batch processing with CSV - [ ] Voice to Voice -- [ ] Error handling +- [ ] Error handling ( mostly done) - [ ] Save generated audio data - [ ] Page routing - [ ] search by voice ID From 75687477f96ab44cabeaff2c2bf751333d7dbd36 Mon Sep 17 00:00:00 2001 From: Manuel Thomsen Date: Tue, 23 Jul 2024 07:40:53 +0200 Subject: [PATCH 5/5] feat: Update Eleventools GUI description in README The commit updates the description of Eleventools GUI in the README file to accurately reflect its purpose. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e079dae..85b0180 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # ElevenTools Alpha v0.0.1 -Eleventools is my personal toolbox for Elevenlabs. +Eleventools is my personal GUI for Elevenlabs. It has all of the bells and whistles I need to get started on a new project. ## Installation