Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,28 @@ curl --location 'http://localhost:3000/v1/chat/completions' --header 'Content-Ty
],
"stream": true
}'

```
### Uninstalling Parallax

For macOS or Linux, if you've installed Parallax via pip and want to uninstall it, you can use the following command:

```sh
pip uninstall parallax
```

For Docker installations, remove Parallax images and containers using standard Docker commands:

```sh
docker ps -a # List running containers
docker stop <container_id> # Stop running containers
docker rm <container_id> # Remove stopped containers
docker images # List Docker images
docker rmi <image_id> # Remove Parallax images
```

For Windows, simply go to Control Panel β†’ Programs β†’ Uninstall a program, find "Gradient" in the list, and uninstall it.

## Supported Models

| | Provider | HuggingFace Collection | Blog | Description |
Expand Down