Skip to content

Commit

Permalink
update staging URLs to prod (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelbeard authored Sep 5, 2024
1 parent 3406486 commit 83c289f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/AudioInputsService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down
3 changes: 1 addition & 2 deletions src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ const fetchHelper = async <T>(
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;

Expand Down

0 comments on commit 83c289f

Please sign in to comment.