Share your GPT-3 prompts and learn from others.
If you've had a chance to play with the API, you'll have noticed that it's so powerful that it can be hard to understand the boundaries of its capabilities. GPT-3 hunt is a place for everyone to share their prompts and params, so that we can figure this out together.
GPT-3 Authors A Python Function To Check If A String Is A Palindrome
by minimaxir
Function definition for checking for a palendrome in Python. Inspired by the GPT-3 demo at Build 2020, however this model is not finetuned on GitHub so results will vary. (it gets the idiom mostly correct!)
Prompt
def is_palendrome(s):
"""Check whether a string is a palindrome"""
Output
s = s[::-1]
return s == s[::-1]
GPT-3 Writes SQL
by Faraaz Nishtar
I got GPT-3 to start writing my SQL queries for me p.s. these work against my *actual* database!
Output example
GPT-3 Powered Search Engine
by Paras Chopra
I made a fully functioning search engine on top of GPT3. For any arbitrary query, it returns the exact answer AND the corresponding URL. Look at the entire video. It's MIND BLOWINGLY good. cc: @gdb @npew @gwern
Output example
GPT-3 Writes Tailwind CSS
by Zoli Szőgyényi
Thanks to @gdb I had the occasion to play around with @OpenAI 's GPT-3 and I'm amazed! I built a @tailwindcss code generator and the results are quite spectacular. There's still much work to do, but it looks promising! You can sign up at http://gpt-tailwind.com for early access.
Output example
GPT-3 Creates React Components
by Harley Turan
Here's GPT-3 generating React components based on a _variable name_ alone, using the @OpenAI API.
Output example
GPT-3 Powers Chat Bots
by Jordan Singer
Made a GPT-3 messages app in SwiftUI to chat with interesting people

Output example
GPT-3 Powered Mood Tracker
by Sharif Shameem
GPT-3 likes emojis too.
Output example
GPT-3 Builds a Keras Model
by Matt Shumer
AI INCEPTION! I just used GPT-3 to generate code for a machine learning model, just by describing the dataset and required output. This is the start of no-code AI.
Output example
GPT-3 Generates a Dice Component
by Sharif Shameem
Wow. I built a React dice component with GPT-3. This feels far more fun than writing JSX.
Output example
GPT-3 Turns Text Into Linux Extensions
by Shawn Wilkinson
Been playing with @OpenAI #gpt3 and its the coolest thing ever! Came up with
Output example
GPT-3 Generated JSX
by Sharif Shameem
This is mind blowing. With GPT-3, I built a layout generator where you just describe any layout you want, and it generates the JSX code for you. W H A T
Output example
GPT-3 Powered AWS Instance Management
by Suhail CS
@gdb @smdcmc @awscloud When GPT-3 Meets DevOps 😉 ** create, deploy, list, and delete any services on AWS using conversational plain English ** Bootstrapped with @sh_reya's gpt-3 sandbox 💕 Working on a end-end pipeline with @snpranav #OpenAI #GPT3 #DevOps #AWS
Output example
GPT-3 Writes AWS Lambda Functions
by Aleksandar Simovic
@slobodan_ @Werner well... just primed GPT-3 to understand how to write an AWS Lambda 🤯 AWS Serverless + OpenAI GPT-3
Output example
Code Oracle
by Amjad Masad
Reading code is hard! Don't you wish you could just ask the code what it does? To describe its functions, its types. And maybe... how can it be improved?
Output example
GPT-3 Creates a Chat App
by Amjad Masad
I feel like one thing hasn't been talked about with @OpenAI GPT-3 is the developer experience. Watch me build a chat app from scratch (and have an awkward convo with the AI) in @Replit:
Output example
GPT-3 React App
by Sharif Shameem
I just built a *functioning* React app by describing what I wanted to GPT-3. I'm still in awe.
Output example
GPT-3 Generated Website Templates
by Sharif Shameem
Here's a sentence describing what Google's home page should look and here's GPT-3 generating the code for it nearly perfectly.
Output example
GPT-3 To-Do List App
by Sharif Shameem
I built a todo list app simply by describing it to GPT-3. It generated the React code for a fully functioning app within seconds. I'm becoming more impressed and aware of its capabilities every single day.
Output example
GPT-3 Completes Kubernetes YAML Files
by /u/GhostManaged
Kubernetes YAML manifest building tasks, as proposed by /u/GhostManaged on Reddit.
Prompt
Input: expose wordpress on port 80
Output:
apiVersion: v1
kind: Service
metadata:
name: wordpress-service
spec:
selector:
app: wordpress
ports:
- protocol: TCP
port: 80
Input: deploy wordpress with 2 replicas
Output:
apiVersion: apps/v1
kind: Deployment
metadata:
name: wordpress-deployment
labels:
app: wordpress
spec:
replicas: 3
selector:
matchLabels:
app: wordpress
template:
metadata:
labels:
app: wordpress
spec:
containers:
- name: wordpress
image: wordpress:3.5.0
ports:
- containerPort: 80
Input: deploy Elasticsearch
Output:
Output
apiVersion: apps/v1
kind: Deployment
metadata:
name: elasticsearch-deployment
spec:
replicas: 2
selector:
matchLabels:
app: elasticsearch
template:
metadata:
labels:
app: elasticsearch
spec:
containers:
- name: elasticsearch
image: elasticsearch:2.3.2
apiVersion: v1
kind: Service
metadata:
name: elasticsearch-service
spec:
selector:
app: elasticsearch
ports:
- protocol: TCP
port: 9200
Input: expose elasticsearch on port 9200
Output:
apiVersion: v1
kind: Service
metadata:
name: elasticsearch-service
spec:
selector:
app: elasticsearch
ports:
- protocol: TCP
port: 9200
Input: deploy elasticsearch with 2 replicas
Output:
apiVersion: apps/v1
kind: Deployment
metadata:
name: elasticsearch-deployment
spec:
replicas: 2
selector:
matchLabels:
app: elasticsearch
template:
metadata:
labels:
app: elasticsearch
spec:
containers:
- name: elasticsearch
image: elasticsearch:2.3.2
apiVersion: v1
kind: Service
metadata:
name: elasticsearch-service
spec:
selector:
app: elasticsearch
ports:
- protocol: TCP
port: 9200
GPT-3 Writes Landing Page copy
by Paras Chopra
Is GPT-3 better than humans @ writing copy? Launching a competition between human copywriters & @VWO's new AI that generates suggestions for website headlines, descriptions and buttons (via OpenAI's GPT-3 API) Participate & get access to AI: https://vwo.com/ab-testing-openai-gpt-3/
Output example
Want more?
Get the most interesting examples in your inbox, weekly