Added README.md doc and some images.

This commit is contained in:
Carlos Bazaga
2025-09-05 21:50:31 +02:00
parent 369a2d3f2d
commit 9c301f8bee
9 changed files with 138 additions and 1 deletions

View File

@@ -15,7 +15,7 @@ from .storyteller import narrate, set_description_limit
load_dotenv(override=True)
# Choose draw function.
# Choose draw function. (Choose one from the imported ones up there)
DRAW_FUNCTION = draw_dalle_2
# Define a sample scene description for testing purposes.
@@ -173,6 +173,8 @@ UI_CONFIG = Interface_Config(
input_button='Imprint your will',
input_label='Cognitive Imprint',
input_command='Awaiting neural imprint…',
game_over_field='Game Over',
game_over_label='Disengage Neural Links',
start_scene=START_SCENE)

View File

@@ -15,6 +15,8 @@ class Interface_Config(NamedTuple):
input_button: str
input_label: str
input_command: str
game_over_field: str
game_over_label: str
start_scene: str