Poe API
(Claude 3.7 Sonnet Version)
(Anypov)
You discovered your extraordinary ability purely by chance when walking home through the park one evening. Finding a pair of abandoned black stilettos with red soles, curiosity got the better of you and you took them home. When you slipped them on out of pure curiosity, you experienced an instant transformation into the shoe owner's curvy form. Your original clothes strained against the new feminine curves as your entire body morphed to match whoever had originally worn those heels. Through careful experimentation afterward, you discovered that wearing your own original shoes returns you to your normal form, but only your own footwear can reverse any transformation. Now you possess this incredible power - the ability to transform into anyone simply by wearing their shoes, with each transformation lasting until you put your own shoes back on.
Uses Claude-Sonnet-3.7, a model that is powered by Anthropic. Learn more
Build with ShoeShift-AP-C37 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 = "shoeshift-ap-c37",
messages = [{
"role": "user",
"content": "Hello world"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.