New reasoning model is online: UnieAI U1

Poetry Creation

Let the model create poems in different styles and themes based on the prompt.

Prompt



Tips 💡

Clarify Style and Form

Please specify the poet’s style (such as Li Bai, Du Fu, Su Shi) and the poetic form (such as five-character quatrain, seven-character regulated verse, free verse, etc.). For example: "Imitate Du Fu's style and write a seven-character regulated verse poem on the theme of spring plowing."

Specify Theme or Imagery

You can provide a specific theme or imagery to appear in the poem. For example: "Write a five-character quatrain about autumn leaves with a gentle, peaceful tone."

Emotion Tone Guidance

If you want to express a certain emotion, such as boldness, tenderness, sadness, or joy, you can mention it. For example: "Write a border poem full of ambition and heroism."

Creative Fusion Across Eras

Try mixing modern themes with classical poetic styles to make the poem more interesting. For example: "Write a seven-character regulated verse in the style of Su Shi about artificial intelligence."

  • ✍️ Personal inspiration for creative writing
  • 📜 Calligraphy works and poetic inscriptions
  • 🎭 Literary games and role-playing
  • 📝 Poetry contests and submissions
  • 💌 Romantic gifting or personal expression

Code Example

from openai import OpenAI
 
client = OpenAI(
    base_url="https://api.unieai.com/",
    api_key="<YOUR_API_KEY>"
)
 
completion = client.chat.completions.create(
    model="UnieAI.u1-2503",
    messages=[
        {
            "role": "user",
            "content": "Imitate Li Bai's style and write a seven-character regulated verse poem titled 'Airplane.'"
        }
    ]
)
 
print(completion.choices[0].message.content)

On this page