This is basically a cli client to play.aidungeon.io.
This allows playing AI Dungeon 2 inside a terminal.
I primarily did this to play the game on a DEC VT320 hardware terminal for a more faithful experience.
For more context, read the accompanying blog post.
For now, not on PyPI.
After cloning the repo:
$ python3 -m pip install .
Package is on AUR.
$ git clone https://aur.archlinux.org/ai-dungeon-cli-git.git
$ cd ai-dungeon-cli-git
$ makepkg -si
In either way, you first need to create a configuration file.
If installed with pip:
$ ai-dungeon-cli
Or from source:
$ cd ai-dungeon-cli
$ python3 -m pip install -r requirements.txt
$ ./ai_dungeon_cli/__init__.py
Please note that it is recommended to do it in a virtual env in order to not mess up with the main Python env on your system.
Create a file config.yml
either:
- in the same folder in your home folder:
$HOME/.config/ai-dungeon-cli/config.yml
- in as the sources:
./ai-dungeon-cli/ai_dungeon_cli/config.yml
ai-dungeon-cli supports 2 ways to configure user authentication.
Either precise a couple of credentials in conf:
email: '<MY-USER-EMAIL>'
password: '<MY-USER-PASSWORD>'
Or sniff a Authentication Token and use it directly:
auth_token: '<MY-AUTH-TOKEN>'
To get this token, you need to first login in a web browser to play.aidungeon.io.
Then you can find the token either in your browser localStorage or in X-Auth-Token
Request Header of the POST inputs requests made while playing.
Either way, developer tools (F12
) is your friend.
The default user prompt is '> '
.
You can customize it with e.g. :
prompt: 'me: '
Please have a look at requirements.txt.
Right now, the code is over-optimistic: we don't catch cleanly when the backend is down.
A better user experience could be achieved with the use of the curses library.
For now, only the /quit
and remember
actions are supported. I need to enable the others (/revert
, /alter
...).
It would also be nice to add support for browsing other players' stories (Explore menu).
We fallback to a pure ASCII version of the splash logo if we detect an incompatible locale / terminal type.
As you might have heard, hosting AI Dungeon costs a lot of money.
This cli client relies on the same infrastructure as the online version (play.aidungeon.io).
So don't hesitate to help support the hosting fees to keep the game up and running.
Major contributions:
- Idan Gur @idangur: OOP rewrite of game logic
- Alberto Oporto Ames @otreblan: packaging, submission to AUR
Minor contributions: