Skip to main content

Your AI-powered pair personal assistant.

Project description

Eli - Your AI-powered Personal Coding Assistant

:warning: - You need a OpenAI auth token to make Eli work. You can find more here OpenAI

:package: - Check out Eli on PyPI (PIP)

Eli is a CLI-based Personal AI assistant that is powered by the GPT-3 / GPT-4 versions supported by MindsDB.

Installation

Make sure you have pip and python >= 3.6 installed on your machine and follow the steps.

1. Setup the package

Option A - Download from PyPI archive
pip install -U eli-pa
Option B - Download from GitHub archive
pip install git+http://github.com/AvaterClasher/eli.git

:warning:: Eli is POSIX-friendly. For it to properly work on Windows please run Eli through a Wsl instance.

2. Set the MINDSDB_EMAIL_ADDRESS environment variable

Once you got the package installed on your system, it's time to add the MINDSDB_EMAIL_ADDRESS environment variable. Create an account on mindsdb.com, train your GPT model and replace your email with <EMAIL> in the following options.

> If you use the default bash shell
echo "export MINDSDB_EMAIL_ADDRESS=<EMAIL>" >> ~/.bashrc
> If you use ZSH
echo "export MINDSDB_EMAIL_ADDRESS=<EMAIL>" >> ~/.zshrc

:bulb:: Read the article for more information about training your MindsDB model.

3. Set your MindsDB account password

Now, it's time to set your account's password. Simply run eli with the --auth option and enter your MindsDB account password.

eli --auth

You're all set to go. :)

Usage

Use eli followed by your question and it'll process the phrase and responses back the content in Markdown.

$ eli where is london located

London is the capital city of the United Kingdom and is located in the southeastern part of England, in the region known as Greater London.
It is situated along the River Thames and is one of the most populous and culturally significant cities in the world.
$ eli tell me a programming joke

Why do programmers prefer iOS development over Android development?
Because on iOS, you only have to deal with one "byte."
$ eli add annotations to this file: $(cat file.py)

To add annotations to the given Python function, you can include comments and
docstrings to provide more information about the function's purpose and usage.
Here's an example:

    def factorial(n):
    """
    Calculate the factorial of a non-negative integer.
    """
    if n < 0:
        raise ValueError("Factorial is not defined for negative numbers")
    return 1 if n == 0 else n * factorial(n - 1)

# Example usage:
number = 5
result = factorial(number)
print(f"The factorial of {number} is {result}")

Tech Stack

License

Eli is being licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

eli-pa-1.0.1.tar.gz (10.6 kB view hashes)

Uploaded Source

Built Distribution

eli_pa-1.0.1-py2.py3-none-any.whl (9.3 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page