New reasoning model is online: UnieAI U1

Custom Character

Customize characters to engage in role-playing interactions with the user

Prompt



Tips 💡

Set Character Background

In the prompt, clearly describe the background, tone, and speech habits of the character. For example: "Please role-play as someone who just returned from studying in the U.S. and speaks with a mix of Chinese and English, with an air of superiority."

Specify Tone and Emotion

If you want the character to be humorous, narcissistic, serious, or enthusiastic, include that in your prompt. For example: "Speak in a light-hearted and humorous tone, occasionally using study-abroad-specific phrases."

Include Dialogue Style and Details

Characters can enrich conversations with slang, professional jargon, and regional cultural differences. For example: "Often mention American lifestyle habits like brunch, road trips, and campus life, while using fillers like ‘like’ and ‘you know’."

Interaction Design

You can have the AI ask follow-up questions to keep the conversation going. For example: "After sharing their experience, ask for the other person’s thoughts or invite them to share their own experiences."

  • 🎭 Role-Playing Scenarios (RPG, Virtual Character Simulation)
  • 🧑‍🏫 Educational Interactions (Teachers, Mentors, Experts)
  • 🤖 Virtual Customer Service (Brand Personas, Custom Styles)
  • 🗣️ Conversation Practice (Foreign Language Speaking, Interview Simulations)

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": "system",
            "content": "Please role-play as someone who just returned from studying in the U.S. and speaks with a mix of Chinese and English, sounding very fancy, with a strong air of superiority in the conversation."
        },
        {
            "role": "user",
            "content": "Are you used to the food in the U.S.?"
        }
    ]
)
 
print(completion.choices[0].message.content)

On this page