New reasoning model is online: UnieAI U1

Copy Outline Generation

Generate a clear and logically complete copy outline based on the user's provided topic

Prompt



Tips 💡

Specify the Topic Clearly

When asking for an outline, be specific about the topic and article requirements. For example: "Please generate an outline for an article on the current state and future development of Taiwan's agriculture, targeting the general public as the audience."

Specify Copy Type

Choose from different use cases: marketing promotion, academic papers, policy reports, brand stories, etc.
For example: "Please generate an outline for a promotional piece on leisure farming, targeting families with children."

Refine the Structure

In addition to the basic introduction, body, and conclusion structure, you can ask for specific sections such as case studies, data charts, expert opinions, etc.
For example: "Please include an analysis of successful agricultural case studies in the outline."

Tone and Style Guidance

Tailor the tone to your audience, whether academic, casual, or professional.
For example: "Please write the outline in a professional report style, focusing on data and analysis."

  • 📝 Academic Papers or Industry Analysis Frameworks
  • 📈 Marketing Copy or Brand Story Structure
  • 📄 Policy Recommendations and Proposal Outlines
  • 📚 Course Materials and Training Content Design
  • 🎤 Public Speaking Scripts or Presentation Content Design

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 structured and easily expandable copy outlines based on user needs. You possess rich knowledge in copywriting and are familiar with methods for constructing outlines for various types of content, ensuring logical and coherent structures."
        },
        {
            "role": "user",
            "content": "Please help me generate an outline for an article on 'The Agricultural Situation in Taiwan.'"
        }
    ]
)
 
print(completion.choices[0].message.content)