-
Notifications
You must be signed in to change notification settings - Fork 0
feat: [Admin Assistant] Voice Briefings (TTS Integration) #264
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| --- | ||
| Name: voice-briefings | ||
| --- | ||
|
|
||
| App\Services\VoiceBriefingService: | ||
| provider: 'elevenlabs' | ||
| voice: 'nova' | ||
| speed: 1.0 | ||
| format: 'mp3' | ||
| cache_ttl: 86400 | ||
| audio_directory: 'assets/voice-briefings' | ||
| quiet_hours: | ||
| start: '22:00' | ||
| end: '07:00' | ||
|
|
||
| App\Model\VoiceBriefing: | ||
| cache_ttl: 86400 | ||
|
|
||
| App\Tasks\VoiceBriefingTask: | ||
| schedule: | ||
| morning: '07:00' | ||
| meeting: '09:00' | ||
| evening: '17:00' | ||
| urgent: 'immediate' | ||
| send_delivery: true | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| --- | ||
| Name: voicebriefings | ||
| --- | ||
|
|
||
| App\model\VoiceBriefing: | ||
| cache_ttl: 86400 | ||
|
|
||
| App\services\VoiceBriefingService: | ||
| provider: 'elevenlabs' | ||
|
Comment on lines
+5
to
+9
|
||
| voice: 'nova' | ||
| speed: 1.0 | ||
| format: 'mp3' | ||
| cache_ttl: 86400 | ||
| audio_directory: 'assets/voice-briefings' | ||
| quiet_hours: | ||
| start: '22:00' | ||
| end: '07:00' | ||
|
|
||
| App\tasks\VoiceBriefingTask: | ||
| schedule: | ||
| morning: '07:00' | ||
| meeting: '09:00' | ||
| evening: '17:00' | ||
| urgent: 'immediate' | ||
| send_delivery: true | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,147 @@ | ||||||
| <?php | ||||||
|
|
||||||
| namespace App\model; | ||||||
|
||||||
| namespace App\model; | |
| namespace App\Model; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are two new config files (voice.yml and voicebriefings.yml) configuring the same classes with different Name headers and different class-name casing. Keeping both is likely to cause confusing/duplicate config merges and make it unclear which values are effective. Please consolidate into a single config file and ensure class keys match the actual namespaces used in code.