├── .gitignore ├── LICENSE ├── README.md ├── config.toml ├── demo_prompt.txt ├── imgs ├── add_a_prompt.png ├── appending_token.png ├── backing_up_to_answer.png ├── current_struct.png ├── entropies.png ├── natalia.png ├── navigating_table.png ├── probabilities.png ├── starting_prompt.png ├── struct_active.png ├── struct_complete.png ├── struct_final.png ├── toggle_struct.png ├── workflow1.png ├── workflow2.png └── workflow3.png ├── main.py ├── prompts ├── about.txt └── date_demo.txt ├── pyproject.toml ├── simple_prompt.txt ├── src ├── .cache │ ├── state_token_map_27f9e2691b02faa4fd2065ea2c552e76.pkl │ ├── state_token_map_5380414885d63dd961e6535f1b045780.pkl │ ├── state_token_map_684ecf3a4ef13bc80396e045a63f3efa.pkl │ ├── state_token_map_b679a835c11dec6145cf6fe92b0909bf.pkl │ └── state_token_map_f20b8ac4e8144c064419a5fe50482eb5.pkl ├── __init__.py ├── explorer.py ├── simpleguide.py └── utils.py ├── struct ├── eu_date.txt ├── iso_date.txt ├── month_name.txt ├── name.txt └── us_date.txt ├── tests ├── __init__.py ├── test_explorer.py └── test_simpleguide.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/README.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/config.toml -------------------------------------------------------------------------------- /demo_prompt.txt: -------------------------------------------------------------------------------- 1 | This is a story aobut -------------------------------------------------------------------------------- /imgs/add_a_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/imgs/add_a_prompt.png -------------------------------------------------------------------------------- /imgs/appending_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/imgs/appending_token.png -------------------------------------------------------------------------------- /imgs/backing_up_to_answer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/imgs/backing_up_to_answer.png -------------------------------------------------------------------------------- /imgs/current_struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/imgs/current_struct.png -------------------------------------------------------------------------------- /imgs/entropies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/imgs/entropies.png -------------------------------------------------------------------------------- /imgs/natalia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/imgs/natalia.png -------------------------------------------------------------------------------- /imgs/navigating_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/imgs/navigating_table.png -------------------------------------------------------------------------------- /imgs/probabilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/imgs/probabilities.png -------------------------------------------------------------------------------- /imgs/starting_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/imgs/starting_prompt.png -------------------------------------------------------------------------------- /imgs/struct_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/imgs/struct_active.png -------------------------------------------------------------------------------- /imgs/struct_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/imgs/struct_complete.png -------------------------------------------------------------------------------- /imgs/struct_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/imgs/struct_final.png -------------------------------------------------------------------------------- /imgs/toggle_struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/imgs/toggle_struct.png -------------------------------------------------------------------------------- /imgs/workflow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/imgs/workflow1.png -------------------------------------------------------------------------------- /imgs/workflow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/imgs/workflow2.png -------------------------------------------------------------------------------- /imgs/workflow3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/imgs/workflow3.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/main.py -------------------------------------------------------------------------------- /prompts/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/prompts/about.txt -------------------------------------------------------------------------------- /prompts/date_demo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/prompts/date_demo.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /simple_prompt.txt: -------------------------------------------------------------------------------- 1 | Once upon a time, there was a -------------------------------------------------------------------------------- /src/.cache/state_token_map_27f9e2691b02faa4fd2065ea2c552e76.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/src/.cache/state_token_map_27f9e2691b02faa4fd2065ea2c552e76.pkl -------------------------------------------------------------------------------- /src/.cache/state_token_map_5380414885d63dd961e6535f1b045780.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/src/.cache/state_token_map_5380414885d63dd961e6535f1b045780.pkl -------------------------------------------------------------------------------- /src/.cache/state_token_map_684ecf3a4ef13bc80396e045a63f3efa.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/src/.cache/state_token_map_684ecf3a4ef13bc80396e045a63f3efa.pkl -------------------------------------------------------------------------------- /src/.cache/state_token_map_b679a835c11dec6145cf6fe92b0909bf.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/src/.cache/state_token_map_b679a835c11dec6145cf6fe92b0909bf.pkl -------------------------------------------------------------------------------- /src/.cache/state_token_map_f20b8ac4e8144c064419a5fe50482eb5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/src/.cache/state_token_map_f20b8ac4e8144c064419a5fe50482eb5.pkl -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/src/explorer.py -------------------------------------------------------------------------------- /src/simpleguide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/src/simpleguide.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/src/utils.py -------------------------------------------------------------------------------- /struct/eu_date.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/struct/eu_date.txt -------------------------------------------------------------------------------- /struct/iso_date.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/struct/iso_date.txt -------------------------------------------------------------------------------- /struct/month_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/struct/month_name.txt -------------------------------------------------------------------------------- /struct/name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/struct/name.txt -------------------------------------------------------------------------------- /struct/us_date.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/struct/us_date.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/tests/test_explorer.py -------------------------------------------------------------------------------- /tests/test_simpleguide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/tests/test_simpleguide.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willkurt/token-explorer/HEAD/uv.lock --------------------------------------------------------------------------------