Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ All repos live under the `wavekat` GitHub org. SSH access uses the `github.com-w
| `wavekat-vad` | Voice Activity Detection — WebRTC, Silero, TEN-VAD, FireRedVAD | Cyan `#00bcd4` |
| `wavekat-turn` | Turn detection — end-of-utterance for voice pipelines | Purple `#7c4dff` |
| `wavekat-lab` | Interactive dashboard for testing audio backends | Amber `#ffd740` |
| `wavekat-tts` | Text-to-speech synthesis for voice pipelines | Pink `#ff4081` |

### Tools
| Name | What it does | URL |
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

> Give every small business the voice of a big one.

[wavekat.com](https://wavekat.com)
[https://wavekat.com](https://wavekat.com)

WaveKat builds open-source, AI-powered solutions that put enterprise-grade capabilities in the hands of everyone. We start with voice — answering phones, handling conversations, being present 24/7 — the kind of thing only big companies could afford to do well. But voice is just where we begin.

Expand All @@ -19,7 +19,7 @@ WaveKat builds open-source, AI-powered solutions that put enterprise-grade capab

| Name | What it does |
|------|-------------|
| [Common Voice Explorer](https://commonvoice-explorer.wavekat.com/) | Browse, filter, and review Mozilla Common Voice dataset clips |
| [Common Voice Explorer](https://github.com/wavekat/wavekat-lab/tree/main/tools/cv-explorer) | Browse, filter, and review Mozilla Common Voice dataset clips<br>**Try it:** [https://commonvoice-explorer.wavekat.com](https://commonvoice-explorer.wavekat.com/) |

### Libraries

Expand All @@ -29,6 +29,7 @@ WaveKat builds open-source, AI-powered solutions that put enterprise-grade capab
| [wavekat-vad](https://github.com/wavekat/wavekat-vad) | Voice Activity Detection — WebRTC, Silero, TEN-VAD, FireRedVAD | [![GitHub stars](https://img.shields.io/github/stars/wavekat/wavekat-vad?style=flat-square)](https://github.com/wavekat/wavekat-vad) |
| [wavekat-turn](https://github.com/wavekat/wavekat-turn) | Turn detection — knows when a speaker is done talking | [![GitHub stars](https://img.shields.io/github/stars/wavekat/wavekat-turn?style=flat-square)](https://github.com/wavekat/wavekat-turn) |
| [wavekat-lab](https://github.com/wavekat/wavekat-lab) | Interactive dashboard for testing and comparing audio backends | [![GitHub stars](https://img.shields.io/github/stars/wavekat/wavekat-lab?style=flat-square)](https://github.com/wavekat/wavekat-lab) |
| [wavekat-tts](https://github.com/wavekat/wavekat-tts) | Text-to-speech synthesis — unified Rust interface for multiple TTS backends | [![GitHub stars](https://img.shields.io/github/stars/wavekat/wavekat-tts?style=flat-square)](https://github.com/wavekat/wavekat-tts) |

## Tech Stack

Expand Down
4 changes: 2 additions & 2 deletions src/layouts/Base.astro
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ const ogImageURL = new URL(ogImage, Astro.site);
<script is:inline>
// Apply theme before first paint to prevent flash
const saved = localStorage.getItem('theme');
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
if (saved === 'dark' || (!saved && prefersDark)) {
const prefersLight = window.matchMedia('(prefers-color-scheme: light)').matches;
if (saved !== 'light' && (saved === 'dark' || !prefersLight)) {
document.documentElement.classList.add('dark');
}
</script>
Expand Down
6 changes: 6 additions & 0 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ const libraries = [
color: '#ffd740',
href: 'https://github.com/wavekat/wavekat-lab',
},
{
name: 'wavekat-tts',
description: 'Text-to-speech synthesis — unified Rust interface for multiple TTS backends.',
color: '#ff4081',
href: 'https://github.com/wavekat/wavekat-tts',
},
];
---

Expand Down
Loading