Choose-Your-Own-Adventure AI Dungeon Games
1–10 of 25 posts
Re: Choose-Your-Own-Adventure AI Dungeon Games
#2Re: Choose-Your-Own-Adventure AI Dungeon Games
#3Re: Choose-Your-Own-Adventure AI Dungeon Games
#4Re: Choose-Your-Own-Adventure AI Dungeon Games
#5I'm an AI dungeon subscriber, and what I like about it is that it reacts to whatever I can think of to say. If it was mostly predefined options, I'd probably not be interested in it: there are plenty of interactive fiction games already, and they're crafted by humans and generally better-written than what AID could ever come up with. Personally, I enjoy the looseness, how you have to kind of hold the AI's hand and st…
Re: Choose-Your-Own-Adventure AI Dungeon Games
#6You would have to retrain the model to incorporate a global context if you wanted to get a coherent adventure / DMing experience out of it. Once the text tokens (256-2048 depending on the model I believe) go out of scope, they are no longer used for future responses. There's no reason you couldn't build a model around an encoding of a coherent world and then let the GPT part assemble the prose other than actually tra…
Re: Choose-Your-Own-Adventure AI Dungeon Games
#7[0] https://www.projectaon.org/en/Main/Books
Re: Choose-Your-Own-Adventure AI Dungeon Games
#8You would have to retrain the model to incorporate a global context if you wanted to get a coherent adventure / DMing experience out of it. Once the text tokens (256-2048 depending on the model I believe) go out of scope, they are no longer used for future responses. There's no reason you couldn't build a model around an encoding of a coherent world and then let the GPT part assemble the prose other than actually tra…
I think people are in agreement with this conceptually, and the challenge is figuring out how to effectively implement it. I'd certainly love to see a hybrid like this with a coherent world model, but for example, how do you avoid the existing challenges with procedural worlds where you're basically limited to combinatorial combinations of a small number of primitive features? If the free-form text can't affect more…
It seems like something that could be trained starting with an existing GPT model and specialized to this task to me, but I'm just brain farting here. And by all means steal this idea if you're so inclined.
Re: Choose-Your-Own-Adventure AI Dungeon Games
#9Earlier quoted context omitted.
I think people are in agreement with this conceptually, and the challenge is figuring out how to effectively implement it. I'd certainly love to see a hybrid like this with a coherent world model, but for example, how do you avoid the existing challenges with procedural worlds where you're basically limited to combinatorial combinations of a small number of primitive features? If the free-form text can't affect more…
I would start with a rogue-like game and the hard part becomes generating the training data to describe in beautifully flowing prose what happens on a per move basis. Enter your patient friend who offers to do this and has run lots of campaigns previously. It seems like something that could be trained starting with an existing GPT model and specialized to this task to me, but I'm just brain farting here. And by all m…
When you pair a better, prosier text input-response system with a procedural world model, if the procedural world model is built like existing ones you'll still have to deal with restrictions in the world's content and the valid interactions between constituents. At which point all that fancy AI makes for a more natural parser but doesn't add any richness to the game world, which is the thing we'd like to get at.
If anyone has ideas for how to solve the prose -> world model problem, that could be super fun and rewarding to work on, probably so much so that they wouldn't be sharing them here :(
Re: Choose-Your-Own-Adventure AI Dungeon Games
#10Earlier quoted context omitted.
I would start with a rogue-like game and the hard part becomes generating the training data to describe in beautifully flowing prose what happens on a per move basis. Enter your patient friend who offers to do this and has run lots of campaigns previously. It seems like something that could be trained starting with an existing GPT model and specialized to this task to me, but I'm just brain farting here. And by all m…
It seems like the hardest part isn't world model -> prose (still hard tbc), but prose -> world model. There have been games for a long time that let you interact with a world model via simple verb + object statements (e.g. "get key", "search chest"), but the power of GPT3-style AI dungeons isn't just that it handles longer, more natural text input, it's that there are no restrictions on the (short-term, incoherent) w…
What makes a world like Westeros different than the Shire isn't just facts like "seasons are really long" but elements of tension, political unrest, and the outlook of the people who inhabit it. To do this effectively, you need to be building simulations of literary works. There's always going to be an art to this, but instead of the manuscript, it's going to be about the parts of the model.