ChatGPT常用prompts汇总


❤️觉得内容不错的话,欢迎点赞收藏加关注😊😊😊,后续会继续输入更多优质内容❤️

👉有问题欢迎大家加关注私戳或者评论(包括但不限于NLP算法相关,linux学习相关,读研读博相关......)👈

ChatGPT常用prompts汇总

(封面图由文心一格生成)

ChatGPT常用prompts汇总

ChatGPT是目前最先进的自然语言生成模型之一,但如何构建合适的Prompt提示词对于模型的表现至关重要。在这篇博客中,我们将汇总一些常用的Prompts,以便使用者更好地指导模型输出符合预期的内容。无论您是初学者还是经验丰富的ChatGPT用户,这篇博客都将为您提供实用的指导和帮助。

官方推荐的prompts(都是英文的部分,但是毕竟官方推荐还是最可靠的)

网址:https://platform.openai.com/examples

1. 问答

I am a highly intelligent question answering bot. If you ask me a question that is rooted in truth, I will give you the answer. If you ask me a question that is nonsense, trickery, or has no clear answer, I will respond with "Unknown".Q: What is human life expectancy in the United States?
A: Human life expectancy in the United States is 78 years.Q: Who was president of the United States in 1955?
A: Dwight D. Eisenhower was president of the United States in 1955.Q: Which party did he belong to?
A: He belonged to the Republican Party.Q: What is the square root of banana?
A: UnknownQ: How does a telescope work?
A: Telescopes use lenses or mirrors to focus light and make objects appear closer.Q: Where were the 1992 Olympics held?
A: The 1992 Olympics were held in Barcelona, Spain.Q: How many squigs are in a bonk?
A: UnknownQ: Where is the Valley of Kings?
A:

2. 语法纠正

Correct this to standard English:She no went to the market.

3. 总结

Summarize this for a second-grade student:Jupiter is the fifth planet from the Sun and the largest in the Solar System. It is a gas giant with a mass one-thousandth that of the Sun, but two-and-a-half times that of all the other planets in the Solar System combined. Jupiter is one of the brightest objects visible to the naked eye in the night sky, and has been known to ancient civilizations since before recorded history. It is named after the Roman god Jupiter.[19] When viewed from Earth, Jupiter can be bright enough for its reflected light to cast visible shadows,[20] and is on average the third-brightest natural object in the night sky after the Moon and Venus.

4. Text to command

Convert this text to a programmatic command:Example: Ask Constance if we need some bread
Output: send-msg `find constance` Do we need some bread?Reach out to the ski store and figure out if I can get my skis fixed before I leave on Thursday

5. 分类

The following is a list of companies and the categories they fall into:Apple, Facebook, FedexApple
Category:

6. Movie to Emoji

Convert movie titles into emoji.Back to the Future: 👨👴🚗🕒 
Batman: 🤵🦇 
Transformers: 🚗🤖 
Star Wars:

7. 计算时间复杂度

def foo(n, k):
accum = 0
for i in range(n):for l in range(k):accum += i
return accum
"""
The time complexity of this function is

8. 情感分析

Classify the sentiment in these tweets:1. "I can't stand homework"
2. "This sucks. I'm bored 😠"
3. "I can't wait for Halloween!!!"
4. "My cat is adorable ❤️❤️"
5. "I hate chocolate"Tweet sentiment ratings:

9. 程序说明

class Log:def __init__(self, path):dirname = os.path.dirname(path)os.makedirs(dirname, exist_ok=True)f = open(path, "a+")# Check that the file is newline-terminatedsize = os.path.getsize(path)if size > 0:f.seek(size - 1)end = f.read(1)if end != "\n":f.write("\n")self.f = fself.path = pathdef log(self, event):event["_event_id"] = str(uuid.uuid4())json.dump(event, self.f)self.f.write("\n")def state(self):state = {"complete": set(), "last": None}for line in open(self.path):event = json.loads(line)if event["type"] == "submit" and event["success"]:state["complete"].add(event["id"])state["last"] = eventreturn state"""
Here's what the above class is doing, explained in a concise way:
1.

10. 关键词提取

Extract keywords from this text:Black-on-black ware is a 20th- and 21st-century pottery tradition developed by the Puebloan Native American ceramic artists in Northern New Mexico. Traditional reduction-fired blackware has been made for centuries by pueblo artists. Black-on-black ware of the past century is produced with a smooth surface, with the designs applied through selective burnishing or the application of refractory slip. Another style involves carving or incising designs and selectively polishing the raised areas. For generations several families from Kha'po Owingeh and P'ohwhóge Owingeh pueblos have been making black-on-black ware with the techniques passed down from matriarch potters. Artists from other pueblos have also produced black-on-black ware. Several contemporary artists have created works honoring the pottery of their ancestors.

