RobotHub-Frontend / src /lib /runes /settings.svelte.ts
blanchon's picture
Update
080a12d
raw
history blame
384 Bytes
interface Settings {
inferenceServerUrl: string;
transportServerUrl: string;
}
export const settings: Settings = $state({
// inferenceServerUrl: 'http://localhost:8001',
// transportServerUrl: 'http://localhost:8000'
inferenceServerUrl: 'https://blanchon-robothub-inferenceserver.hf.space/api',
transportServerUrl: 'https://blanchon-robothub-transportserver.hf.space/api'
});