https://github.com/5eroo/DeepAI-Wrapper
A reverse-engineering API class that helps you chat with the DeepAI AI for free in Python
https://github.com/5eroo/DeepAI-Wrapper
deepai llm py python reverse-engineering wrapper
Last synced: 11 months ago
JSON representation
A reverse-engineering API class that helps you chat with the DeepAI AI for free in Python
- Host: GitHub
- URL: https://github.com/5eroo/DeepAI-Wrapper
- Owner: 5eroo
- License: gpl-3.0
- Created: 2024-09-07T19:30:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-08T07:45:43.000Z (over 1 year ago)
- Last Synced: 2025-03-26T16:53:02.134Z (about 1 year ago)
- Topics: deepai, llm, py, python, reverse-engineering, wrapper
- Language: Python
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# DeepAI-Wrapper
A reverse-engineering API class that helps you chat with the DeepAI AI for free in Python
## Installation
1. Clone the repository
`git clone https://github.com/itszerrin/DeepAI-Wrapper.git`
2. Set work directory to the unpacked directory
`cd DeepAI-Wrapper`
3. Install requirements
`pip install -r requirements.txt`
## Usage
**Note: There is an example file which shows exactly how to run the API. Remember you need to always include this code snippet in your main.py, at the top**
```py
import sys
import os
sys.path.append(os.path.join(os.path.dirname(__file__), 'assets', 'src'))
```
Additionally, you can read the well-commented Main.py for instructions or help.
Post release info: Using single quotes in your messages will **most likely not work** since I replace them with double quotes (I have to) and that breaks their little servers.