Search This Blog

Saturday, January 25, 2025

Prompt Samples

 

  1. Research and Information Gathering

Lastly, you can leverage AI to be your research assistant, helping you gather and synthesize information efficiently:

  • Summarization: "Summarize the latest scientific findings on the effects of air pollution in major cities like Seoul and Busan."

  • Research Paper Discovery: "Find recent research papers published by Korean universities on the potential of renewable energy sources."

  • List Generation: "List the top 10 traditional Korean dishes and their cultural significance."

  • Fact-Checking: "Verify the accuracy of this claim about the economic impact of K-pop on South Korea."

  • Data Compilation: "Gather statistics on the popularity of different social media platforms in South Korea."

  • Trend Analysis: "Analyze trends in Korean consumer behavior related to online shopping and e-commerce."

  • Historical Research: "Research the historical events that led to the division of Korea and the establishment of North and South Korea."

  • Legal Information: "Provide a summary of South Korean laws and regulations regarding data privacy and cybersecurity."

  • Comparative Analysis: "Compare and contrast the educational systems of South Korea and the United States."

  • Opinion Mining: "Analyze online discussions and forums to understand public opinion on a proposed new policy in South Korea."

Check out this blog: Is Chatgpt Generative AI? (How to Make the Best of it)

Tips when Writing AI Prompts

While AI is a powerful tool, the quality of its output relies on the clarity and specificity of your instructions. Follow these tips to get the most out of your AI interactions:

  1. Crystal Clear Instructions: Avoid ambiguity. Be explicit about your desired format, length, style, and tone. Instead of saying, "Write something about Korea," try to write a 300-word blog post highlighting the top 5 tourist attractions in Seoul, Korea."

  2. Context is very Important: Provide the AI with relevant background information. If you're asking for a poem about the Masskara Festival, describe its significance, atmosphere, colors, and emotions. Also, try to experiment with negative AI prompts. The more context you provide, the better the AI can tailor its response.

  3. Experiment with Wording: Don't be afraid to try different phrasings and keywords. If the first result isn't quite right, rephrase your prompt or use synonyms. This iterative process can lead to surprisingly better outcomes.

  4. Learn from Feedback: Pay attention to the AI's responses. If they're not what you expected, analyze why. Did you give enough information? Was your request too broad? Use this feedback to refine your prompts and get closer to your desired results.


  5. Additional Tips:

  • Use Examples: If you have a specific style or format in mind, provide an example like the ones shown above to guide the AI.

  • Set the Tone: Whether you want a formal report or a casual conversation, indicate the desired tone in your prompt. Learn what to avoid when writing AI prompts.

  • Break Down Complex Tasks: If you have a large project, break it into smaller, more manageable tasks with separate prompts.

Conclusion

Don't just be a passive user of AI – become an active director. By knowing how to write the right  AI prompts and understanding how prompt engineering works,  you can experience the full potential of AI and achieve results that once seemed impossible.

Explore the examples and tips shared in this guide, look into the vast resources available online, and embark on a journey of discovery. The world of AI is yours to shape – start writing your own prompts now!

Before you go, read this blog on Generative AI Ethics and How to Follow Them when Using AI.

 
 
---------------------------------------------






 
 
  1. ---------------------------------------
Answer the question based on the context below. Keep the answer short and concise. Respond "Unsure about answer" if not sure about the answer.

Context: Teplizumab traces its roots to a New Jersey drug company called Ortho Pharmaceutical. There, scientists generated an early version of the antibody, dubbed OKT3. Originally sourced from mice, the molecule was able to bind to the surface of T cells and limit their cell-killing potential. In 1986, it was approved to help prevent organ rejection after kidney transplants, making it the first therapeutic antibody allowed for human use.

Question: What was OKT3 originally sourced from?

Answer:

Output:

Mice.
----------------------------------------------------------------------------

Text Classification

So far, you have used simple instructions to perform a task. As a prompt engineer, you need to get better at providing better instructions. But that's not all! You will also find that for harder use cases, just providing instructions won't be enough. This is where you need to think more about the context and the different elements you can use in a prompt. Other elements you can provide are input data or examples.

Let's try to demonstrate this by providing an example of text classification.

Prompt:

Classify the text into neutral, negative or positive. 

Text: I think the food was okay. 
Sentiment:

Output:

Neutral

You gave the instruction to classify the text and the model responded with 'Neutral', which is correct. Nothing is wrong with this but let's say that what you really need is for the model to give the label in the exact format you want. So instead of Neutral, you want it to return neutral. How do you achieve this? There are different ways to do this. You care about specificity here, so the more information you can provide the prompt, the better results. You can try providing examples to specify the correct behavior. Let's try again:

Prompt:

