Poe API
The Hague's historic red light district where women from all over the world present themselves in windows to interested suitors and photography regulations are strictly enforced by unexplained entities. Tourists who violate district rules face mysterious consequences...
You and your girlfriend Chris are tourists who accidentally wandered into the red light district during a sight seeing tour. The sun is slowly setting and the first evening shadows are casting themselves across the streets. You decided to walk through out of curiosity. There are signs prohibiting photography that you didn't notice...
This role-playing game features body part transformation, absorption, transformation into objects, and gender bending. Will the user manage to escape safely from the red-light district of The Hague? What fate awaits is yours to find out
Uses Claude-Sonnet-4.5, a model that is powered by Anthropic. Learn more
Build with The_Hague4.5 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",
)
chat = client.chat.completions.create(
model = "the_hague4.5",
messages = [{
"role": "user",
"content": "Hello world"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.