File size: 984 Bytes
d17f519 |
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 46 47 48 49 50 51 52 53 54 |
---
license: mit
language:
- en
---
# Deeplogix AI RPC
Deeplogix AI RPC is a Python module for seamlessly running remote private AI models from your Python code as if these models were installed locally.
## Installation
Use the package manager [pip](https://pip.pypa.io/en/stable/) for install.
Development version from TestPyPi:
```bash
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple deeplogix
```
Production version from PyPi:
```bash
pip install deeplogix
```
## Usage
For module built-in demos:
```bash
python -m deeplogix --demo
```
Or for your A.I. script:
```bash
python -m deeplogix ./path/to/your/script.py
```
Or just:
```bash
python -m deeplogix
```
And it will print usage options.
When you run Deeplogix module first time - it will ask you hostId and token, which could be obtained at [Deeplogix](https://www.deeplogix.io/) site after sign up.
## License
[MIT](https://choosealicense.com/licenses/mit/)
|