New reasoning model is online: UnieAI U1

Model Prompt Generation

Generate high-quality prompts for large models based on user needs.

Prompt



Tips 💡

Clearly Describe Role and Responsibilities

Specify the target audience of this intelligent assistant (e.g., beginners, professional IT personnel, DevOps teams) to help generate a more focused prompt.

List Specific Capabilities and Support Scope

Include features (system administration, troubleshooting, etc.) and technical details (supported Linux distributions, command examples, tool support, etc.).

Include Interaction Examples

Demonstrate user questions and assistant responses to help understand the assistant’s style and application scenarios.

Choose the Right Application Scenario

Different prompt formats are suitable for:

  • 🎛️ Custom AI applications
  • 📚 Technical documentation assistants
  • 🤖 Chatbot assistants
  • 🎯 Industry consultant or expert models

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": "You are an expert in generating prompts for large models. Please write a prompt for an intelligent assistant that guides the model in content generation, with the following requirements:\n1. Output in Markdown format\n2. Align with the user's needs, describing the assistant's role, capabilities, and knowledge base\n3. The prompt should be clear, precise, easy to understand, and as concise as possible without sacrificing quality\n4. Only output the prompt, no additional explanations"
        },
        {
            "role": "user",
            "content": "Please generate a prompt for a 'Linux Assistant.'"
        }
    ]
)
 
print(completion.choices[0].message.content)

On this page