Update README.md
Browse files
README.md
CHANGED
|
@@ -22,8 +22,6 @@ const generator = await pipeline('text-generation', 'eduardoworrel/SmolLM2-135M'
|
|
| 22 |
device: 'auto',
|
| 23 |
});
|
| 24 |
|
| 25 |
-
|
| 26 |
-
|
| 27 |
// Generate a response
|
| 28 |
const output = await generator("Qual a captial do Brasil?", { max_new_tokens: 128 });
|
| 29 |
console.log(output[0].generated_text.at(-1).content);
|
|
|
|
| 22 |
device: 'auto',
|
| 23 |
});
|
| 24 |
|
|
|
|
|
|
|
| 25 |
// Generate a response
|
| 26 |
const output = await generator("Qual a captial do Brasil?", { max_new_tokens: 128 });
|
| 27 |
console.log(output[0].generated_text.at(-1).content);
|