Skip to content

Commit 96880e8

Browse files
committed
add model being used to the App.vue
1 parent 06a9517 commit 96880e8

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

vue/src/App.vue

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,12 @@ const summarize = () => {
7777
<div class="app">
7878
<h1>Transformers.js</h1>
7979
<h2>ML-powered text summarization in Vue!</h2>
80+
<h3>
81+
Using
82+
<a href="https://huggingface.co/Xenova/distilbart-cnn-6-6" target="_blank" class="model-link"
83+
>Xenova/distilbart-cnn-6-6</a
84+
>
85+
</h3>
8086
8187
<div class="container">
8288
<div class="textbox-container">
@@ -186,4 +192,14 @@ button:disabled {
186192
margin-left: auto;
187193
margin-right: auto;
188194
}
195+
196+
.model-link {
197+
color: #2196f3;
198+
text-decoration: none;
199+
font-weight: 500;
200+
}
201+
202+
.model-link:hover {
203+
text-decoration: underline;
204+
}
189205
</style>

0 commit comments

Comments
 (0)