-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: (voice) enhance character card voice configuration support #698
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
augchan42
changed the title
feat(voice): enhance character card voice configuration support
feat: (voice) enhance character card voice configuration support
Nov 30, 2024
BTW this PR also fixes the web-agent/vite build issues |
This is already fixed on recent main. |
Can you start by resolving the conflicts and why are there so many changed files? It says 141 files right now. |
The changed files are autogenearated docs from the build process. I'll
take a look
…On Sat, Nov 30, 2024 at 3:11 PM Shakker Nerd ***@***.***> wrote:
Can you start by resolving the conflicts and why are there so many changed
files? It says 141 files right now.
—
Reply to this email directly, view it on GitHub
<#698 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AE32LKN2RGJTZQRWHPCTD3L2DFQILAVCNFSM6AAAAABSYBSAV2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKMBYHA3DMNBSHE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
- Add comprehensive ElevenLabs configuration in character cards - Make ElevenLabs settings optional with sensible defaults - Implement configuration priority (character card > env vars > defaults) - Update schema validation to support optional fields - Add debug logging for voice selection process - Maintain backward compatibility with existing setups Example character card config: ```json { "settings": { "voice": { "model": "en_GB-alan-medium", "elevenlabs": { "voiceId": "your-voice-id", "model": "eleven_monolingual_v1", "stability": "0.5" } } } } ``` Closes elizaOS#694
augchan42
force-pushed
the
fix/character-voice-settings
branch
from
November 30, 2024 09:30
d2690af
to
607daa9
Compare
From 141 files to 8, I re-ran the build and it works after removing the web-agent folder (had to fix target in package.json) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
feat(voice): enhance character card voice configuration support
Example character card config:
Closes #694