diff --git a/install.sh b/install.sh index a3514ce..9fff4a3 100755 --- a/install.sh +++ b/install.sh @@ -1,7 +1,7 @@ MODELS_DIRECTORY=generator/gpt2/models MODEL_VERSION=model_v5 MODEL_NAME=model-550 -DOWNLOAD_URL=https://students.cs.byu.edu/~nickwalt +DOWNLOAD_URL=https://aidungeonmodel.s3-us-west-1.amazonaws.com if [ -d "${MODELS_DIRECTORY}/${MODEL_VERSION}" ]; then echo "AIDungeon2 is already installed" diff --git a/play.py b/play.py index b654de3..dfef418 100644 --- a/play.py +++ b/play.py @@ -15,10 +15,9 @@ def select_game(): print_str = str(i) + ") " + setting if setting == "fantasy": print_str += " (recommended)" - else: - print_str += " (experimental)" + console_print(print_str) - console_print(str(len(settings)) + ") custom experimental") + console_print(str(len(settings)) + ") custom") choice = get_num_options(len(settings)+1) if choice == len(settings):