Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b605804
feat(tts/elevenlabs): ElevenLabs TTS provider (list voices + synthesi…
TheodorNEngoy Aug 24, 2025
3d32a39
docs(tts/elevenlabs): README + demo link
TheodorNEngoy Aug 24, 2025
7a5ec8d
chore: remove demo.cast; keep external demo link
TheodorNEngoy Aug 24, 2025
383fff3
test(tts/elevenlabs): green synth+health smoke test (base64 0.22 API)
TheodorNEngoy Aug 24, 2025
654611f
chore(tts/elevenlabs): drop accidental binaries; ignore mp3; clean wa…
TheodorNEngoy Aug 24, 2025
e56f6ba
chore(tts/elevenlabs): fmt+clippy hygiene before review
TheodorNEngoy Aug 24, 2025
3c8c5d7
chore(tts/elevenlabs): allow static_mut_refs used by WIT-generated bi…
TheodorNEngoy Aug 24, 2025
f663001
feat(tts/elevenlabs): add retry module + httpdate dep; wire mod
TheodorNEngoy Aug 24, 2025
8c3c6ba
feat(tts/elevenlabs): Retry-After aware exponential backoff for 429/5…
TheodorNEngoy Aug 24, 2025
f92b269
feat(tts/elevenlabs): use Retry-After–aware backoff (execute_with_ret…
TheodorNEngoy Aug 24, 2025
11c7fa9
feat(tts/elevenlabs): add send_with_retry alias for any method
TheodorNEngoy Aug 24, 2025
6f9f400
feat(tts/elevenlabs): wire Retry-After backoff via RequestBuilder::se…
TheodorNEngoy Aug 24, 2025
b26e153
chore(tts/elevenlabs): avoid trait-scope issues; use retry::send_with…
TheodorNEngoy Aug 24, 2025
8e5c17d
fix(tts/elevenlabs): qualify retry module as crate::retry from nested…
TheodorNEngoy Aug 24, 2025
a1a7eb3
fix(tts/elevenlabs): use Voices v2 (GET /v2/voices) per API docs
TheodorNEngoy Aug 24, 2025
0eb19dd
feat(tts/elevenlabs): map HTTP failures to typed tts-error (+Retry-Af…
TheodorNEngoy Aug 24, 2025
1a04f98
chore(tts/deepgram): scaffold provider crate (WIP)
TheodorNEngoy Aug 25, 2025
884ed12
feat(tts/deepgram): Speak REST synth + voices; tests; docs
TheodorNEngoy Aug 25, 2025
48c961c
chore(workspace): add tts/deepgram to members so CI builds it
TheodorNEngoy Aug 25, 2025
5746728
feat(tts/deepgram): real Speak REST synth (Token auth, audio/mpeg, {t…
TheodorNEngoy Aug 25, 2025
44eac7c
fix(tts/deepgram): gate on DEEPGRAM_API_KEY; Token auth + audio/mpeg;…
TheodorNEngoy Aug 25, 2025
3f790fc
test(tts/deepgram): robust smoke (build component, workspace target p…
TheodorNEngoy Aug 25, 2025
fdb2420
test(tts/deepgram): health_ok accepts wasmtime raw output ("ok") or o…
TheodorNEngoy Aug 25, 2025
8500ee4
test(tts/deepgram): robust wasmtime runner; accept "ok"/"\"ok\""/ok(.…
TheodorNEngoy Aug 26, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,8 @@ target
tmp
components
.DS_Store

# demo recordings
*.cast

*.mp3
Loading