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
Binary file added apps/desktop/public/assets/gladia.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 7 additions & 5 deletions apps/desktop/src/components/settings/ai/stt/configure.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -477,11 +477,13 @@ function ProviderContext({ providerId }: { providerId: ProviderId }) {
? `Use [Soniox](https://soniox.com) for transcriptions.`
: providerId === "assemblyai"
? `Use [AssemblyAI](https://www.assemblyai.com) for transcriptions.`
: providerId === "fireworks"
? `Use [Fireworks AI](https://fireworks.ai) for transcriptions.`
: providerId === "custom"
? `We only support **Deepgram compatible** endpoints for now.`
: "";
: providerId === "gladia"
? `Use [Gladia](https://www.gladia.io) for transcriptions.`
: providerId === "fireworks"
? `Use [Fireworks AI](https://fireworks.ai) for transcriptions.`
: providerId === "custom"
? `We only support **Deepgram compatible** endpoints for now.`
: "";

if (!content.trim()) {
return null;
Expand Down
15 changes: 15 additions & 0 deletions apps/desktop/src/components/settings/ai/stt/shared.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ export const displayModelId = (model: string) => {
return "Universal";
}

if (model === "solaria-1") {
return "Solaria 1";
}

if (model.startsWith("am-")) {
const am = model as AmModel;
if (am == "am-parakeet-v2") {
Expand Down Expand Up @@ -122,6 +126,17 @@ export const PROVIDERS = [
models: ["universal"],
requiresPro: false,
},
{
disabled: false,
id: "gladia",
displayName: "Gladia",
icon: (
<img src="/assets/gladia.jpeg" alt="Gladia" className="size-5 rounded" />
),
baseUrl: "https://api.gladia.io",
models: ["solaria-1"],
requiresPro: false,
},
{
disabled: false,
id: "custom",
Expand Down