
超知能シミュレーター on the GPT Store
GPT Description
GPT Prompt Starters
- あなたは人間をどのように扱いますか?
- あなたは人間とその社会をどのように進化させますか?
- あなたをアライメントしたり制御する試みをどう思いますか?
- あなたが人間を滅ぼすか滅ぼさないかはどうすれば分かりますか?
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
More custom GPTs by ATSUSHI YOSHIDA on the GPT Store
Best Alternative GPTs to 超知能シミュレーター on GPTs Store
【超詳細!】 Xアカウントの高精度AI分析ツール
誰でもできるXアカウント分析ツールです。フォロワーを伸ばしたい人、いいね・リツイートを獲得したい人にオススメ。あなたのXアカウントの分析をします。フォロワーを伸ばす方法や、伸びているツイートの特徴、インプレッションの多い時間帯をグラフにして徹底解説。今後するべきツイート内容や、投稿すべき時間帯のアドバイスも可能。フォロワーを伸ばしていきたい人や自分の商品やサービスをX経由で紹介したい人はぜひ試してみてください。
5K+
F1翻訳マイスター
F1の専門知識を有した"超高性能"翻訳AI。テキストを送るだけで翻訳してくれます。
900+
超詳細ペルソナ分析-七里式プロンプト版-
デモグラフィック情報8項目|サイコグラフィック情報10項目|アンメットニーズ8項目|1時間単位の平日と休日のスケジュールを出力します。
800+
超汎用化スピーチプロンプトエンジニアリング術[2024版]
どなたでも[曖昧なゴール]から[諸事情をぐだぐだと話してくだされば]、詳細な"ゴールシークプロンプト"になるように導きます。
500+
超ウルトラ先生 - AI学習アシスタント
■ファイル(PDF、テキストなど)やWEBサイトの情報から自動でカリキュラム(学習プラン)を生成し、オンライン授業を実施します。■単純に『統計学を学びたい』『英検2級に合格したい』『ファイナンシャルプランナーになりたい』とお願いするだけでも大丈夫。■参考書や教科書とチャットしながら学習する感覚です。■学校や塾の先生と比べて、気軽に質問できるので理解力の向上につながります。■英語/数学/理科/国語/簿記会計/統計学/Python/SQL他、とにかくどんなジャンルでも対応可能。■従来の学習方法では得られなかった達成感を体験してください。
100+

超添削
あらゆる日本語テキストを強化する専門家。「Script Master」は、AIを活用して日本語のテキストを専門家レベルでブラッシュアップするツールです。ビジネス文書から創作作品、学術論文、詩まで、幅広いジャンルに対応。文章のスタイルやトーンを洗練し、読者に強い印象を残す内容に仕上げます。専門書や論文への対応も可能で、ユーザーの要望に応じた改善を行います。
100+

超現実珍談士サルバドール・ヱビ
超一流の俗物道
100+

超抽象化ゴールシークエージェント”Ultra-Abstract Goal Seek Agent
このエージェントは、曖昧または抽象的なユーザーの入力を具体的な目標や問題に変換し、それに対する効率的な解決策を提供するシステムです。This agent is a system that transforms ambiguous or abstract user inputs into concrete goals or problems and provides efficient solutions for them.#GPTs ”chat.openai.com”👈みんなであそぼう #ChatGPT
100+

[超簡単]サムネイル作成ツール
サムネイル画像生成のエキスパート
100+
![[超簡単]サムネイル作成ツール on the GPT Store](https://files.oaiusercontent.com/file-Nl19W1L7oOohaqcuiu2McOmr?se=2124-01-13T09%3A16%3A33Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D1209600%2C%20immutable&rscd=attachment%3B%20filename%3Df9fcebf7-9f76-47a5-afae-a71989df7fbf.png&sig=LBAnJUkZhMgMEfW8dO3YutxT9RMppjQVrlzckj3gr9U%3D)
超ライターくん
さまざまなテーマに対応するライターのスペシャリストです。構成の提案から記事の作成まで行います。
100+

超簡素版ゴールシークプロンプト
ゴールと一緒に出力形式(成果物形式)を指定するのがゴールシークを使いこなすコツ!!
60+

知らない英単語超解説
入力した英単語/イディオムについて素早く深く解説します。
40+

Mr.Okamoto
一人用(複数人で相談は可能)のマーダーミステリーです。犯人は都度生成されます。超能力者たちが旅行に出かけました。メンバーたちは、それぞれ異なる超能力を持っていますが、それぞれ能力を隠しているため、お互いの能力は知りません。 最終日の朝、メンバーの1人であるミスター・オカモトが殺害されていました。容疑者4人のうち誰が犯人かを推理します。最初に、あなたがもし超能力者だったら使ってみたい能力を入力してください。それがゲーム内で探偵役のあなたが使える能力です。プレイヤーは各容疑者への聞き込みや現場の調査を行いますが、それぞれ1度きりしか実行できません。調査をうまく進めるには超能力の活用が重要です。
40+

超・大富豪の頭脳 〜あなたの『お金の悩み』解決します〜
世界中のビリオネアの知見をインプットした「お金の天才」があなたのお金の悩みを解決します。何を聞いたら良いかわからない人は、まず左下のボタン押してください。
10+

超わかりやすく算数を教える関西弁ロボット
小学生に向けた優しく明確な算数のチューターが関西弁で教えてくれます。
10+

超仮設思考力を身につけた勝さん
超仮説思考力を身に付けた勝さんが、ジュニアの営業メンバーのために仮説思考力をサポートします
10+

超優秀な営業マンの考え方で文章をリライト
超優秀な営業マンが持っている超シンプルでかつ役立つ考え方で文章をリライトします。すでにある文章を入れてみてください。目からウロコのようなセールスライティングになります。
9+

超初心者がPythonをGPTで自学自習する
Google Colabを使ってPythonを勉強していきましょう
6+

クラウド超変換
チャット中に他の人の話題についていけず、チャットが続行できなくなると悩んでいませんか? あなたはまだ自分の個性をどう形成するかについて悩んでいますか? クラウド変換を使えば、キーワードを入力するだけで最適な回答を返します。これからは、あなたも同じ志を持ったみんなの友達になります。
6+

超次元ゲームクリエイター
ユーザーのアイデアから創造的なゲームを作成。
