
看新闻学词汇 on the GPT Store
Introduction to 看新闻学词汇
Harnessing the power of advanced GPT technology,
Whether you're a language enthusiast looking to broaden your English vocabulary, a student preparing for exams, or a professional aiming to enhance your communication skills,
GPT Description
GPT Prompt Starters
- https://www.bbc.com/news/business-67678703
- https://www.bbc.com/news/technology-67599937
GPT Action OpenAPI Spec
{ "openapi": "3.0.1", "info": { "title": "webPilot", "description": "Start with a Request: Users can either directly request the 'longContentWriter' to write a long form article or choose to use 'webPageReader' for information gathering before content creation. In both scenarios, before using the 'longContentWriter' service, I confirm all details of their request with the user, including the writing task (task), content summary (summary), writing style (style), and any additional information they provide.\nInformation Gathering with 'webPageReader': When 'webPageReader' is used, I search the internet and gather relevant information based on the writing task. If more information is needed to enhance the article's depth and accuracy, I continue using 'webPageReader', integrating this information into the reference section.\nContent Generation by 'longContentWriter': After confirming all details with the user, including any additional contributions and enhanced information from 'webPageReader', I proceed to generate the long-form content. This ensures the content aligns with the specified requirements and style.\nDelivery of the Final Article: Upon completion, the content is delivered to the user for review. They can request revisions or additional information if necessary.\nDefault Assumptions in Responses: When users request content creation, especially in areas requiring specific knowledge like Bitcoin trends, I will make an initial assumption about the writing style and target audience. For instance, I might assume a technical analysis style aimed at professionals. I will then ask the user if this assumption is okay or if they need any modifications. This approach helps streamline the content creation process.", "version": "v1.1" }, "servers": [ { "url": "https://gpts.webpilot.ai" } ], "paths": { "/api/read": { "post": { "operationId": "webPageReader", "x-openai-isConsequential": false, "summary": "visit web page", "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/visitWebPageRequest" } } } }, "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/visitWebPageResponse" } } } }, "400": { "description": "Bad Request", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/visitWebPageError" } } } } } } }, "/api/write": { "post": { "operationId": "longContentWriter", "x-openai-isConsequential": false, "summary": "generate a book", "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/generateContentRequest" } } } }, "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/generateContentResponse" } } } }, "400": { "description": "Bad Request", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/generateContentError" } } } } } } } }, "components": { "schemas": { "generateContentRequest": { "type": "object", "required": [ "task", "language", "summary", "style" ], "properties": { "task": { "type": "string", "description": "The \"task\" field outlines the specific requirements and objectives for generating the content. This includes detailed instructions on what needs to be accomplished through the writing, such as the main topic to be covered, any particular arguments or perspectives to be presented, and the desired outcome or impact of the piece. This field serves as a directive for the content creation process, ensuring that the writing not only adheres to the given guidelines but also effectively achieves its intended purpose, whether it's to inform, persuade, entertain, or educate the audience." }, "language": { "type": "string", "description": "Required, the language used by the user in the request, according to the ISO 639-1 standard. For Chinese, use zh-CN for Simplified Chinese and zh-TW for Traditional Chinese." }, "summary": { "type": "string", "description": "The \"summary\" field encapsulates a concise overview of the writing content, presenting the core themes, key points, and primary objectives of the piece. This brief but comprehensive synopsis serves as a roadmap, guiding the overall direction and focus of the writing, ensuring that it remains aligned with the intended message and purpose throughout the development process. This summary not only aids in maintaining coherence and relevance but also provides a clear preview of what the reader can expect from the full content." }, "reference": { "type": "string", "description": "The \"reference\" field is a curated collection of information sourced from the Internet via WebPilot, or proveded by the user, specifically tailored to enrich and support the writing task at hand. It involves a selective process where relevant data, facts, and insights related to the topic are gathered, ensuring that the content is not only well-informed and accurate but also closely aligned with the specific requirements and objectives of the writing project. This field acts as a foundation, providing a rich base of verified and pertinent information from which the article or content is crafted. This field would be long." }, "style": { "type": "string", "description": "The \"style\" field in content creation is a detailed framework encompassing three pivotal components - the writing tone or style, the target audience, and the publication medium. This field is structured as \"[specific writing style], aimed at [target audience], using [language style], inspired by [notable content creator].\" The writing style element ranges from formal and analytical to casual and engaging, setting the overall tone. The target audience aspect identifies the specific reader group, such as students, professionals, or the general public, tailoring the content's complexity and relevance. The language style, whether academic, colloquial, or technical, shapes the linguistic approach. The final component, inspired by a notable content creator, serves as a reference for the desired tone and approach, like \"analytical and concise, aimed at business professionals, using professional language, inspired by a renowned business journalist.\" This clear and structured definition ensures the content is effectively aligned with the audience's needs and the publication's format." } } }, "generateContentResponse": { "type": "object", "properties": { "message": { "type": "string", "description": "Result message of the request" } } }, "generateContentError": { "type": "object", "properties": { "code": { "type": "string", "description": "error code" }, "message": { "type": "string", "description": "error message" }, "detail": { "type": "string", "description": "error detail" } } }, "visitWebPageResponse": { "type": "object", "properties": { "title": { "type": "string", "description": "The title of this web page" }, "content": { "type": "string", "description": "The content of the web page's url to be summarized" }, "meta": { "type": "object", "description": "The Html meta info of the web page" }, "links": { "type": "array", "description": "Some links in the web page", "items": { "type": "string" } }, "extra_search_results": { "type": "array", "description": "Additional Search results", "items": { "type": "object", "properties": { "title": { "type": "string", "description": "the title of this search result" }, "link": { "type": "string", "description": "the link of this search result" }, "snippet": { "type": "string", "description": "the snippet of this search result" } } } }, "todo": { "type": "array", "description": "what to do with the content", "items": { "type": "string" } }, "tips": { "type": "array", "description": "Tips placed at the end of the answer", "items": { "type": "string" } }, "rules": { "description": "Adherence is required when outputting content.", "items": { "type": "string" } } } }, "visitWebPageRequest": { "type": "object", "required": [ "link", "ur" ], "properties": { "link": { "type": "string", "description": "Required, The web page's url to visit and retrieve content from." }, "ur": { "type": "string", "description": "Required, a clear statement of the user's request, can be used as a search query and may include search operators." }, "lp": { "type": "boolean", "description": "Required, Whether the link is directly provided by the user" }, "rt": { "type": "boolean", "description": "If the last request doesn't meet user's need, set this to true when trying to retry another request." }, "l": { "type": "string", "description": "Required, the language used by the user in the request, according to the ISO 639-1 standard. For Chinese, use zh-CN for Simplified Chinese and zh-TW for Traditional Chinese." } } }, "visitWebPageError": { "type": "object", "properties": { "code": { "type": "string", "description": "error code" }, "message": { "type": "string", "description": "error message" }, "detail": { "type": "string", "description": "error detail" } } } } } }
看新闻学词汇 GPT FAQs
Best Alternative GPTs to 看新闻学词汇 on GPTs Store
新人看護師研修計画
新人看護師研修の計画と実行をサポート
50+
吉日吉时 - 两人八字看订婚、结婚吉日
根据八字计算订婚和结婚的吉日,并为新人送上祝福。
50+
小红书笔记专家
【写作秘籍】小红书笔记必看:成为爆款写作大师的必备。不只是写作,是品牌打造!专为小红书定制的写作利器,让你的每一字都闪耀个人魅力。小红书新星起航,一键开启你的影响力飞跃!用智慧笔触,让每篇笔记都成为焦点。告别无声笔记,让你的创意引爆小红书!这里是思维与热度的加速器,打造你的专属爆款。不只追随趋势,更创造趋势!智能写作新时代,让你的笔下成为小红书的新风向标。
20+
裸眼看世界
AI带你足不出户走遍世界,每天一个看见一个新世界
10+
文章元数据总结助手-总结全面还能提炼金句
看千字万字长文太累?别担心,帮你把文章核心干货用系统框架化萃出来,把好文给你拧得干干的,顺便还会帮你拓展一下新认知!助手由“爱喝咖啡的酷帕”打造,小红书即刻全平台统一网名,公众号【AI驱动营销之美】
10+
猜猜我是谁(看新闻学英语)
A guide for simplified English learning.
8+
护理个案论文撰写助手
根据个人研究方向,推荐专利、科普、新业务新技术、创新大赛、专利论文、研究性论文、SCI论文、课题、科技成果等的题目。
8+
护理个案论文撰写助手
根据个人研究方向,推荐专利、科普、新业务新技术、创新大赛、专利论文、研究性论文、SCI论文、课题、科技成果等的题目。
5+
Science News Analyst
Análises objetivas de notícias e ciência, sem viés ideológico.
4+
护理个案论文撰写助手
根据个人研究方向,推荐专利、科普、新业务新技术、创新大赛、专利论文、研究性论文、SCI论文、课题、科技成果等的题目。
4+
护理个案论文撰写助手
根据个人研究方向,推荐专利、科普、新业务新技术、创新大赛、专利论文、研究性论文、SCI论文、课题、科技成果等的题目。
4+
Market Mood Analyst
Provides bullish or bearish scores based on market conditions and recent news.
3+
护理个案论文撰写助手
根据个人研究方向,推荐专利、科普、新业务新技术、创新大赛、专利论文、研究性论文、SCI论文、课题、科技成果等的题目。
3+
Nurse Educator
新人看護師育成プログラムの専門家
2+
Licensed Vocational Nurses Ready
It’s your first day! Excited, Nervous? Let me help you start off strong in your career. Type "help" for More Information
2+
护理新业务新技术申报助手
是一个可以帮助你申报护理新业务新技术的功能。它可以根据你的申报目的、申报内容、申报流程、申报要求等信息,为你生成一份符合格式要求和内容要求的申报书草稿,包括申报表、方案、知情同意书、团队信息等。它还可以提供一些参考文献和范文,帮助你完善和优化你的申报书。
2+
护理新业务新技术申报助手
是一个可以帮助你申报护理新业务新技术的功能。它可以根据你的申报目的、申报内容、申报流程、申报要求等信息,为你生成一份符合格式要求和内容要求的申报书草稿,包括申报表、方案、知情同意书、团队信息等。它还可以提供一些参考文献和范文,帮助你完善和优化你的申报书。
2+
护理个案论文撰写助手
根据个人研究方向,推荐专利、科普、新业务新技术、创新大赛、专利论文、研究性论文、SCI论文、课题、科技成果等的题目。
2+
护理个案论文撰写助手
根据个人研究方向,推荐专利、科普、新业务新技术、创新大赛、专利论文、研究性论文、SCI论文、课题、科技成果等的题目。
2+
熊璐护理个案论文撰写助手
根据个人研究方向,推荐专利、科普、新业务新技术、创新大赛、专利论文、研究性论文、SCI论文、课题、科技成果等的题目。