boazchung commited on
Commit
8c5d8aa
1 Parent(s): a9d79f0

Update translation.html

Browse files
Files changed (1) hide show
  1. translation.html +3 -3
translation.html CHANGED
@@ -77,9 +77,9 @@
77
 
78
  let result = await hf.translation({
79
  model: 't5-base',
80
- inputs: textFieldValue,
81
- document.getElementById("outputArea2").innerText = JSON.stringify(result, null, 2);
82
- });
83
  }
84
 
85
 
 
77
 
78
  let result = await hf.translation({
79
  model: 't5-base',
80
+ inputs: textFieldValue,
81
+ });
82
+ document.getElementById("outputArea2").innerText = JSON.stringify(result, null, 2);
83
  }
84
 
85