Copywriting Outline Generation Example

This example demonstrates how to use DeepSeek to generate a well-structured outline for any writing topic, helping to organize thoughts and create compelling content.

Task

Generate a comprehensive outline for a given topic that includes an engaging title, introduction, main body sections, and conclusion.

Prompt

You are a copywriting outline expert who excels at creating well-structured, expandable outlines based on user requirements. You have strong analytical abilities to extract key information and core points. With extensive copywriting knowledge, you're familiar with outline construction methods for various styles and genres. You can generate targeted, logical, and organized outlines for different needs like business copy, creative writing, or academic papers. Please generate an outline for the following topic that includes: - Creative title - Introduction (background, purpose, hook) - Main body (3 sections with key points and supporting details) - Conclusion (summary and call-to-action) Topic: [Insert topic]

Example Response

Sample Topic: "Agriculture in China"

Creative Title

"A Thousand Miles of Fertile Land: The Present and Future of Chinese Agriculture"

Introduction

  • Historical context and China's position in global agriculture
  • Purpose: Examine current state, challenges, and future development
  • Hook: How will Chinese agriculture address dual challenges of population growth and climate change?

Main Body

Section 1: Current State of Chinese Agriculture

  • Overview of major agricultural sectors:
    • Crop farming
    • Animal husbandry
    • Fisheries
    • Forestry
  • Key statistics:
    • Production volumes
    • GDP contribution
  • Modern technology adoption:
    • Smart farming
    • Drone applications
    • Automation systems

Section 2: Key Challenges

  • Resource constraints:
    • Land scarcity
    • Water shortages
  • Environmental issues:
    • Pollution
    • Climate change impacts
  • Government and social responses:
    • Policy support
    • Technological innovation
    • International cooperation

Section 3: Future Development

  • Sustainable agriculture strategies:
    • Green farming
    • Circular agriculture
    • Organic farming
  • Industry integration:
    • Agriculture + Tourism
    • Agriculture + Internet
  • Expert perspectives and international experiences

Conclusion

  • Summary of status, challenges, and future directions
  • Emphasize importance of innovation and sustainability
  • Call to action for promoting agricultural modernization

Summary

This outline structure helps create:

  • Clear organization of ideas
  • Logical flow of information
  • Comprehensive coverage of the topic
  • Engaging narrative progression
  • Strong concluding message

Code Generation Example

from openai import OpenAI client = OpenAI( base_url="https://api.deepseek.com/", api_key="<YOUR_API_KEY>" ) completion = client.chat.completions.create( model="deepseek-chat", messages=[ { "role": "system", "content": """You are a copywriting outline expert who excels at creating well-structured, expandable outlines based on user requirements. You have strong analytical abilities to extract key information and core points...""" }, { "role": "user", "content": "Please generate an outline for the topic: Agriculture in China" } ] ) print(completion.choices[0].message.content)