|
--- |
|
pipeline_tag: text2text-generation |
|
library_name: transformers.js |
|
license: mit |
|
tags: |
|
- flare |
|
- chatbot |
|
- transformers |
|
|
|
--- |
|
|
|
# FlareNew — Chatbot Model |
|
|
|
This model is designed for interactive conversational tasks using text2text generation. |
|
|
|
## Example |
|
|
|
You can use this model with the Hugging Face Inference API or directly with `transformers.js` from a frontend. |
|
|
|
```js |
|
const generator = await pipeline("text2text-generation", "HaveAI/FlareNew"); |
|
const response = await generator("translate English to Russian: Hello, how are you?"); |
|
console.log(response[0].generated_text); |
|
``` |
|
|
|
## Intended Use |
|
|
|
- Chatbots |
|
- Conversational AI |
|
- Creative writing assistance |
|
- HTML/JavaScript-based AI assistants (via `transformers.js`) |
|
|
|
## License |
|
|
|
MIT |
|
|