Client call tomorrow
Just circling back to confirm our call tomorrow at 3:00 PM.
I'll have the latest updates and next steps ready to go.
Looking forward to it!
Polished
Hold a shortcut, speak naturally, and clean text lands wherever your cursor sits.
Voxa transforms
Voxa turns messy spoken thoughts into clean, polished writing you can send with confidence.
Client call tomorrow
Just circling back to confirm our call tomorrow at 3:00 PM.
I'll have the latest updates and next steps ready to go.
Looking forward to it!
Polished
You say
hi just following up on the deck I sent yesterday um slide seven has a bit too much could we cut that section and move our call to four pm thanks
Voxa writes
Hi! Just following up on the deck I sent yesterday.
Slide 7 has a bit too much; could we cut that section?
Also, can we move our call to 4:00 PM?
Thanks!
You say
heads up the deploy got pushed to tomorrow morning because of an edge case in payments uh nothing blocking I'll update in the thread
Voxa writes
Quick update: we're moving the deploy to tomorrow morning due to an edge case in payments.
Nothing blocking. I'll share updates in the thread.
You say
add a task for the mobile onboarding flow uh we need analytics and an A B test let's target next Friday
Voxa writes
Title: Mobile onboarding flow
Description: Implement analytics events and A/B test for the headline.
Target: Next Friday
How it works
Hold a shortcut, speak naturally, and polished text lands wherever your cursor sits. The whole loop runs in under three seconds.
Default is Ctrl, Shift, and Space together. Change it in Settings if it collides with another app.
Up to three minutes per take. Pause, change your mind, correct yourself. Say "new line" or "period" when you want them inserted exactly. The widget pulses with your voice while you talk and shimmers while it polishes.
Voxtral transcribes. Mistral cleans up filler, fixes punctuation, resolves self-corrections. The result pastes into whatever app the cursor was in.
See it in action
Voxa works where you write. Use the same shortcut to dictate in Slack, Email, Notion, Cursor, ChatGPT, Linear, and everywhere else.
See Voxa in action across your tools
Switch app demo
Hi team, thanks for a great kickoff today...
Thanks for sharing the mockups...
Here's a quick update on our progress...
Looks good! A few small suggestions...
This month we're excited to introduce...
Hi Alex,
Here's a quick update on our progress this quarter.
We've shipped the new onboarding flow, improved performance across key pages, and are seeing strong early feedback from customers.
Next up, we'll be focusing on scaling our integrations and refining the analytics dashboard.
Let me know if you'd like a deeper dive into any of these areas.
Thanks,
Jamie
Capture the action items and send the summary to the product team after the sync.
import { useState, useEffect } from 'react'
import { fetchTasks } from '@/lib/api'
export function useTasks() {
const [tasks, setTasks] = useState<Task[]>([])
const [loading, setLoading] = useState(true)
const [error, setError] = useState<Error | null>(null)
useEffect(() => {
let cancelled = false
const load = async () => {
try {
const data = await fetchTasks()
if (!cancelled) setTasks(data)
} catch (err) {
if (!cancelled) setError(err as Error)
} finally {
if (!cancelled) setLoading(false)
}
}
load()
return () => { cancelled = true }
}, [])
return { tasks, loading, error }
} Absolutely, happy to help. Here's a draft launch plan tailored to your new product.
Replace the single Slack mockup with a six-app tabbed demo. Each tab is a realistic UI for the app, with the Voxa capsule overlaying the dictation slot.
Your shortcut. Your flow. Works everywhere.
The wedge
Most dictation tools route your audio through Silicon Valley. We do not. Voxa is engineered around three invariants that hold from the first ms of the first request.
Voxtral and Mistral models, both hosted on EU endpoints. Every request to transcribe and polish your dictation routes through Frankfurt.
No OpenAI. No Anthropic. No Google. The wedge is not marketing language, it is the architecture. Read the subprocessor list.
Your voice streams straight into Voxtral and is discarded on response. No transcripts saved server-side, no final text retained.
Built by
A Belgian developer who got tired of Silicon Valley listening in on his client conversations.
Tim Pieters
I write code for a living and I dictate everything. Until last year I was happy with Wispr Flow. Then I read the architecture and realised my client conversations were round-tripping through Silicon Valley. For a Belgian developer working with European clients, that is not a thing you keep doing.
So I rebuilt it the way it should exist. EU-only inference, audio discarded on response, no transcripts retained server-side. Same hold-to-speak workflow, different geography under the hood.
Voxa is for the people who handle other people's data. Lawyers, consultants, devs, anyone who would rather not narrate their client calls into a US-hosted API.
Made in Brussels·Hosted in Frankfurt
Speaks your language
Voxtral identifies the language from the first words. Bias the detection by setting your UI locale in Settings if you switch a lot.
NL
Dutch
“Hallo”
FR
French
“Bonjour”
EN
English
“Hello”
DE
German
“Hallo”
IT
Italian
“Ciao”
ES
Spanish
“Hola”
Voxa
Free for 2,000 words a week. Pro is €12 / month. No card to start, no signup form, no audio leaving Europe.
Pushed the tabbed demo branch. Auto-cycle is 8 seconds per tab, manual clicks reset the timer. Ready for review.