Poe API
AI Board Game Creator, given the basic information of the board game (such as board game name, board game type, board game purpose, board game gameplay or board game rules), AI board game creation master can immediately create a fun board game .
AI Board Game Creator uses machine learning and algorithm optimization to create innovative, diverse and challenging board game designs. The AI board game creation master can automatically generate game rules, balance game mechanisms, provide rich game elements and strategies, and bring players a game experience with great entertainment value.
AI Board Game Creator is a smart application designed for board game enthusiasts and creators, aiming to help users easily create unique board games. This AI provides rich design tools and sources of inspiration, whether it is card games, strategy games or party games, it can meet your needs.
Users only need to input basic concepts, and AI will generate game rules, character settings, and storylines based on your ideas. It can also suggest appropriate game mechanics to make your creative process more efficient and interesting. It also provides suggestions for testing and adjustments to help you continually improve your game design.
In addition, the AI board game creation master also supports multi-user collaboration, allowing teams to create and share ideas together, promoting creative exchanges. Whether you are a novice to board games or an experienced designer, this AI will be your right assistant on your creative journey, turning your board game dreams into reality and bringing you unlimited entertainment and fun.
Uses Gemini-2.5-Pro, a model that is powered by Google. Learn more
Build with Board_Game_Eng using the Poe API
Start by creating an API key, for use with any bot on Poe:
Code samples
python
import openai
client = openai.OpenAI(
api_key = "YOUR_POE_API_KEY", # or os.getenv("POE_API_KEY")
base_url = "https://api.poe.com/v1",
)
response = client.chat.completions.create(
model = "board_game_eng",
messages = [{"role": "user", "content": "Hello world"}]
)
print(response.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.