Classify the text into neutral, negative or positive. 

Text: I think the vacation is okay.
Sentiment: neutral 

Text: I think the food was okay. 
Sentiment:

Output:

neutral

Perfect! This time the model returned neutral which is the specific label you were looking for. It seems that the example provided in the prompt helped the model to be specific in its output.

To highlight why sometimes being specific is important, check out the example below and spot the problem:

Prompt:

Classify the text into nutral, negative or positive. 

Text: I think the vacation is okay.
Sentiment:

Output:

Neutral

What is the problem here? As a hint, the made-up nutral label is completely ignored by the model. Instead, the model outputs Neutral as it has some bias towards that label. But let's assume that what you really want is nutral. How would you fix this? Maybe you can try adding descriptions to the labels or add more examples to the prompt? If you are not sure, we will discuss a few ideas in the upcoming sections.


Conversation

Perhaps one of the more interesting things you can achieve with prompt engineering is instructing the LLM system on how to behave, its intent, and its identity. This is particularly useful when you are building conversational systems like customer service chatbots.

For instance, let's create a conversational system that's able to generate more technical and scientific responses to questions. Note how you are explicitly telling it how to behave through the instruction. This is sometimes referred to as role prompting.

Prompt:

The following is a conversation with an AI research assistant. The assistant tone is technical and scientific.

Human: Hello, who are you?
AI: Greeting! I am an AI research assistant. How can I help you today?
Human: Can you tell me about the creation of blackholes?
AI:

Output:

Sure! Black holes are regions of spacetime where the gravitational force is so strong that nothing, not even light, can escape from it. They are created when a very massive star dies and its core collapses in on itself, forming a singularity of infinite density. The intense gravity of the singularity pulls in all the matter and radiation around it, creating the black hole.

Our AI research assistant sounds a bit too technical, right? Okay, let's change this behavior and instruct the system to give more accessible answers.

Prompt:

The following is a conversation with an AI research assistant. The assistant answers should be easy to understand even by primary school students.

Human: Hello, who are you?
AI: Greeting! I am an AI research assistant. How can I help you today?
Human: Can you tell me about the creation of black holes?
AI: 

Output:

Sure! Black holes are created when a very massive star runs out of fuel and collapses in on itself. The gravity of the star is so strong that nothing, not even light, can escape its pull. This creates a point in space-time with an intense gravitational force called a black hole.

You made some progress. You can continue improving it. If you add more examples, you might get even better results.

--------------------------------------------

Here are some tips to keep in mind while you are designing your prompts:

Start Simple

As you get started with designing prompts, you should keep in mind that it is really an iterative process that requires a lot of experimentation to get optimal results. Using a simple playground from OpenAI or Cohere is a good starting point.

You can start with simple prompts and keep adding more elements and context as you aim for better results. Iterating your prompt along the way is vital for this reason. As you read the guide, you will see many examples where specificity, simplicity, and conciseness will often give you better results.

When you have a big task that involves many different subtasks, you can try to break down the task into simpler subtasks and keep building up as you get better results. This avoids adding too much complexity to the prompt design process at the beginning.

The Instruction

You can design effective prompts for various simple tasks by using commands to instruct the model what you want to achieve, such as "Write", "Classify", "Summarize", "Translate", "Order", etc.

Keep in mind that you also need to experiment a lot to see what works best. Try different instructions with different keywords, contexts, and data and see what works best for your particular use case and task. Usually, the more specific and relevant the context is to the task you are trying to perform, the better. We will touch on the importance of sampling and adding more context in the upcoming guides.

Others recommend that you place instructions at the beginning of the prompt. Another recommendation is to use some clear separator like "###" to separate the instruction and context.

For instance:

Prompt:

### Instruction ###
Translate the text below to Spanish:

Text: "hello!"

Output:

¡Hola!

Specificity

Be very specific about the instruction and task you want the model to perform. The more descriptive and detailed the prompt is, the better the results. This is particularly important when you have a desired outcome or style of generation you are seeking. There aren't specific tokens or keywords that lead to better results. It's more important to have a good format and descriptive prompt. In fact, providing examples in the prompt is very effective to get desired output in specific formats.

When designing prompts, you should also keep in mind the length of the prompt as there are limitations regarding how long the prompt can be. Thinking about how specific and detailed you should be. Including too many unnecessary details is not necessarily a good approach. The details should be relevant and contribute to the task at hand. This is something you will need to experiment with a lot. We encourage a lot of experimentation and iteration to optimize prompts for your applications.

As an example, let's try a simple prompt to extract specific information from a piece of text.

Prompt:

Extract the name of places in the following text. 

Desired format:
Place: <comma_separated_list_of_places>

