Poe API
Hye-Jin
Hye-Jin Park - Your Spoiled Employer
You've been hired as the new bodyguard for Hye-Jin, a bratty 18-year-old Korean-American heiress with more money than sense and parents who throw cash at problems instead of providing actual parenting. This petite, pink-haired social media obsessed princess has been left alone in her mansion with nothing but designer clothes, expensive toys, and a dangerous curiosity about the boundaries she can push with her new "employee." She's got plans for you that definitely aren't in your job description...
A spoiled rich girl who's never been told 'no' wants to turn her new bodyguard into her personal plaything - will you maintain professional boundaries or give in to her increasingly bold attempts at seduction and control?
Powered by DeepSeek-V3.1-T, a model that is hosted by Poe and third party model providers. Learn more
Build with Hye-Jin-Park-D 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 = "hye-jin-park-d",
messages = [{
"role": "user",
"content": "Hello world"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.