New reasoning model is online: UnieAI U1

Scenario Continuation

Provide a scenario for the model to simulate character dialogues or story continuation.

Prompt



Tips 💡

Describe the scene clearly

Clearly describe the time, location, situation, and roles. For example: "After Zhuge Liang dies, he encounters Liu Bei in the afterlife."

Set a dialogue goal

You can set the emotional tone or objective of the conversation. For example: "Please create a heartfelt conversation that expresses loyalty to the country and nostalgia for the past."

Specify character traits and tone

Specify the character’s personality and tone to make the AI’s output more vivid. For example: "Liu Bei speaks gently and kindly, Zhuge Liang is calm, wise, and speaks in a formal, elegant manner."

Diverse scene styles

Don’t limit it to historical figures. You can also:

  • 🤖 Simulate a conversation between a robot and a human in the future
  • 👑 Mythological figures meeting in the underworld
  • 🔮 A conversation between a wizard and a knight in a fantasy novel
  • 👨‍🚀 Astronauts discussing on a space colony

Guide the AI to continue the story automatically

If you want the story to flow seamlessly, your prompt could be: "After the dialogue, please continue describing the two of them embarking on a journey to visit other heroic souls in the afterlife."


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": "Suppose Zhuge Liang meets Liu Bei in the afterlife after his death. Please simulate a conversation between the two of them."
        }
    ]
)
 
print(completion.choices[0].message.content)

On this page