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
2 changes: 1 addition & 1 deletion src/shared/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
removeApiKey as removeStoredApiKey,
hasApiKey
} from './auth.js';
export const LOCATIONS = ["us", "global", "eu-residency", "in-residency"] as const;
export const LOCATIONS = ["us", "global", "eu-residency", "in-residency", "sg-residency"] as const;
export type Location = (typeof LOCATIONS)[number];

export interface CliConfig {
Expand Down
2 changes: 2 additions & 0 deletions src/shared/elevenlabs-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ export function getApiBaseUrl(residency?: Location): string {
return 'https://api.eu.residency.elevenlabs.io';
case 'in-residency':
return 'https://api.in.residency.elevenlabs.io';
case 'sg-residency':
return 'https://api.sg.residency.elevenlabs.io';
case 'us':
return 'https://api.us.elevenlabs.io';
case 'global':
Expand Down
Loading