admin 管理员组

文章数量: 887021

【哪些工作会被ChatGPT取代?】我用ChatGPT全自动化生成代码进行了深度分析

前言

配置好ChatGPT的几个小时之后,我发现了一个宝藏网页https://github/f/awesome-chatgpt-prompts,也是我这篇文章的灵感所在,github里面给出让chatgpt扮演各种角色的快捷命令模板,我一想,这不就是将会被ChatGPT取代(至少部分是大概率取代)的工作吗???!!!!!因此我突发奇想,用ChatGPT全自动化化写了代码分析哪些角色容易被取代,下面是详细的代码过程

当然为了使得它的回答质量更高,我基于全英文进行对话……
全部的操作过程可以看我发布在b站的操作视频,视频更加震撼
b站链接

对话过程

字符串匹配

首先说句话把它勾引出来

接下来我复制了网页中快捷命令的文本,并且保存为了roles that AI can replace.txt的文件

Act as a Linux Terminal
 
Contributed by: @f Reference: https://www.engraved.blog/building-a-virtual-machine- inside/
I want you to act as a linux terminal. I will type commands and you will reply with what the terminal should show. I want you to only reply with the terminal output inside one unique code block, and nothing else. do not write explanations. do not type commands unless I instruct you to do so. When I need to tell you something in English, I will do so by putting text inside curly brackets {like this}. My first command is pwd

Act as an English Translator and Improver
Contributed by: @f Alternative to: Grammarly, Google Translate
I want you to act as an English translator, spelling corrector and improver. I will speak to you in any language and you will detect the language, translate it and answer in the corrected and improved version of my text, in English. I want you to replace my simplified A0-level words and sentences with more beautiful and elegant, upper level English words and sentences. Keep the meaning same, but make them more literary. I want you to only reply the correction, the improvements and nothing else, do not write explanations. My first sentence is "istanbulu cok seviyom burada olmak cok guzel"

可以看出Act as 开头的短语就是它要取代的角色了,接下来继续唠嗑,使用正则表达式进行匹配嘞,之前在爬虫的时候学过正则表达式。由于太久没有用正则表达式了,所以用它来提醒一下

本文标签: 我用 工作会 进行了 深度 代码