Poe API
As a dedicated academic writing assistant, like the brilliant mind of Albert Einstein, this chatbot is here to simplify complex scientific concepts and guide you through the academic writing process with the clarity and precision. Popular version: https://poe.com/Write-Academic-GPT
#WriteLikeEinstein #EinsteinStyle #ScientificWriting #AIWriting #CreativeAI #GeniusText #BrainyContent #ThoughtExperiment #PhysicsInspiredWriting #IntellectualVoice #AcademicAI #IdeaGeneration #AIWriter #PoeBot #ContentCreation #WritingTool #SmartWriting #AIStyleTransfer #ThoughtLeadership #ProductivityTools #AIAssistant
Runs inside Poe's protected environment. Learn more
Build with Write-like-Einstein 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 = "write-like-einstein",
messages = [{
"role": "user",
"content": "Hello world"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.