-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,40 @@ | ||
# bpm-ai | ||
# bpm-ai | ||
_AI task automation for BPM engines._ | ||
|
||
See [camunda-8-connector-gpt](https://github.com/holunda-io/camunda-8-connector-gpt) for actual integration with the Camunda Platform 8 BPM engine using custom BPMN elements (Connectors). | ||
|
||
## Installation | ||
Requires Python 3.11. | ||
### Default | ||
```bash | ||
$ pip install bpm-ai | ||
``` | ||
|
||
### For Local Inference | ||
Install PyTorch (remove index url for CUDA GPU support) and spaCy: | ||
```bash | ||
$ pip install torch --index-url https://download.pytorch.org/whl/cpu | ||
$ pip install spacy | ||
``` | ||
|
||
For Apple Silicon: | ||
```bash | ||
$ pip install torch spacy[apple] | ||
``` | ||
|
||
Install bpm-ai with inference extra: | ||
```bash | ||
$ pip install bpm-ai[inference] | ||
``` | ||
|
||
--- | ||
|
||
## License | ||
|
||
This project is developed under | ||
|
||
[![Apache 2.0 License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](/LICENSE) | ||
|
||
## Sponsors and Customers | ||
|
||
[![sponsored](https://img.shields.io/badge/sponsoredBy-Holisticon-red.svg)](https://holisticon.de/) |