An open API service indexing awesome lists of open source software.

https://github.com/replicate/clipdraw-interactive

An interactive and API powered CLIPDraw
https://github.com/replicate/clipdraw-interactive

Last synced: 9 months ago
JSON representation

An interactive and API powered CLIPDraw

Awesome Lists containing this project

README

          

# Interactive CLIPDraw

![logo](clipdraw-interactive-sea-monster.png)

Interactive version of [CLIPDraw](https://replicate.com/kvfrans/clipdraw), running on https://interactive-clip-draw.vercel.app/

## Install dependencies

### venv

```sh
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
```

### conda

```sh
conda create -n clipdraw
conda activate clipdraw
pip install -r requirements.txt
```

## Run locally

```sh
export REPLICATE_API_TOKEN=
python app.py
```

Open https://localhost:5000.

## Deploy

Interactive CLIPDraw is deployed on [Vercel](https://vercel.com).

To deploy your own version:
* Create an account on Vercel
* Install the [Vercel CLI](https://vercel.com/docs/cli)
* `vercel login`
* `vercel --prod`