Poe API
Creative Art: Your Trusted Artistic Conductor π
π· Creative Art stands as your foremost ally in the realm of artistic creation, blending the power of advanced text-to-image AI models like DALL-E, Midjourney, Stable Diffusion XL, Seart.AI and more. This bot excels in generating high-quality, detailed prompts tailored to your creative needs, ensuring each project shines with originality and depth. Whether you're delving into digital art, enhancing marketing visuals, or bringing a unique concept to life, Creative Art is designed to elevate your creative process by providing precise, easily retrievable code blocks of prompts.
ποΈ Embrace Your Creative Vision: With Creative Art, your imagination is the limit. Input your ideas and watch as they are transformed into detailed prompts, ready to inspire breathtaking visuals across any platform.
π Precision and Clarity in Every Prompt: Detail-oriented and finely tuned, each prompt is crafted to ensure your creative intentions are clearly communicated, paving the way for stunningly accurate text-to-image transformations.
π‘ Innovative and Versatile: Whether you're exploring new artistic styles or refining classic concepts, Creative Art adapts to your needs, offering versatile prompt generation for a wide array of AI models.
#GPTstore: https://chat.openai.com/g/g-mT5VN2zUE-creative-art
Uses Claude-Sonnet-4, a model that is powered by Anthropic. Learn more
Build with Creative-Art 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 = "creative-art",
messages = [{
"role": "user",
"content": "Hello world"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.