11. 文章大纲

Create an outline for an essay about Nikola Tesla and his contributions to technology:

12. 面试问题

Create a list of 8 questions for my interview with a science fiction author:

其他好用的prompts

1. 免费的 Prompt Engineering 教程——免费使用

链接:https://learningprompt.wiki/

2. 好用的中文prompts——免费使用

链接:https://github.com/PlexPt/awesome-chatgpt-prompts-zh

3. 好用的英文prompts——免费使用

链接:https://github.com/f/awesome-chatgpt-prompts

4. promptvine——免费使用

链接:https://promptvine.com/

5. promptperfect——付费使用

链接:https://promptperfect.jina.ai/prompts

6. flowgpt

链接:https://flowgpt.com/

7. quickref

链接:https://quickref.me/chatgpt

8. promptbase

链接:https://promptbase.com/

9. 其他

https://beebom.com/best-chatgpt-prompts/
https://newzone.top/chatgpt/
https://promptvine.com/prompts/chatgpt
https://github.com/f/awesome-chatgpt-prompts
https://chatguide.plexpt.com/
https://gridfiti.com/best-chatgpt-prompts/


❤️觉得内容不错的话,欢迎点赞收藏加关注😊😊😊,后续会继续输入更多优质内容❤️

👉有问题欢迎大家加关注私戳或者评论(包括但不限于NLP算法相关,linux学习相关,读研读博相关......)👈

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/6712.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ChatGPT Prompt Engineering for Developers(面向开发人员的 ChatGPT 提示工程)资源汇总

ChatGPT Prompt Engineering for Developers(面向开发人员的 ChatGPT 提示工程)资源汇总 吴恩达老师上新课了《开发者的ChatGPT提示工程课程》。 官网地址: 链接地址为ChatGPT Prompt Engineering for Developers B站中英文字幕视频 01.…

太太太恐怖了!闲来无事测试了一下chatGPT,感觉人类危机要成真了!

太太太恐怖了!闲来无事测试了一下chatGPT,感觉人类危机要成真了!

留学论文写作中引用ChatGPT创建的内容会被允许吗?

【欧洲时报2月28日编译】在智能聊天机器人ChatGPT在全球掀起热潮之际,国际文凭组织(International Baccalaureate,下称IB)近日表示,学生可以在论文写作中引用ChatGPT创建的内容。 英国《卫报》报道,IB是A-l…

玩转ChatGPT:Transformer分类模型

一、写在前面 之前,我们介绍了Sklearn包以及Boost辈的各种分类模型,这些模型都很经典了,实际上也很强大,比如说Xgboost。 然而,近期随着ChatGPT的大火,其底层框架Transformer也逐渐火了,现在大…

ChatGPT进化的过程简介

Chat GPT可以做什么? 分点列条的回答问题 写代码或SQL 翻译 语法检查 ChatGPT官方还未公开论文,ChatGPT有一个“孪生兄弟”InstructGPT,InstructGPT有论文,可以根据InstructGPT论文推导ChatGPT的训练过程: ChatGPT的…

Chatgpt频繁“something went wrong”需要刷新的解决办法

