Your untrustworthy mate for everyday insights.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
dece 6eccd2974b
plugins: unknown cmd/q now use gpt3 if possible
1 year ago
edmond plugins: unknown cmd/q now use gpt3 if possible 1 year ago
resources plugin: handle resource files in configs 4 years ago
.gitignore youtube_parser: fix reading titles while sleeping 2 years ago
Dockerfile move plugins' requirements file 2 years ago
Pipfile gpt3: add plugin 1 year ago
Pipfile.lock pipfile: update lock file 1 year ago
README.md docker: add Dockerfile with instructions 4 years ago
config.json.example plugins: unknown cmd/q now use gpt3 if possible 1 year ago
pyproject.toml pipfile: integrate plugin deps 1 year ago

README.md

Edm0nd

New version of the infamous IRC bot.

Installation

Clone the repository.

The preferred installation way is using Docker:

# Build image with dependencies.
docker build -t edmond --build-arg UID=1000 --build-arg GID=1000 .
# Run container with config/resources/storage mount.
docker run -d \
    -it \
    -v $(pwd)/config.json:/app/config.json \
    -v $(pwd)/resources:/app/resources \
    -v $(pwd)/storage.json:/app/storage.json \
    edmond \
    -c config.json

Else you can install dependencies and run it in a virtual env:

pipenv install
pipenv run pip install -r edmond/plugins/requirements.txt
pipenv run python -m edmond