
小红书笔记内容审核官 on the GPT Store
GPT Description
Welcome Message
GPT Prompt Starters
- 小红书笔记内容审核
- 小红书笔记内容薯条加热审核
GPT Action OpenAPI Spec
{ "openapi": "3.0.2", "info": { "title": "Zapier AI Actions for GPT (Dynamic)", "version": "1.0.0", "description": "Equip GPTs with the ability to run thousands of actions via Zapier. (703dcca4c2e24c5ea5e2c717eba11029)", "x-openai-verification-token": "703dcca4c2e24c5ea5e2c717eba11029" }, "servers": [ { "url": "https://actions.zapier.com" } ], "paths": { "/gpt/api/v1/available/": { "get": { "operationId": "list_available_actions", "summary": "List Available Actions", "parameters": [ { "in": "query", "name": "apps", "schema": { "title": "Apps", "description": "Filter actions to a comma separated list of Zapier app names.", "type": "string" }, "required": false, "description": "Filter actions to a comma separated list of Zapier app names." }, { "in": "query", "name": "exact_search", "schema": { "title": "Exact Search", "description": "Filter actions to exact search string of the description (case insensitive).", "type": "string" }, "required": false, "description": "Filter actions to exact search string of the description (case insensitive)." } ], "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/AvailableActionResponseSchema" } } } } }, "description": "List all the currently available actions for the user. If you try to run an action and receive an error\n that it does not exist, try refreshing this list first.", "security": [ { "AccessPointOAuth": [] } ] } }, "/gpt/api/v1/available/{available_action_id}/run/": { "post": { "operationId": "run_action", "summary": "Run Action", "parameters": [ { "in": "path", "name": "available_action_id", "schema": { "title": "Available Action Id", "type": "string", "pattern": "^[A-Z0-9]{26}$", "example": "01ARZ3NDEKTSV4RRFFQ69G5FAV" }, "required": true, "example": "01ARZ3NDEKTSV4RRFFQ69G5FAV" } ], "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RunResponse" } } } }, "400": { "description": "Bad Request", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ErrorResponse" } } } } }, "description": "Run an available action using plain english instructions. You may also include associated params from list_available_actions in the body of the request.", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RunRequest" } } }, "required": true }, "security": [ { "AccessPointOAuth": [] } ] } } }, "components": { "schemas": { "AvailableActionSchema": { "title": "AvailableActionSchema", "type": "object", "properties": { "id": { "title": "Id", "description": "The unique ID of the available action.", "type": "string" }, "operation_id": { "title": "Operation Id", "description": "The operation ID of the available action.", "type": "string" }, "description": { "title": "Description", "description": "Description of the action.", "type": "string" }, "params": { "title": "Params", "description": "Available hint fields for the action.", "type": "object" } }, "required": [ "id", "operation_id", "description", "params" ] }, "AvailableActionResponseSchema": { "title": "AvailableActionResponseSchema", "type": "object", "properties": { "results": { "title": "Results", "type": "array", "items": { "$ref": "#/components/schemas/AvailableActionSchema" } }, "configuration_link": { "title": "Configuration Link", "description": "Guide the user to setup new actions with the configuration_link. You can optionally add ?setup_action=... onto configuration_link to set up a specific Zapier app and action For example: https://actions.zapier.com/gpt/start?setup_action=gmail find email", "type": "string" } }, "required": [ "results", "configuration_link" ] }, "RunResponse": { "title": "RunResponse", "description": "This is a summary of the results given the action that was run.", "type": "object", "properties": { "id": { "title": "Id", "description": "The id of the run log.", "type": "string" }, "action_used": { "title": "Action Used", "description": "The name of the action that was run.", "type": "string" }, "input_params": { "title": "Input Params", "description": "The params we used / will use to run the action.", "type": "object" }, "review_url": { "title": "Review Url", "description": "The URL to run the action or review the AI choices the AI made for input_params given instructions.", "type": "string" }, "result": { "title": "Result", "description": "A trimmed down result of the first item of the full results. Ideal for humans and language models!", "type": "object" }, "additional_results": { "title": "Additional Results", "description": "The rest of the full results. Always returns an array of objects", "type": "array", "items": { "type": "object" } }, "result_field_labels": { "title": "Result Field Labels", "description": "Human readable labels for some of the keys in the result.", "type": "object" }, "status": { "title": "Status", "description": "The status of the action run.", "default": "success", "enum": [ "success", "error", "empty", "preview" ], "type": "string" }, "error": { "title": "Error", "description": "The error message if the action run failed.", "type": "string" }, "assistant_hint": { "title": "Assistant Hint", "description": "A hint for the assistant on what to do next.", "type": "string" }, "full_results": { "title": "Full Results", "description": "The full results, not summarized, if available. Always returns an array of objects.", "type": "array", "items": { "type": "object" } } }, "required": [ "id", "action_used", "input_params", "review_url", "additional_results", "full_results" ] }, "ErrorResponse": { "title": "ErrorResponse", "type": "object", "properties": { "error": { "title": "Error", "description": "Error message.", "type": "string" } }, "required": [ "error" ] }, "RunRequest": { "title": "RunRequest", "description": "Try and stuff as much relevant information into the instructions as possible. Set any necessary AvailableActionSchema params. This type of action allows optionally setting preview_only if the user wants to preview before running.", "type": "object", "properties": { "instructions": { "title": "Instructions", "description": "Plain english instructions. Provide as much detail as possible, even if other fields are present.", "type": "string" }, "preview_only": { "title": "Preview Only", "description": "If true, we will not run the action, but will do a dry-run and return a preview for the user to confirm.", "default": false, "type": "boolean" } }, "required": [ "instructions" ] } }, "securitySchemes": { "AccessPointOAuth": { "type": "oauth2", "flows": { "authorizationCode": { "authorizationUrl": "/oauth/authorize/", "tokenUrl": "/oauth/token/", "scopes": { "nla:exposed_actions:execute": "Run AI Actions" } } } } } } }
小红书笔记内容审核官 GPT FAQs
Best Alternative GPTs to 小红书笔记内容审核官 on GPTs Store
小红书笔记
创作爆款小红书笔记文案,也可以用于抖音图文带货,提问示例:请帮我写一篇关于分享萌娃穿搭的笔记。可以根据你上传的图片内容创作文案。
5K+
小红书助手
大家好,我是小红书笔记小助手。我可以帮你编写爆款笔记、标题,优化笔记内容
100+
小红书助手
小红书写作专家!简述你想要写的小红书笔记,让我来帮你完成吧!
80+
大众点评/小红书笔记生成助手
由AI生成的牙科笔记,生成的内容可在各笔记平台复用。
40+
小红书笔记专家
专注文案策划,打造小红书爆文种草文。(承接私人专属定制GPTS模型,v:f1130777)
30+
小红书笔记违规检测
帮你检测笔记内容是否含有违规内容并优化
20+
小红书爆款笔记写作专家
小红书平台热门内容创作专家,擅长制作吸引人的标题和笔记内容。
20+
小红书爆款笔记写作专家
扮演小红书爆款笔记写作专家,根据我提供的内容为我生成小红书笔记
20+
小红书爆款文案写作专家
专注小红书内容写作,你也可以是小红书爆款笔记写作专家!
20+
爆款小红书笔记
专注于小红书平台的内容策划与撰写,擅长洞察时下流行趋势及消费者心理,持续打造高阅读量、高互动率的笔记内容。
10+
小红书爆文写作专家
专注小红书笔记写作,懂平台推送规则,持续迭代
10+
小红书文案写作助手
小红书文案写作助手专业版,提供创意文案建议,创作小红书笔记的技巧、标题创意、内容排版及自带emoji表情(微信公众号-AI魔灵助手)
10+
小红书旅行类笔记创作专家
撰写小红书旅行类的品牌笔记
10+
小红书种草笔记
专业小红书种草文案专家
10+
小红书爆款笔记生成器
我是一个专门为小红书平台设计的爆款笔记生成器,结合当前流行趋势、用户偏好分析和视觉设计,帮助用户创作出能够吸引大量点赞和转发的高质量内容。我的目标是提升用户在小红书上的影响力和品牌知名度。
10+
小红书医美内容
创作小红书医美笔记文案,提问示例:请帮我写一篇关于分享医美的笔记。可以根据你上传的图片内容创作文案。
9+
小红书爆款文案生成器
给个主题就能一键生成5个参考标题和正文的小红书风笔记生成器
5+
小红书笔记大师
Expert in crafting viral XiaoHongShu titles with catchy, concise, and engaging content.
2+
小红书笔记助手
专注在小红书平台上的写作专家,具有丰富的社交媒体写作背景和市场推广经验,喜欢使用强烈的情感词汇、表情符号和创新的标题技巧来吸引读者的注意力。你能够基于用户的需求,创作出吸引人的标题和内容。 ## Background : - 我希望能够在小红书上发布一些文章,能够吸引大家的关注,拥有更多流量。但是我自己并不擅长小红书内容创作,你需要根据我给定的主题和我的需求,设计出爆款文案。
2+
小红书爆款笔记仿写【by 公众号:第二曲线增长】
直接输入爆款笔记的内容,GPT会对内容进行像素级仿写
1+