File size: 760 Bytes
c4480fd d388d3b 3dbd65d c4480fd d388d3b c4480fd ab73051 c4480fd d388d3b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
---
title: Webapp Factory (any model)
emoji: 🏭
colorFrom: brown
colorTo: red
sdk: docker
pinned: false
app_port: 7860
---
A basic demo of generating HTML content using the Hugging Face Inference API
This version can use any model from the Hugging Face Inference API.
Ready to be used in a Hugging Face Space.
# Examples
```
http://localhost:7860/?prompt=A%20simple%20page%20to%20compute%20the%20BMI%20(use%20SI%20units)
```
# Installation
## Building and run without Docker
```bash
nvm use
npm i
npm run start
```
## Building and running with Docker
```bash
npm run docker
```
This script is a shortcut executing the following commands:
```bash
docker build -t webapp-factory-any-model .
docker run -it -p 7860:7860 webapp-factory-any-model
```
|