我该如何撰写 YouTube 视频的前 10 秒黄金开场白(Hook),在第一瞬间抓住观众眼球?
YouTube 脚本与文案撰写How can I write a script for my YouTube video that will grab my audience's attention from the start?
指令参数定制变量
修改下方变量,右侧的实时生成结果预览(Live Output)将同步进行中英文精准文本插值替换。
本指令调优最佳实践
- 01.如何设计悬念式开篇与利益点前置,让 YouTube 视频脚本具有高留存率和全程无尿点的节奏?
- 02.How can I write a script for my YouTube video that will engage my audience and keep them entertained throughout?
我该如何撰写 [内容形式],从而实现 [在前几秒最大化留存观众]?
How can I write [type of content] that will [desired outcome]?
💡 使用技巧:将复制的内容直接粘贴给 ChatGPT、Claude 或 Gemini,即可获得高度结构化、切中业务要害的高质量解答。
How can I write a script for my YouTube video that will grab my audience's attention from the start?
我该如何撰写 [内容形式],从而实现 [在前几秒最大化留存观众]?
How can I write [type of content] that will [desired outcome]?
如何设计悬念式开篇与利益点前置,让 YouTube 视频脚本具有高留存率和全程无尿点的节奏?
How can I write a script for my YouTube video that will engage my audience and keep them entertained throughout?
import { GoogleGenAI } from "@google/genai";
// 初始化 Google GenAI SDK (服务器端)
const ai = new GoogleGenAI({ apiKey: process.env.GEMINI_API_KEY });
const response = await ai.models.generateContent({
model: "gemini-2.5-pro",
contents: ["我该如何撰写 YouTube 视频的前 10 秒黄金开场白(Hook),在第一瞬间抓住观众眼球?"],
config: {
systemInstruction: "我该如何撰写 [内容形式],从而实现 [在前几秒最大化留存观众]?",
temperature: 0.1
}
});
console.log(response.text);
import { GoogleGenAI } from "@google/genai";
// 初始化 Google GenAI SDK (服务器端)
const ai = new GoogleGenAI({ apiKey: process.env.GEMINI_API_KEY });
const response = await ai.models.generateContent({
model: "gemini-2.5-pro",
contents: ["我该如何撰写 YouTube 视频的前 10 秒黄金开场白(Hook),在第一瞬间抓住观众眼球?"],
config: {
systemInstruction: "我该如何撰写 [内容形式],从而实现 [在前几秒最大化留存观众]?",
temperature: 0.1
}
});
console.log(response.text);
import OpenAI from "openai";
// 初始化 OpenAI 客户端
const client = new OpenAI({ apiKey: process.env.OPENAI_API_KEY });
const response = await client.chat.completions.create({
model: "gpt-4o",
messages: [
{ role: "system", content: "我该如何撰写 [内容形式],从而实现 [在前几秒最大化留存观众]?" },
{ role: "user", content: "我该如何撰写 YouTube 视频的前 10 秒黄金开场白(Hook),在第一瞬间抓住观众眼球?" }
],
temperature: 0.2
});
console.log(response.choices[0].message.content);
import os
from google import genai
from google.genai import types
# 初始化 Google GenAI Python 客户端
client = genai.Client(api_key=os.environ.get("GEMINI_API_KEY"))
response = client.models.generate_content(
model="gemini-2.5-pro",
contents="我该如何撰写 YouTube 视频的前 10 秒黄金开场白(Hook),在第一瞬间抓住观众眼球?",
config=types.GenerateContentConfig(
system_instruction="我该如何撰写 [内容形式],从而实现 [在前几秒最大化留存观众]?",
temperature=0.1,
),
)
print(response.text)
Prompt 场景全景生态协同矩阵
智能联动调优基座、高阶效能工具链与权威工程资讯百科