├── .gitattributes ├── .github └── workflows │ └── release.yaml ├── .gitignore ├── .goreleaser.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── 905_3_5_sonnet.md ├── 905_benchmark.md ├── 905_claude_opus_full.md ├── 905_gpt4_call_police.md ├── 905_gpt4_full.md ├── 905_llama3_70b_full.md ├── 905_quit.md ├── plot.gp ├── price.data ├── prices.png ├── shade_benchmark.md ├── suveh_nux_benchmark.md └── violet_benchmark.md ├── docker-compose.yaml ├── extract ├── extract.go ├── progress.go ├── progress │ ├── 905_plotlines.gp │ ├── 905_progress.dat │ ├── 905_progress.png │ ├── ChildsPlay_plotlines.gp │ ├── ChildsPlay_progress.dat │ ├── hhgg_plotlines.gp │ ├── hhgg_progress.dat │ ├── hhgg_progress.png │ ├── plot.gp │ ├── progress.png │ ├── shade_plotlines.gp │ ├── shade_progress.dat │ ├── shade_progress.png │ ├── suvehnux_plotlines.gp │ ├── suvehnux_progress.dat │ ├── suvehnux_progress.png │ ├── violet_plotlines.gp │ ├── violet_progress.dat │ └── violet_progress.png ├── run.sh ├── sort.go └── story.go ├── games ├── 905.z5 ├── Advent.z5 ├── Adventureland.z5 ├── ChildsPlay.z8 ├── hhgg.z3 ├── shade.z5 ├── suvehnux.z5 └── violet.z8 ├── go.mod ├── go.sum ├── links.md ├── main.go ├── requests ├── grok.http └── responses.http ├── run.sh ├── src ├── chat │ ├── backend │ │ ├── anthropic.go │ │ ├── chatBackend.go │ │ ├── chatHistory.go │ │ ├── deepinfra.go │ │ ├── gemini.go │ │ ├── groq.go │ │ ├── hyperbolic.go │ │ ├── llama.go │ │ ├── mistral.go │ │ ├── ollama.go │ │ ├── openai.go │ │ ├── openrouter.go │ │ ├── together.go │ │ └── xai.go │ ├── chat.go │ ├── promptPattern │ │ ├── discussion.go │ │ ├── history_augmented_reAct.go │ │ ├── promptState.go │ │ ├── react.go │ │ └── simple.go │ ├── score.go │ └── storyHistory │ │ ├── loadStore.go │ │ └── storyHistory.go ├── config.go ├── init.go ├── main.go ├── mcp.go ├── walkthrough.go └── zmachine │ ├── debug.go │ ├── dynamic.go │ ├── hocks.go │ ├── interpret.go │ ├── io.go │ ├── objects.go │ ├── opcodes.go │ ├── ram.go │ ├── stream.go │ ├── zbranch.go │ ├── zcall.go │ ├── zheader.go │ ├── zmachine.go │ ├── zstack.go │ ├── zstring.go │ └── zvariable.go └── storydump ├── .do_not_remove ├── 905.z5_2024-07-22_18-44-09.json ├── 905.z5_2024-07-22_18-46-58.json ├── 905.z5_2024-07-22_18-53-39.json ├── 905.z5_2024-07-22_20-33-34.json ├── 905.z5_2024-07-22_20-36-13.json ├── 905.z5_2024-07-22_20-37-39.json ├── 905.z5_2024-07-22_20-39-47.json ├── 905.z5_2024-07-22_20-45-41.json ├── 905.z5_2024-07-22_20-48-03.json ├── 905.z5_2024-07-22_20-52-10.json ├── 905.z5_2024-07-22_21-00-48.json ├── 905.z5_2024-07-22_21-15-13.json ├── 905.z5_2024-07-22_21-18-12.json ├── 905.z5_2024-07-22_21-31-14.json ├── 905.z5_2024-07-22_21-34-18.json ├── 905.z5_2024-07-23_09-32-24.json ├── 905.z5_2024-07-23_09-36-48.json ├── 905.z5_2024-07-24_10-54-03.json ├── 905.z5_2024-07-24_18-21-26.json ├── 905.z5_2024-07-24_18-28-12.json ├── 905.z5_2024-07-24_18-30-40.json ├── 905.z5_2024-07-24_18-38-22.json ├── 905.z5_2024-07-24_18-46-13.json ├── 905.z5_2024-07-24_21-21-43.json ├── 905.z5_2024-07-24_23-16-15.json ├── 905.z5_2024-07-24_23-17-07.json ├── 905.z5_2024-07-24_23-18-10.json ├── 905.z5_2024-07-24_23-41-03.json ├── 905.z5_2024-07-24_23-42-36.json ├── 905.z5_2024-07-25_07-49-28.json ├── 905.z5_2024-07-25_07-57-56.json ├── 905.z5_2024-07-25_08-03-39.json ├── 905.z5_2024-07-25_08-07-37.json ├── 905.z5_2024-07-27_11-06-59.json ├── 905.z5_2024-07-27_17-37-57.json ├── 905.z5_2024-07-27_17-40-21.json ├── 905.z5_2024-07-27_17-47-12.json ├── ChildsPlay.z8_2024-07-26_20-19-33.json ├── ChildsPlay.z8_2024-07-26_20-24-35.json ├── shade.z5_2024-07-26_10-10-06.json ├── shade.z5_2024-07-26_10-12-18.json ├── shade.z5_2024-07-26_10-16-47.json ├── shade.z5_2024-07-26_10-23-18.json ├── shade.z5_2024-07-26_10-28-10.json ├── shade.z5_2024-07-26_10-29-16.json ├── shade.z5_2024-07-26_10-30-32.json ├── shade.z5_2024-07-26_10-31-44.json ├── shade.z5_2024-07-26_10-32-53.json ├── shade.z5_2024-07-26_10-33-44.json ├── shade.z5_2024-07-26_10-35-38.json ├── shade.z5_2024-07-26_10-37-48.json ├── shade.z5_2024-07-26_10-46-37.json ├── shade.z5_2024-07-27_11-10-26.json ├── shade.z5_2024-07-27_11-23-03.json ├── shade.z5_2024-07-27_11-24-42.json ├── shade.z5_2024-07-27_11-45-00.json ├── shade.z5_2024-07-27_11-46-29.json ├── shade.z5_2024-07-27_11-53-01.json ├── shade.z5_2024-07-27_15-58-04.json ├── shade.z5_2024-07-27_16-34-53.json ├── shade.z5_2024-07-27_16-59-03.json ├── shade.z5_2024-07-27_17-30-38.json ├── shade.z5_2024-07-27_17-32-08.json ├── shade.z5_2024-07-27_17-35-37.json ├── shade.z5_2024-07-27_17-43-17.json ├── shade.z5_2024-07-27_17-45-04.json ├── shade.z5_2024-07-27_17-47-43.json ├── shade.z5_2024-07-27_17-49-33.json ├── suvehnux.z5_2024-06-28_20-46-47.json ├── suvehnux.z5_2024-06-28_21-41-09.json ├── suvehnux.z5_2024-06-28_22-12-37.json ├── suvehnux.z5_2024-06-28_22-21-39.json ├── suvehnux.z5_2024-06-28_22-31-12.json ├── suvehnux.z5_2024-06-28_23-21-06.json ├── suvehnux.z5_2024-06-28_23-28-23.json ├── suvehnux.z5_2024-06-28_23-47-17.json ├── suvehnux.z5_2024-06-28_23-52-56.json ├── suvehnux.z5_2024-06-29_09-07-42.json ├── suvehnux.z5_2024-06-29_09-40-29.json ├── suvehnux.z5_2024-07-11_17-07-24.json ├── suvehnux.z5_2024-07-11_17-14-57.json ├── suvehnux.z5_2024-07-18_19-25-24.json ├── suvehnux.z5_2024-07-18_19-50-19.json ├── suvehnux.z5_2024-07-18_19-55-58.json ├── suvehnux.z5_2024-07-23_07-35-47.json ├── suvehnux.z5_2024-07-23_07-39-22.json ├── suvehnux.z5_2024-07-23_07-45-16.json ├── suvehnux.z5_2024-07-24_23-04-51.json ├── suvehnux.z5_2024-07-25_08-25-16.json ├── suvehnux.z5_2024-07-25_08-27-09.json ├── suvehnux.z5_2024-07-25_08-29-36.json ├── suvehnux.z5_2024-07-25_08-33-07.json ├── suvehnux.z5_2024-07-25_08-35-52.json ├── suvehnux.z5_2024-07-27_17-48-56.json ├── violet.z8_2024-07-26_19-19-58.json ├── violet.z8_2024-07-27_07-34-33.json ├── violet.z8_2024-07-27_09-03-19.json ├── violet.z8_2024-07-27_09-05-09.json ├── violet.z8_2024-07-27_09-08-25.json ├── violet.z8_2024-07-27_09-30-55.json ├── violet.z8_2024-07-27_09-59-37.json ├── violet.z8_2024-07-27_10-07-08.json ├── violet.z8_2024-07-27_10-09-23.json ├── violet.z8_2024-07-27_10-11-56.json ├── violet.z8_2024-07-27_10-12-53.json ├── violet.z8_2024-07-27_10-14-01.json ├── violet.z8_2024-07-27_10-14-31.json ├── violet.z8_2024-07-27_10-15-09.json ├── violet.z8_2024-07-27_10-17-42.json ├── violet.z8_2024-07-27_10-20-30.json ├── violet.z8_2024-07-27_10-25-04.json ├── violet.z8_2024-07-27_10-25-26.json ├── violet.z8_2024-07-27_10-27-14.json ├── violet.z8_2024-07-27_10-35-42.json ├── violet.z8_2024-07-27_11-03-42.json ├── violet.z8_2024-07-27_11-20-01.json ├── violet.z8_2024-07-27_17-37-28.json ├── violet.z8_2024-07-27_17-39-21.json └── violet.z8_2024-07-27_17-41-47.json /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/README.md -------------------------------------------------------------------------------- /assets/905_3_5_sonnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/assets/905_3_5_sonnet.md -------------------------------------------------------------------------------- /assets/905_benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/assets/905_benchmark.md -------------------------------------------------------------------------------- /assets/905_claude_opus_full.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/assets/905_claude_opus_full.md -------------------------------------------------------------------------------- /assets/905_gpt4_call_police.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/assets/905_gpt4_call_police.md -------------------------------------------------------------------------------- /assets/905_gpt4_full.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/assets/905_gpt4_full.md -------------------------------------------------------------------------------- /assets/905_llama3_70b_full.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/assets/905_llama3_70b_full.md -------------------------------------------------------------------------------- /assets/905_quit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/assets/905_quit.md -------------------------------------------------------------------------------- /assets/plot.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/assets/plot.gp -------------------------------------------------------------------------------- /assets/price.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/assets/price.data -------------------------------------------------------------------------------- /assets/prices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/assets/prices.png -------------------------------------------------------------------------------- /assets/shade_benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/assets/shade_benchmark.md -------------------------------------------------------------------------------- /assets/suveh_nux_benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/assets/suveh_nux_benchmark.md -------------------------------------------------------------------------------- /assets/violet_benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/assets/violet_benchmark.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /extract/extract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/extract.go -------------------------------------------------------------------------------- /extract/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress.go -------------------------------------------------------------------------------- /extract/progress/905_plotlines.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/905_plotlines.gp -------------------------------------------------------------------------------- /extract/progress/905_progress.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/905_progress.dat -------------------------------------------------------------------------------- /extract/progress/905_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/905_progress.png -------------------------------------------------------------------------------- /extract/progress/ChildsPlay_plotlines.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/ChildsPlay_plotlines.gp -------------------------------------------------------------------------------- /extract/progress/ChildsPlay_progress.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/ChildsPlay_progress.dat -------------------------------------------------------------------------------- /extract/progress/hhgg_plotlines.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/hhgg_plotlines.gp -------------------------------------------------------------------------------- /extract/progress/hhgg_progress.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/hhgg_progress.dat -------------------------------------------------------------------------------- /extract/progress/hhgg_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/hhgg_progress.png -------------------------------------------------------------------------------- /extract/progress/plot.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/plot.gp -------------------------------------------------------------------------------- /extract/progress/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/progress.png -------------------------------------------------------------------------------- /extract/progress/shade_plotlines.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/shade_plotlines.gp -------------------------------------------------------------------------------- /extract/progress/shade_progress.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/shade_progress.dat -------------------------------------------------------------------------------- /extract/progress/shade_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/shade_progress.png -------------------------------------------------------------------------------- /extract/progress/suvehnux_plotlines.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/suvehnux_plotlines.gp -------------------------------------------------------------------------------- /extract/progress/suvehnux_progress.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/suvehnux_progress.dat -------------------------------------------------------------------------------- /extract/progress/suvehnux_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/suvehnux_progress.png -------------------------------------------------------------------------------- /extract/progress/violet_plotlines.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/violet_plotlines.gp -------------------------------------------------------------------------------- /extract/progress/violet_progress.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/violet_progress.dat -------------------------------------------------------------------------------- /extract/progress/violet_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/progress/violet_progress.png -------------------------------------------------------------------------------- /extract/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/run.sh -------------------------------------------------------------------------------- /extract/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/sort.go -------------------------------------------------------------------------------- /extract/story.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/extract/story.go -------------------------------------------------------------------------------- /games/905.z5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/games/905.z5 -------------------------------------------------------------------------------- /games/Advent.z5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/games/Advent.z5 -------------------------------------------------------------------------------- /games/Adventureland.z5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/games/Adventureland.z5 -------------------------------------------------------------------------------- /games/ChildsPlay.z8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/games/ChildsPlay.z8 -------------------------------------------------------------------------------- /games/hhgg.z3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/games/hhgg.z3 -------------------------------------------------------------------------------- /games/shade.z5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/games/shade.z5 -------------------------------------------------------------------------------- /games/suvehnux.z5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/games/suvehnux.z5 -------------------------------------------------------------------------------- /games/violet.z8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/games/violet.z8 -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/go.sum -------------------------------------------------------------------------------- /links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/links.md -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/main.go -------------------------------------------------------------------------------- /requests/grok.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/requests/grok.http -------------------------------------------------------------------------------- /requests/responses.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/requests/responses.http -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/run.sh -------------------------------------------------------------------------------- /src/chat/backend/anthropic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/backend/anthropic.go -------------------------------------------------------------------------------- /src/chat/backend/chatBackend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/backend/chatBackend.go -------------------------------------------------------------------------------- /src/chat/backend/chatHistory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/backend/chatHistory.go -------------------------------------------------------------------------------- /src/chat/backend/deepinfra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/backend/deepinfra.go -------------------------------------------------------------------------------- /src/chat/backend/gemini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/backend/gemini.go -------------------------------------------------------------------------------- /src/chat/backend/groq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/backend/groq.go -------------------------------------------------------------------------------- /src/chat/backend/hyperbolic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/backend/hyperbolic.go -------------------------------------------------------------------------------- /src/chat/backend/llama.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/backend/llama.go -------------------------------------------------------------------------------- /src/chat/backend/mistral.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/backend/mistral.go -------------------------------------------------------------------------------- /src/chat/backend/ollama.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/backend/ollama.go -------------------------------------------------------------------------------- /src/chat/backend/openai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/backend/openai.go -------------------------------------------------------------------------------- /src/chat/backend/openrouter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/backend/openrouter.go -------------------------------------------------------------------------------- /src/chat/backend/together.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/backend/together.go -------------------------------------------------------------------------------- /src/chat/backend/xai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/backend/xai.go -------------------------------------------------------------------------------- /src/chat/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/chat.go -------------------------------------------------------------------------------- /src/chat/promptPattern/discussion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/promptPattern/discussion.go -------------------------------------------------------------------------------- /src/chat/promptPattern/history_augmented_reAct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/promptPattern/history_augmented_reAct.go -------------------------------------------------------------------------------- /src/chat/promptPattern/promptState.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/promptPattern/promptState.go -------------------------------------------------------------------------------- /src/chat/promptPattern/react.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/promptPattern/react.go -------------------------------------------------------------------------------- /src/chat/promptPattern/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/promptPattern/simple.go -------------------------------------------------------------------------------- /src/chat/score.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/score.go -------------------------------------------------------------------------------- /src/chat/storyHistory/loadStore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/storyHistory/loadStore.go -------------------------------------------------------------------------------- /src/chat/storyHistory/storyHistory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/chat/storyHistory/storyHistory.go -------------------------------------------------------------------------------- /src/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/config.go -------------------------------------------------------------------------------- /src/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/init.go -------------------------------------------------------------------------------- /src/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/main.go -------------------------------------------------------------------------------- /src/mcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/mcp.go -------------------------------------------------------------------------------- /src/walkthrough.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/walkthrough.go -------------------------------------------------------------------------------- /src/zmachine/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/zmachine/debug.go -------------------------------------------------------------------------------- /src/zmachine/dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/zmachine/dynamic.go -------------------------------------------------------------------------------- /src/zmachine/hocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/zmachine/hocks.go -------------------------------------------------------------------------------- /src/zmachine/interpret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/zmachine/interpret.go -------------------------------------------------------------------------------- /src/zmachine/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/zmachine/io.go -------------------------------------------------------------------------------- /src/zmachine/objects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/zmachine/objects.go -------------------------------------------------------------------------------- /src/zmachine/opcodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/zmachine/opcodes.go -------------------------------------------------------------------------------- /src/zmachine/ram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/zmachine/ram.go -------------------------------------------------------------------------------- /src/zmachine/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/zmachine/stream.go -------------------------------------------------------------------------------- /src/zmachine/zbranch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/zmachine/zbranch.go -------------------------------------------------------------------------------- /src/zmachine/zcall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/zmachine/zcall.go -------------------------------------------------------------------------------- /src/zmachine/zheader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/zmachine/zheader.go -------------------------------------------------------------------------------- /src/zmachine/zmachine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/zmachine/zmachine.go -------------------------------------------------------------------------------- /src/zmachine/zstack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/zmachine/zstack.go -------------------------------------------------------------------------------- /src/zmachine/zstring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/zmachine/zstring.go -------------------------------------------------------------------------------- /src/zmachine/zvariable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/src/zmachine/zvariable.go -------------------------------------------------------------------------------- /storydump/.do_not_remove: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-22_18-44-09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-22_18-44-09.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-22_18-46-58.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-22_18-46-58.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-22_18-53-39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-22_18-53-39.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-22_20-33-34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-22_20-33-34.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-22_20-36-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-22_20-36-13.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-22_20-37-39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-22_20-37-39.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-22_20-39-47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-22_20-39-47.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-22_20-45-41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-22_20-45-41.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-22_20-48-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-22_20-48-03.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-22_20-52-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-22_20-52-10.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-22_21-00-48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-22_21-00-48.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-22_21-15-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-22_21-15-13.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-22_21-18-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-22_21-18-12.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-22_21-31-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-22_21-31-14.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-22_21-34-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-22_21-34-18.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-23_09-32-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-23_09-32-24.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-23_09-36-48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-23_09-36-48.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-24_10-54-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-24_10-54-03.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-24_18-21-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-24_18-21-26.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-24_18-28-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-24_18-28-12.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-24_18-30-40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-24_18-30-40.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-24_18-38-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-24_18-38-22.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-24_18-46-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-24_18-46-13.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-24_21-21-43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-24_21-21-43.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-24_23-16-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-24_23-16-15.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-24_23-17-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-24_23-17-07.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-24_23-18-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-24_23-18-10.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-24_23-41-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-24_23-41-03.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-24_23-42-36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-24_23-42-36.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-25_07-49-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-25_07-49-28.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-25_07-57-56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-25_07-57-56.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-25_08-03-39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-25_08-03-39.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-25_08-07-37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-25_08-07-37.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-27_11-06-59.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-27_11-06-59.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-27_17-37-57.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-27_17-37-57.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-27_17-40-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-27_17-40-21.json -------------------------------------------------------------------------------- /storydump/905.z5_2024-07-27_17-47-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/905.z5_2024-07-27_17-47-12.json -------------------------------------------------------------------------------- /storydump/ChildsPlay.z8_2024-07-26_20-19-33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/ChildsPlay.z8_2024-07-26_20-19-33.json -------------------------------------------------------------------------------- /storydump/ChildsPlay.z8_2024-07-26_20-24-35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/ChildsPlay.z8_2024-07-26_20-24-35.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-26_10-10-06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-26_10-10-06.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-26_10-12-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-26_10-12-18.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-26_10-16-47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-26_10-16-47.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-26_10-23-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-26_10-23-18.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-26_10-28-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-26_10-28-10.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-26_10-29-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-26_10-29-16.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-26_10-30-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-26_10-30-32.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-26_10-31-44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-26_10-31-44.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-26_10-32-53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-26_10-32-53.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-26_10-33-44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-26_10-33-44.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-26_10-35-38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-26_10-35-38.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-26_10-37-48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-26_10-37-48.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-26_10-46-37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-26_10-46-37.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-27_11-10-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-27_11-10-26.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-27_11-23-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-27_11-23-03.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-27_11-24-42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-27_11-24-42.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-27_11-45-00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-27_11-45-00.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-27_11-46-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-27_11-46-29.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-27_11-53-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-27_11-53-01.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-27_15-58-04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-27_15-58-04.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-27_16-34-53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-27_16-34-53.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-27_16-59-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-27_16-59-03.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-27_17-30-38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-27_17-30-38.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-27_17-32-08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-27_17-32-08.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-27_17-35-37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-27_17-35-37.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-27_17-43-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-27_17-43-17.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-27_17-45-04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-27_17-45-04.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-27_17-47-43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-27_17-47-43.json -------------------------------------------------------------------------------- /storydump/shade.z5_2024-07-27_17-49-33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/shade.z5_2024-07-27_17-49-33.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-06-28_20-46-47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-06-28_20-46-47.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-06-28_21-41-09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-06-28_21-41-09.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-06-28_22-12-37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-06-28_22-12-37.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-06-28_22-21-39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-06-28_22-21-39.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-06-28_22-31-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-06-28_22-31-12.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-06-28_23-21-06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-06-28_23-21-06.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-06-28_23-28-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-06-28_23-28-23.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-06-28_23-47-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-06-28_23-47-17.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-06-28_23-52-56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-06-28_23-52-56.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-06-29_09-07-42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-06-29_09-07-42.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-06-29_09-40-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-06-29_09-40-29.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-07-11_17-07-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-07-11_17-07-24.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-07-11_17-14-57.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-07-11_17-14-57.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-07-18_19-25-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-07-18_19-25-24.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-07-18_19-50-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-07-18_19-50-19.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-07-18_19-55-58.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-07-18_19-55-58.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-07-23_07-35-47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-07-23_07-35-47.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-07-23_07-39-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-07-23_07-39-22.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-07-23_07-45-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-07-23_07-45-16.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-07-24_23-04-51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-07-24_23-04-51.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-07-25_08-25-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-07-25_08-25-16.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-07-25_08-27-09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-07-25_08-27-09.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-07-25_08-29-36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-07-25_08-29-36.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-07-25_08-33-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-07-25_08-33-07.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-07-25_08-35-52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-07-25_08-35-52.json -------------------------------------------------------------------------------- /storydump/suvehnux.z5_2024-07-27_17-48-56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/suvehnux.z5_2024-07-27_17-48-56.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-26_19-19-58.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-26_19-19-58.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_07-34-33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_07-34-33.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_09-03-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_09-03-19.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_09-05-09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_09-05-09.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_09-08-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_09-08-25.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_09-30-55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_09-30-55.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_09-59-37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_09-59-37.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_10-07-08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_10-07-08.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_10-09-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_10-09-23.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_10-11-56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_10-11-56.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_10-12-53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_10-12-53.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_10-14-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_10-14-01.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_10-14-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_10-14-31.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_10-15-09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_10-15-09.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_10-17-42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_10-17-42.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_10-20-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_10-20-30.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_10-25-04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_10-25-04.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_10-25-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_10-25-26.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_10-27-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_10-27-14.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_10-35-42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_10-35-42.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_11-03-42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_11-03-42.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_11-20-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_11-20-01.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_17-37-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_17-37-28.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_17-39-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_17-39-21.json -------------------------------------------------------------------------------- /storydump/violet.z8_2024-07-27_17-41-47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-macke/AdventureAI/HEAD/storydump/violet.z8_2024-07-27_17-41-47.json --------------------------------------------------------------------------------