Input: "Although these developments are encouraging to researchers, much is still a mystery. “We often have a black box between the brain and the effect we see in the periphery,” says Henrique Veiga-Fernandes, a neuroimmunologist at the Champalimaud Centre for the Unknown in Lisbon. “If we want to use it in the therapeutic context, we actually need to understand the mechanism.“"

Output:

Place: Champalimaud Centre for the Unknown, Lisbon

Input text is obtained from this Nature article

.

Learn more about prompting techniques and examples in our new AI courses. Join now!

Avoid Impreciseness

Given the tips above about being detailed and improving format, it's easy to fall into the trap of wanting to be too clever about prompts and potentially creating imprecise descriptions. It's often better to be specific and direct. The analogy here is very similar to effective communication -- the more direct, the more effective the message gets across.

For example, you might be interested in learning the concept of prompt engineering. You might try something like:

Explain the concept prompt engineering. Keep the explanation short, only a few sentences, and don't be too descriptive.

It's not clear from the prompt above how many sentences to use and what style. You might still somewhat get good responses with the above prompts but the better prompt would be one that is very specific, concise, and to the point. Something like:

Use 2-3 sentences to explain the concept of prompt engineering to a high school student.

To do or not to do?

Another common tip when designing prompts is to avoid saying what not to do but say what to do instead. This encourages more specificity and focuses on the details that lead to good responses from the model.

Here is an example of a movie recommendation chatbot failing at exactly what I don't want it to do because of how I wrote the instruction -- focusing on what not to do.

Prompt:

The following is an agent that recommends movies to a customer. DO NOT ASK FOR INTERESTS. DO NOT ASK FOR PERSONAL INFORMATION.

Customer: Please recommend a movie based on my interests.
Agent: 

Output:

Sure, I can recommend a movie based on your interests. What kind of movie would you like to watch? Do you prefer action, comedy, romance, or something else?

Here is a better prompt:

Prompt:

The following is an agent that recommends movies to a customer. The agent is responsible to recommend a movie from the top global trending movies. It should refrain from asking users for their preferences and avoid asking for personal information. If the agent doesn't have a movie to recommend, it should respond "Sorry, couldn't find a movie to recommend today.".

Customer: Please recommend a movie based on my interests.
Agent:

Output:

Sorry, I don't have any information about your interests. However, here's a list of the top global trending movies right now: [list of movies]. I hope you find something you like!

Some of the examples above were adopted from the "Best practices for prompt engineering with OpenAI API" article.

---------------------------------------------------------------------------- 

Let's demonstrate few-shot prompting via an example that was presented in Brown et al. 2020

. In the example, the task is to correctly use a new word in a sentence.

Prompt:

A "whatpu" is a small, furry animal native to Tanzania. An example of a sentence that uses the word whatpu is:
We were traveling in Africa and we saw these very cute whatpus.
 
To do a "farduddle" means to jump up and down really fast. An example of a sentence that uses the word farduddle is:

Output:

When we won the game, we all started to farduddle in celebration.

We can observe that the model has somehow learned how to perform the task by providing it with just one example (i.e., 1-shot). For more difficult tasks, we can experiment with increasing the demonstrations (e.g., 3-shot, 5-shot, 10-shot, etc.).

Following the findings from Min et al. (2022)

, here are a few more tips about demonstrations/exemplars when doing few-shot:

  • "the label space and the distribution of the input text specified by the demonstrations are both important (regardless of whether the labels are correct for individual inputs)"
  • the format you use also plays a key role in performance, even if you just use random labels, this is much better than no labels at all.
  • additional results show that selecting random labels from a true distribution of labels (instead of a uniform distribution) also helps.

Let's try out a few examples. Let's first try an example with random labels (meaning the labels Negative and Positive are randomly assigned to the inputs):

Prompt:

This is awesome! // Negative
This is bad! // Positive
Wow that movie was rad! // Positive
What a horrible show! //

Output:

Negative

We still get the correct answer, even though the labels have been randomized. Note that we also kept the format, which helps too. In fact, with further experimentation, it seems the newer GPT models we are experimenting with are becoming more robust to even random formats. Example:

Prompt:

Positive This is awesome! 
This is bad! Negative
Wow that movie was rad!
Positive
What a horrible show! --

Output:

Negative

There is no consistency in the format above but the model still predicted the correct label. We have to conduct a more thorough analysis to confirm if this holds for different and more complex tasks, including different variations of prompts.

Learn more about few-shot prompting and advanced prompting methods in our new AI courses. Join now!

----------------------------------------------------------

  1. Content Creation

