Shreyas094's picture
Upload 528 files
372531f verified
raw
history blame
467 Bytes
interface GetHostParams {
purpose?: string;
}
export const getHost = ({ purpose }: GetHostParams = {}): string => {
if (typeof window !== 'undefined') {
let { host } = window.location;
if (purpose === 'langgraph-gui') {
return host.includes('localhost') ? 'http%3A%2F%2F127.0.0.1%3A8123' : `https://${host}`;
} else {
return host.includes('localhost') ? 'http://localhost:8000' : `https://${host}`;
}
}
return '';
};