From 83c289f43473ff4932af1d062ee5644158ec51a7 Mon Sep 17 00:00:00 2001 From: Samuel Beard Date: Thu, 5 Sep 2024 11:55:14 +0100 Subject: [PATCH] update staging URLs to prod (#73) --- src/AudioInputsService.ts | 2 +- src/api.ts | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/AudioInputsService.ts b/src/AudioInputsService.ts index 2a36b44..270394d 100644 --- a/src/AudioInputsService.ts +++ b/src/AudioInputsService.ts @@ -2,7 +2,7 @@ import { EventEmitter } from "eventemitter3"; import { io, type Socket } from "socket.io-client"; import type { SpeechRecognitionEvent } from "./speech-types.js"; -const STT_URL = "https://stt-staging.charisma.ai"; +const STT_URL = "https://stt.charisma.ai"; type AudioInputsServiceEvents = { result: [SpeechRecognitionEvent]; diff --git a/src/api.ts b/src/api.ts index ff36652..58ad714 100644 --- a/src/api.ts +++ b/src/api.ts @@ -53,8 +53,7 @@ const fetchHelper = async ( return data as T; }; -// ! CHANGE THIS BACK TO https://play.charisma.ai -let globalBaseUrl = "https://play-staging.charisma.ai"; +let globalBaseUrl = "https://play.charisma.ai"; export const getGlobalBaseUrl = (): string => globalBaseUrl;