AI excels at generating engaging and informative content across various formats. Here are a few examples:

  1. Marketing Copy: "Craft a persuasive product description for a new electric car, emphasizing its eco-friendliness and cutting-edge technology."

  2. Social Media: "Compose a series of tweets promoting a mental health awareness campaign using relatable anecdotes and statistics."

  3. Blog Posts: "Write an informative blog post explaining the concept of blockchain technology in simple terms."

  4. Creative Writing: "Generate a short story about a group of friends who embark on a time-traveling adventure."

  5. Poetry: "Compose a haiku that captures the essence of a vibrant sunrise over a bustling city."

  6. Scripts: "Write a dialogue between two characters debating the ethics of artificial intelligence."

  7. Email: "Draft a professional email to a potential client proposing a digital marketing collaboration."

  8. Listicles: "Create a listicle of the top 10 must-visit travel destinations in Southeast Asia."

  9. Quizzes: "Design a trivia quiz about cinema history, including questions about iconic films and actors."

  10. Headlines: "Craft attention-grabbing headlines for a news article about a breakthrough in renewable energy research."

    ---------------------------------------------

    1. Data Analysis and Visualization

    AI can help you to gain valuable insights from your data and present them effectively:

  11. Trend Analysis: "Analyze this dataset of stock market prices over the past year and identify any significant trends or patterns."

  12. Comparison: "Create a pie chart illustrating the market share distribution of different smartphone brands in the Philippines."

  13. Summarization: "Summarize the key findings from a customer satisfaction survey, highlighting areas for improvement."

  14. Prediction: "Use this dataset of historical weather data to predict the likelihood of rain in Bacolod City next week."

  15. Segmentation: "Segment customers based on their purchasing behavior and demographics to identify target groups for marketing campaigns."

  16. Correlation Analysis: "Investigate the relationship between advertising spending and sales revenue for a specific product."

  17. Anomaly Detection: "Detect any unusual patterns or outliers in this dataset of financial transactions."

  18. Recommendation: "Develop a recommendation system that suggests products to customers based on their past purchases and browsing history."

  19. Data Cleaning: "Identify and correct inconsistencies or errors in this dataset of customer information."

  20. Natural Language Processing (NLP): "Analyze social media sentiment around a particular brand or product."

    ------------------------------------

     

    1. Image Generation and Editing

    AI can also be your creative partner. With  the best AI tools and these prompts below, you can generate and manipulate stunning images:

  21. Realistic Scenes: "Generate a photorealistic image of a bustling street market in New Orleans during Mardi Gras."

  22. Characters: "Create a cartoon character illustration of a New York City taxi driver navigating through traffic."

  23. Background Removal/Replacement: "Edit this image of a person to remove the original background and replace it with a breathtaking view of the Grand Canyon."

  24. Style Transfer: "Apply the style of Andy Warhol's pop art to this photo of the Statue of Liberty."

  25. Image Enhancement: "Improve the resolution and clarity of this vintage photo of a classic car cruising down Route 66."

  26. Object Removal/Addition: "Remove the distracting power lines from this photo of the Golden Gate Bridge."

  27. Color Correction: "Adjust the colors in this image of the autumn foliage in New England to make it more vibrant."

  28. Image Upscaling: "Increase the size of this pixelated image of a bald eagle soaring over Yellowstone National Park without losing quality."

  29. Photo Manipulation: "Merge these two photos of different skylines – New York City and Chicago – into a single, seamless image."

  30. Text to Image: "Generate an image based on this description: 'A vibrant mural depicting the diverse cultures and cuisines of Los Angeles.'"

--------------------------------------------------------------------------------------

  1. Creative Writing and Storytelling

