Update translation.html
Browse files- 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 |
-
|
| 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 |
|