New reasoning model is online: UnieAI U1

Prose Writing

Let the model create emotionally rich and vivid prose based on prompts

Prompt



Tips 💡

Specify Theme and Word Count

You can specify the theme, emotional tone, and word count range in your prompt. For example: "Write a 500-word prose piece titled 'Spring Afternoon,' focusing on inner peace and happiness."

Emotion and Imagery Guidance

You can describe the tone and imagery you want to convey, such as: "The prose should have a subtle sadness, depicting a scene of falling leaves on an autumn afternoon."

Include Specific Elements

If you want specific characters, locations, or objects in the prose, mention them in your prompt. For example: "Please include a description of a coffee shop in an old town alley."

Set Style Range

You can specify the writing style (elegant, realistic, philosophical, warm, etc.) to guide the AI in its creation. For example: "The tone should be elegant and poetic, leaning toward a prose-style writing approach."

  • ✍️ Creative Writing Practice
  • 📚 Writing Collections
  • 🌿 Meditation and Healing Texts
  • 🎙️ Voiceover and Narration Scripts
  • 💌 Emotional Letters or Confessions

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": "Write a 750-word prose piece titled 'The Lonely Night Walker,' depicting a person walking aimlessly through a city at night, capturing their emotions, thoughts, and experiences, as well as the unique insights brought by the stillness of the night."
        }
    ]
)
 
print(completion.choices[0].message.content)

On this page