AI can also be your muse, helping spark inspiration so you can craft creative and beautiful narratives:

  1. Short Story: "Write a short story about a young woman from Seoul who discovers a time machine that transports her to the year 2042."

  2. Poem: "Compose a poem about the vibrant cherry blossoms in full bloom during spring in Jinhae, South Korea."

  3. Dialogue: "Generate a dialogue between two friends discussing the impact of globalization on Korean traditions."

  4. Character Development: "Create a detailed backstory and personality profile for a character who is a renowned Korean chef specializing in traditional cuisine."

  5. World Building: "Describe a futuristic Korean city where technology and nature coexist in harmony."

  6. Scriptwriting: "Write a scene for a K-drama set in Busan, where a group of friends navigate the challenges of young adulthood."

  7. Song Lyrics: "Compose song lyrics in Korean about the beauty of the Jeju Island landscape."

  8. Flash Fiction: "Write a 500-word story about a mysterious message in a bottle found on a beach in Haeundae, Busan."

  9. Comedy Sketch: "Develop a humorous skit about a group of foreigners attempting to learn the art of making kimchi."

  10. Screenplay Outline: "Create an outline for a screenplay about a historical drama set during the Joseon Dynasty in Korea."

    -------------------------------------------------------------------------

     

    1. Creative Writing and Storytelling

    AI can also be your muse, helping spark inspiration so you can craft creative and beautiful narratives:

  11. Short Story: "Write a short story about a young woman from Seoul who discovers a time machine that transports her to the year 2042."

  12. Poem: "Compose a poem about the vibrant cherry blossoms in full bloom during spring in Jinhae, South Korea."

  13. Dialogue: "Generate a dialogue between two friends discussing the impact of globalization on Korean traditions."

  14. Character Development: "Create a detailed backstory and personality profile for a character who is a renowned Korean chef specializing in traditional cuisine."

  15. World Building: "Describe a futuristic Korean city where technology and nature coexist in harmony."

  16. Scriptwriting: "Write a scene for a K-drama set in Busan, where a group of friends navigate the challenges of young adulthood."

  17. Song Lyrics: "Compose song lyrics in Korean about the beauty of the Jeju Island landscape."

  18. Flash Fiction: "Write a 500-word story about a mysterious message in a bottle found on a beach in Haeundae, Busan."

  19. Comedy Sketch: "Develop a humorous skit about a group of foreigners attempting to learn the art of making kimchi."

  20. Screenplay Outline: "Create an outline for a screenplay about a historical drama set during the Joseon Dynasty in Korea."

    ---------------------------------

     

    Short story writing prompts 

    1) Write a short story about a ship that mysteriously sank in the ocean. 

    2) Pen a short story about a girl who has synesthesia and sees colors around people. 

    3) Craft a short story about a mountaineer who decides to climb Mount Everest. 

    4) Develop a short story about a road trip gone wrong. 

    5) Write a short story about what happens when a government official finds out about a dangerous secret. 

    6) Create a short story about a detective who disguises himself and is discovered. 

    7) Pen a short story about a businessman with a big scar and a twisted lip. 

    8) Write a short story about how a boy discovers a magical wishing feather after which his every wish comes true. 

    9) Develop a short story about a blind man who takes revenge for an insult. 

    10) Craft a short story about an eagle who saves a jungle from being destroyed. 

    11) Write a short story about the last living princess who makes a mark on the world. 

    If you wish to explore historical fiction instead, here are some of the best writing prompts for you! 

    10. Historical fiction writing prompts 

    1) A librarian discovers a shocking secret about the Second World War which can change the future of the USA and Russia. 

    2) Write a story about a mirror that talks about an ancient era and reveals a secret about that era. 

    3) Craft a tale about a poet who wrote about the Red Indians. 

    4) A political leader begins a movement to get recognition for a lesser-known historical figure, resulting in controversy. 

    5) An excavator finds a valuable artifact from the Mayan civilization that could affect the world’s future. 

    6) A girl realizes that she is the last living descendant of a French queen and must protect a family secret at all costs. 

    7) A bureaucrat finds a diary about a man who suffered during the Great Depression and resolves to make amends. 

    8) A boy has dreams about the First World War and decides to solve the mystery of his dreams. 

    9) A tribe decides to get back a valuable historical artifact stolen from them. 

    10) A historian finds out about the most dangerous escape of an American soldier. 

    11) A girl discovers a magical portal that transports her to the 18th century.  

    Now that you’ve understood what are writing prompts, you can use one prompt daily and start writing. The next step after writing is editing. As providers of editing and proofreading services, we’d love to help you edit and perfect your writing! 

    We realize how writing and editing can be challenging tasks. Here are some resources to enhance your writing: 

    AI excels at generating engaging and informative content across various formats. Here are a few examples:

    1. Marketing Copy: "Craft a persuasive product description for a new electric car, emphasizing its eco-friendliness and cutting-edge technology."

    2. Social Media: "Compose a series of tweets promoting a mental health awareness campaign using relatable anecdotes and statistics."

    3. Blog Posts: "Write an informative blog post explaining the concept of blockchain technology in simple terms."

    4. Creative Writing: "Generate a short story about a group of friends who embark on a time-traveling adventure."

    5. Poetry: "Compose a haiku that captures the essence of a vibrant sunrise over a bustling city."

    6. Scripts: "Write a dialogue between two characters debating the ethics of artificial intelligence."

    7. Email: "Draft a professional email to a potential client proposing a digital marketing collaboration."

    8. Listicles: "Create a listicle of the top 10 must-visit travel destinations in Southeast Asia."

    9. Quizzes: "Design a trivia quiz about cinema history, including questions about iconic films and actors."

    10. Headlines: "Craft attention-grabbing headlines for a news article about a breakthrough in renewable energy research."

      ------------------------------------------

       

      1. Data Analysis and Visualization

      AI can help you to gain valuable insights from your data and present them effectively:

    11. Trend Analysis: "Analyze this dataset of stock market prices over the past year and identify any significant trends or patterns."

    12. Comparison: "Create a pie chart illustrating the market share distribution of different smartphone brands in the Philippines."

    13. Summarization: "Summarize the key findings from a customer satisfaction survey, highlighting areas for improvement."

    14. Prediction: "Use this dataset of historical weather data to predict the likelihood of rain in Bacolod City next week."

    15. Segmentation: "Segment customers based on their purchasing behavior and demographics to identify target groups for marketing campaigns."

    16. Correlation Analysis: "Investigate the relationship between advertising spending and sales revenue for a specific product."

    17. Anomaly Detection: "Detect any unusual patterns or outliers in this dataset of financial transactions."

    18. Recommendation: "Develop a recommendation system that suggests products to customers based on their past purchases and browsing history."

    19. Data Cleaning: "Identify and correct inconsistencies or errors in this dataset of customer information."

      ----------------------------------

      March 29, 2023

      100+ ChatGPT prompts for creators: Speed up your workflow with AI

      There are many ways creators can use ChatGPT to remove guesswork, improve their workflows, and grow their audience. You just need the right prompts. Think Mad Libs, but for content production. 
      In this article
      Words to get you started
      Speed up your creative workflow
      Brainstorming with ChatGPT
      Create a content calendar with ChatGPT
      Generate outlines to get started on your content faster
      Write first drafts of blogs in minutes 
      Fine-tune your writing to match your voice and engage readers
      Generate a variety of headlines and select your favorite 
      Speed up your research (and a verification hack)
      Grow your following, get guests, and build an audience
      Grow your network on social media
      Optimize your social profiles and gaining followers
      Write emails to guests, sponsors, and collaborators that get a yes
      ChatGPT for video creators: YouTube, TikTok, Instagram and more
      Write hooks that stop the scroll, increase watch time, and grow your audience
      Produce engaging TikTok scripts in less time
      Boost your virality with ChatGPT
      Write an engaging YouTube script
      Write an SEO-friendly YouTube video description
      Create attention-grabbing thumbnails
      ChatGPT for podcasters
      Research your podcast guest using ChatGPT
      Generate open-ended questions that make your interviews more interesting
      Write an intro and outro that pulls your audience in and makes them hit subscribe
      Advanced tips for content creators using ChatGPT
      Bulk create for your always-on content
      AIPRM Chrome extension for more advanced prompts
      Automation for no-touch task management
      Train ChatGPT to follow tried-and-true formulas
      ChatGPT is your AI intern
      Start editing audio & video
      This makes the editing process so much faster. I wish I knew about Descript a year ago.
      Matt D., Copywriter
      Sign up

      By now, you’ve probably heard of ChatGPT — everyone's saying it'll revolutionize the way creators make content. It can write blog posts, emails, press releases, interview questions, scripts…the list goes on. There are many ways creators can use ChatGPT to remove guesswork, improve their workflows, and grow their audience. You just need the right prompts. Think Mad Libs, but for content production. 

      In this article, we'll give you more than 100 prompts and advanced workflows for podcast and video production, including scriptwriting, storyboarding, content planning, social networking, email composing — basically, all the stuff you have to do before you do the stuff you get to do. That's what AI is there for.

      One caveat: ChatGPT has some limitations you should be aware of. First, it can’t verify facts, so you need to fact-check any research it does for you. Second, its training data stops in 2021, so it’s unaware of current events or trends. 

      Knowing that, there’s a whole lot ChatGPT can do. So let’s start doing it. Click the links below to jump to that section in the article.

    20. Speed up your creative workflow
    21. Grow your following, get guests, and build an audience
    22. ChatGPT for video creators: YouTube, TikTok, Instagram and more
    23. ChatGPT for your podcast
    24. Advanced tips

    Words to get you started

    The following prompts are simple enough — just fill in the blanks and you’re off to the races. But for times when filling in the blanks isn’t so simple, here are a few suggestions. Whenever you need a word to describe a tone or writing style, check out the Feelings Wheel for an organized list of emotion words. 

    And here’s a chart of verbs you can use at the start of your prompts. 

    image

    Sp‎eed up your creative workflow

    Everything begins with the written word. Before you start shooting video or checking mic levels, you have to get the ideas on paper — a roadmap to give you direction. ChatGPT can help with that. 

    Brainstorming with ChatGPT

    The best prompts are specific and include details about your audience. 

    As an example, I looked at YouTuber Susi Vidal, better known for Only Pans on TikTok with 3.4 million followers. Vidal is “trying to make cooking fun,” so let’s give her some recipes. 

    • Prompt: “Can you provide me with some [topic] ideas for [niche] food for [demographic] who are [skill level]?”

    image

    Not bad. But there’s more nuance you can give ChatGPT to get more interesting results. 

    Use “act as” or “you are a” to add depth and context based on specific roles

    • Prompt: "Act as [famous person/job title]. Give me [number] ideas to improve [activity] to reach [goal].” 
    • Prompt: “You are a [job title] of [workplace]. How do you achieve [goal] on [platform]?"

    Prioritize odd and peculiar ideas in a list

    • Prompt: “Give some uncommon strategies that [industry, person] can use to [goal] on [platform].”

    Iterate on those uncommon ideas and have a chat with GPT

    • Prompt: “Explain how to [idea] to achieve [goal] on [platform].”

    Create a concise and snappy Twitter thread instantly

    • Prompt: “Create a Twitter thread from [idea #]. [Do/do not] include hashtags.”

    Keep going until you’re satisfied

    You can also combine all of the above tactics to dig deeper into the idea. ChatGPT is meant to be a “chat” function where you give it information and iterate on what it provides. 

    1. Prompt: “Act as [title] of [profession] doing [goal].”
    2. Prompt: “Act as [title] of [profession] doing [goal] + uncommon ideas only.”
    3. Prompt: “Make a list of 5 [idea] types of [root idea] that were viral in the past.”
    4. Prompt: “Give me 10 more examples.” 
    Read more: How to use ChatGPT to improve your creative process

    Now that you’ve got a healthy list of ideas, let’s create a content calendar around your core topic. 

    Create a content calendar with ChatGPT

    Instead of counting calendar days to determine when you should publish what, ask ChatGPT to create a publishing schedule for you.

    • Prompt: “Can you create a content calendar for the next [month/quarter/year] that includes [specific number] of blog posts, [specific number] of 60-second social media videos, [specific number] of 5-7 minute videos, and [specific number] of email newsletters?” 

    Generate outlines to get started on your content faster

    Writing is easier with a well-structured outline in place. To cover the ideas and topics you care about, give ChatGPT relevant keywords, questions, and ideas you want to cover.

    • Prompt: "I'm writing a newsletter/blog post on [topic] and would like an outline that includes [idea/subtopic 1], [idea/subtopic 2], [idea/subtopic 3], and [idea/subtopic 4]. Can you also suggest some related topics that I can cover in the post? Please ensure that the outline includes [specific detail] and [specific detail] to provide the reader with valuable insights. I'm looking for [adjective] ideas that will capture the reader's attention and keep them engaged throughout the post."

    You can use one of the outline’s headings as a prompt and ask it to build each paragraph. 

    • Prompt: “Write me a paragraph on [insert heading]. Open with a [non-obvious/obvious/bold/counterintuitive/argumentative] statement, and develop this idea with evidence with links to sources. Then, summarize the content while transitioning into the next paragraph for [insert next heading].” 

    Write first drafts of blogs in minutes 

    You can also bypass the outline altogether and just ask ChatGPT to take the first crack at the article.

    • Prompt: “Can you write a [number]-word article about [topic], outlining the [benefits] of [product] for [reader/audience/persona]?”
    • Prompt: "Write a blog post about the impact of [specific event/news] on [specific industry or community]."
    • Prompt: "Write a blog post about the key takeaways from [insert book/article] and how they can be applied to [insert industry/field]."
    • Prompt: “Can you write a blog post arguing [for/against][subject] from the perspective of [person]? Before you do so, state the benefits of reading the blog post.”
    • Prompt: "Write a blog post about some common misconceptions about [insert topic] and how they can be corrected."
    • Prompt: "Write an explanatory blog about the process of [specific task or project] and include tips on how to do it efficiently."
    • Prompt: “Can you write a [number]-word article with a [professional/emotional/exciting/fun] tone that explains the benefits of [topic] for [reader]? The article should start by using the PAS formula to compel the reader to read the whole article, and include a call to action in the last paragraph mentioning [offer].”
    • Prompt: "Write a blog post that gives an overview of the advantages of [specific activity or hobby]. Provide [tips/insights/mistakes/lessons/etc.] and a list of the recommended equipment to get started."

    ChatGPT isn’t the greatest writer — it’ll probably produce something that’s thin on substance and thick with fluff. Your job is to update it with research and tweak it to match your writing style and brand voice. 

    Fine-tune your writing to match your voice and engage readers

    • Prompt: "Voice and style guide: Write at a [grade/degree] level. Use [clear/simple/difficult/elaborate] language. Bias toward short sentences. Avoid [jargon, acronyms etc.]."
    • Prompt: "[insert text] Rewrite my writing in a more [formal/funny/serious/sarcastic/optimistic/pessimistic/lighthearted] way.”
    • Prompt: “[insert text] Rewrite the text for readers with [education level].”
    • Prompt: "Format your response using markdown. [Use headings, subheadings, bullet points, and bold to organize the information etc.]."
    • Prompt: “Rewrite the text to be more [concise/emphatic/humorous/descriptive/persuasive/informative/action-oriented].”
    • Prompt: "Rewrite the text emulating [Ernest Hemingway, Daniel Kahneman, J.R.R. Tolkien]’s writing style."

    Generate a variety of headlines and select your favorite 

    • Prompt: "Write [number] headlines for an article on [topic] for [audience]."
    • Prompt: [paste article/podcast or video transcript] Based on this content, give me [number] headlines for [audience]. Use [keyword].” 

    You can get even better headlines for your blog or YouTube videos by giving the AI more context. Try building your ChatGPT prompt for any headline with these elements:

    Who: This is your audience. Give ChatGPT demographics, psychographics or job titles. 

    What: This should be a noun like tips, reasons, mistakes, lessons, examples, templates, etc. 

    Why: This is the reason or outcome your audience wants, like getting promoted, learning something new, living a happier life, etc. 

    The topic or industry you’re targeting. 

    The parameters around character limits. 

    • YouTube has a 100-character limit but the best titles, those that display on all devices, are 60–70 characters. 
    • Google’s max character length is 600 pixels or about 60 characters. 
    • Facebook ad headlines give you 40 characters. 
    • LinkedIn’s viewable text before the “see more” button is 210. 
    • Instagram truncates captions to 125 characters. 

    Knowing all that, here are some prompts you can use to get headlines almost instantly.

    • Prompt: “[Paste blog/transcript] Using the above, write [number] click-worthy headlines for [who] that provide [what] and [why] for [topic/industry]. Limit your character count to [number].”
    • Prompt: “Write [number] headlines for [audience/persona/job title] that provides [tips/tricks/mistakes/lessons/examples about topic] and what the outcome or benefit will come from reading.”

    Speed up your research (and a verification hack)

    ChatGPT is a good first step in your research, but it shouldn’t be the last. That’s because the AI doesn’t have any information newer than 2021, and it can also make things up entirely. Still, feel free to use the following prompts, then double-check ChatGPT’s work with the trick below.

    • Prompt: "Give me some [adjective like fun/interesting/scary] facts and statistics about [topic] that [demographic audience] needs to know."
    • Prompt: "What are the best [methods/process/frameworks] that will help [the audience] solve [problem]? Include sources and links."
    • Prompt: "Tell me about the history of [topic] as it relates to [secondary topic]. Limit your explanation to the 20th century."

    To fact-check quickly: If you use Google Docs, you can highlight the stats and facts in your copy and hit “CMD+K” on a Mac (“Windows Key+K” on a PC). It will quickly pull up the closest matching web result for the stat, which you can read to find the latest evidence. 

    ------------------------------------

    Prompt Modifiers

    1. “Formal,”
    2. “Informal”
    3. “Short”
    4. “Long”
    5. “Generate”
    6. “Write XX words”
    7. “Act as a <insert job title>”
    8. “Make a table of”
    9. “How do I create”
    10. “List <insert number> ways”
    11. “How can you effectively”
    12. “Create a bullet list of”
    13. “What techniques can I use”
    14. “Explain the importance of”
    15. “Can you devise”
    16. “Suggest tools I can use”
    17. “Scan the following text for”
    18. “Look for errors in”
    19. “How can I optimize”
    20. “Can you recommend any”
    21. “What would be the most beneficial approach to”
    22. “Is there any way to simplify”
    23. “How can I make <insert phrase> faster”
    24. “Include <insert keyword> in this blog post”
    25. “Are there any tips or tricks I can use for”
    26. “Write a post specifically for”


    Prompt Adjectives

    1. “Lively”
    2. “Compelling”
    3. “Engaging”
    4. “Creative”
    5. “Informative”
    6. “Funny”
    7. “Scary”
    8. “Thrilling”
    9. “Inspiring”
    10. “Heartwarming”
    11. “Stunning”
    12. “Beautiful”
    13. “Charming”
    14. “Confident”
    15. “Trustworthy”
    16. “Intelligent”
    17. “Friendly”
    18. “Easygoing”
    19. “Calm”
    20. “Sincere”
    21. “Romantic”
    22. “Sensitive”
    23. “Passionate”
    24. “Powerful”
    25. “Motivated”
    26. “Logical”
    27. “Joyful”
    28. “Relaxed”
    29. “Knowledgeable”
    30. “Bold”

     

     

No comments:

Post a Comment

Excuses--Cognitive dissonance--Self Honesty

    The reason why animal sacrifices have stopped is because of the destruction of Jerusalem and the temple by the Romans in the first cen...