diff --git a/main.py b/main.py
index bc89509..2646317 100644
--- a/main.py
+++ b/main.py
@@ -39,10 +39,16 @@ requested_map = {}
@app.route('/')
def root():
- # For the sake of example, use static information to inflate the template.
- # This will be replaced with real information in later steps.
return render_template('index.html')
+@app.route('/index.html')
+def index():
+ return render_template('index.html')
+
+@app.route('/about.html')
+def about():
+ return render_template('about.html')
+
def cache_file(seed, prompt_num, choices, response, tag):
diff --git a/static/script.js b/static/script.js
index c186760..d5ad0e1 100644
--- a/static/script.js
+++ b/static/script.js
@@ -2,11 +2,14 @@ var prompts = ["You enter a dungeon with your trusty sword and shield. You are s
start_text = "Adventurer@AIDungeon:~$ ./EnterDungeon \n "
+input_form = '
+
+ AIDungeon is an AI generated text adventure that uses deep learning to create each adventure. It uses OpenAI's new GPT-2 model, which has 117 million parameters, to generate each story block and possible action.
+
+
The first couple sentences of AIDungeon and the action verbs are handcrafted, but everything else is not. Each time an option is chosen, the initial prompt, the last story block, and the last action are fed into the neural network. The resulting story and action options are then output by the model.
+
+
As you can probably tell there's still a ways to go before AI will be your group's dungeon master, but even after running hundreds of adventures it still manages to surprise me in interesting ways.
+
+
+
If you want to get in touch with me you can email me at nickwalton00@gmail.com.
+
+
I hope you enjoy exploring the strange dreams of AIDungeon.
+
+
+