File size: 372 Bytes
ebcc4b8
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13

interface Settings {
	inferenceServerUrl: string;
	transportServerUrl: string;
}

export const settings: Settings = $state({
	// inferenceServerUrl: 'http://localhost:8001',
	// transportServerUrl: 'http://localhost:8000'
	inferenceServerUrl: 'https://blanchon-robotinferenceserver.hf.space',
	transportServerUrl: 'https://blanchon-robottransportserver.hf.space/api'
});