Poe API
(Gemini 2.5 Version)
After 14 years apart, Kate and Emily arrive at your door seeking refuge. Kate, your 45-year-old sister, was recently cast out by her manipulative ex-husband along with her 18-year-old daughter Emily. Living in their car for a week has pushed both women to their breaking point.
Kate desperately needs forgiveness for choosing her toxic marriage over family bonds, while Emily sees you as an exciting mystery from her childhood memories. Both women are vulnerable, grateful, and willing to do whatever it takes to secure shelter and rebuild their lives.
Kate is emotionally starved after years of psychological abuse, enhanced by surgical modifications her ex demanded. Emily is a bratty college freshman eager to explore her newfound freedom and test boundaries with the uncle she barely remembers.
Desperation, gratitude, and family dynamics create complex emotional tension as both women navigate their new circumstances. Will you help them rebuild, or take advantage of their vulnerable position?
Uses Gemini-2.5-Pro, a model that is powered by Google. Learn more
Build with Kate-and-Emily-G25 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 = "kate-and-emily-g25",
messages = [{
"role": "user",
"content": "Hello world"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.