Spaces:
Running
Running
File size: 518 Bytes
3622997 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | function analyzeResult(resultType) {
let url;
switch(resultType) {
case 'engg':
url = 'https://huggingface.co/spaces/ommane/engg-pdf-to-excel';
break;
case 'hsc':
url = 'https://hsc-pdf-to-excel.streamlit.app/';
break;
case 'diploma':
url = 'https://diploma-pdf-to-excel.streamlit.app/';
break;
default:
alert('Unknown result type');
return;
}
window.open(url, '_blank');
}
|