Spaces:
Running
Running
Julien Chaumond
commited on
Commit
·
8f5120e
1
Parent(s):
6caf4d4
Switch endpoint
Browse files- index.html +8 -1
- js-src/zController.ts +1 -1
index.html
CHANGED
@@ -54,7 +54,14 @@
|
|
54 |
})();
|
55 |
</script>
|
56 |
<script>
|
57 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
</script>
|
59 |
</body>
|
60 |
</html>
|
|
|
54 |
})();
|
55 |
</script>
|
56 |
<script>
|
57 |
+
if (window.location.hostname !== 'localhost') {
|
58 |
+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
59 |
+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
60 |
+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
61 |
+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
62 |
+
ga('create', 'UA-83738774-2', 'auto');
|
63 |
+
ga('send', 'pageview');
|
64 |
+
}
|
65 |
</script>
|
66 |
</body>
|
67 |
</html>
|
js-src/zController.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
|
2 |
-
const ENDPOINT = "
|
3 |
const DEFAULT_NLP_TEXT = `'Lawrence of Arabia' is a highly rated film biography about British Lieutenant T. E. Lawrence. Peter O'Toole plays Lawrence in the film.`;
|
4 |
|
5 |
const loading = () => {
|
|
|
1 |
|
2 |
+
const ENDPOINT = "https://coref.huggingface.co/coref";
|
3 |
const DEFAULT_NLP_TEXT = `'Lawrence of Arabia' is a highly rated film biography about British Lieutenant T. E. Lawrence. Peter O'Toole plays Lawrence in the film.`;
|
4 |
|
5 |
const loading = () => {
|