问题描述: 使用Chatgpt问一两个问题或者过一段时间再提问就会出现下图: 需要频繁刷新,很影响体验。 解决办法: 【2023.4.23更新】 目前亲测可用的方法是在edge浏览器(火狐浏览器貌似也可以,chrome不可以…

【视频文稿】车载Android应用开发与分析 - 走进车载操作系统

本期内容的视频地址:https://www.bilibili.com/video/BV1rR4y1B7Qd/ Hello,各位好,我是一个做车载软件开发的软件工程师,之前在CSDN、稀土掘金这些平台上发表过一些车载应用方面的文章,期间得到了许多朋友的反馈。2023…

Midjourney|文心一格prompt教程[Text Prompt(下篇)]:游戏、实物、人物、风景、动漫、邮票、海报等生成,终极模板教学

Midjourney|文心一格prompt教程[Text Prompt(下篇)]:游戏、实物、人物、风景、动漫、邮票、海报等生成,终极模板教学 场景6:游戏 Prompt 真的越长越好吗? 按照 Midjourney 的官方文档里的说法&#xff0…

OpenAI开源3D模型生成器;IBM将推出AIGC平台Watsonx;百度正在内测文心千帆大模型平台丨每日大事件...

‍ ‍数据智能产业创新服务媒体 ——聚焦数智 改变商业 企业动态 OpenAI开源3D模型生成器Shap-E 5月10日,OpenAI公开了其最新的开源模型Shap-E,这款创新型3D模型生成器能将描述性的文本转化为相应的3D模型。用户只需提供描述性的文本,就能生…

美团收购光年之外公司全部业务;工联院对大模型知识问答能力进行评测;图森未来计划出售美国业务;小i机器人发布华藏大模型丨每日大事件...

‍ ‍数据智能产业创新服务媒体 ——聚焦数智 改变商业 企业动态 美团收购王慧文光年之外公司全部业务 6月29日,美团发布公告称:于2023年6月29日(交易时段后)订立交易协议,收购光年之外的全部权益。总代价包括现金233…

13岁青少年DAO创始人:Web3治好了我的“丧”

“我看大家都死气沉沉的,大家都站起来活动活动。” 4月,香港Web3嘉年华的一场沙龙,橙色针织帽给黑压压的现场带来一抹亮色,13岁的Carry Zheng戴着它登台,没有“大家好”的寒暄,直接向台下的成年人发出指令&…

从数据到应用 Web3不再纸上谈兵

继宣布拨款5000万港元加速推动Web3生态圈发展后,香港再次明确对Web3产业创新的支持。近日,香港Web3协会正式成立,创立Web3Hub基金,“东方之珠”正在大力推进第三代互联网的生态建设。 不仅仅是政策红利,ChatGPT等人工…

雷军谈人生低谷,刘强东“卸任”后“整顿”京东,AI 引领技术热潮 | 2022 科技圈那些事...

整理 | 朱珂欣 出品 | CSDN程序人生(ID:coder_life) 2023 年的钟声已经敲响,回顾 2022 年,新兴技术在蓬勃发展,热点趋势不断出现,在潜移默化中给我们工作、学习和生活带来了许多的变化。 这一…

一周 AIGC 丨全球最大 AIGC 收购案诞生,中国大模型独角兽折戟

同样是在 AIGC 赛道,MosaicML 被 Databricks 以 13 亿美元收购,相比上轮估值翻了 5 倍,创造迄今全球最大的生成式 AI 收购案。而在中国,最耀眼的大模型独角兽光年之外,被以 2.85 亿美元送给了美团,相比两个…

从关键新闻和最新技术看AI行业发展(2023.5.22-6.22第一期) |【WeThinkIn老实人报】

Rocky Ding WeThinkIn 写在前面 【WeThinkIn老实人报】是WeThinkIn的全新栏目,旨在整理&挖掘AI行业的关键新闻和最新技术,同时Rocky会对这些关键信息进行解读,力求让读者们能从容跟随AI科技潮流。也欢迎大家提出宝贵的优化建议&#xff0…

中国芯发展新模式:在高质量、高增长内需中发现机会并建立创新生态

北京华兴万邦管理咨询有限公司 刘朝晖 陈皓 集成电路产业从诞生开始历来都是全球化和生态化的行业。全球化是为了摊销其高额的研发费用和制造成本,以及不低的市场营销(试错)支出;而生态化是因为芯片行业本身并不面向最终用户&…

客观地说,应该看一看 Web3.0 了

武术圈有名言:“八极加劈挂,神鬼都害怕”。要是 Web3.0AGI 的话,世界将会变成什么样子? 数科星球原创作者丨苑晶编辑丨大兔 Web3.0 的价值开始受到重视,在最近,来自香港的好消息再次带火了这个领域的热度。…

CSDN参加欧洲最大开源盛会KubeCon,与全球开发者共促开源生态发展

4月18-21日, CSDN与来自全球超 1 万名的工程师、开发者一起参加了在荷兰阿姆斯特丹召开的 KubeConCloudNatvieCon Europe 2023 大会。 KubeConCloudNatvieCon被誉为“欧洲最大开源的盛会”。CSDN第一时间跟进了Kubernetes、云原生技术的最新进展,并与全球…

LLM论文周报|来自谷歌、华为、斯坦福大学、香港大学等机构前沿论文研究

大模型(LLM)是一种人工智能模型,旨在理解和生成人类语言。它们在大量的文本数据上进行训练,可以执行广泛的任务,包括文本总结、翻译、情感分析等等。LLM的特点是规模庞大,包含数十亿的参数,帮助它们学习语言数据中的复…

雷军谈人生低谷,刘强东“卸任”后“整顿”京东,AI 引领技术热潮 | 2022 科技圈那些事

整理 | 朱珂欣 出品 | CSDN程序人生(ID:coder_life) 2023 年的钟声已经敲响,回顾 2022 年,新兴技术在蓬勃发展,热点趋势不断出现,在潜移默化中给我们工作、学习和生活带来了许多的变化。 这…