马上注册,免费下载更多dz插件网资源。
您需要 登录 才可以下载或查看,没有账号?立即注册
×
- import openaiimport reopenai.api_key = "key" # 将YOUR_API_KEY_HERE替换成你的OpenAI API密钥model_engine = "text-davinci-002" # ChatGPT模型名称def generate_text(prompt): response = openai.Completion.create( engine=model_engine, prompt=prompt, max_tokens=2048, n=1, stop=None, temperature=0.7, timeout=30, # 将超时时间设置为30秒 ) message = response.choices[0].text return message.strip()def generate_title_and_content(keywords): prompt = "Generate a title and content for an article about " + keywords + ".\n\nTitle:" title = generate_text(prompt) content_prompt = "Write an article about " + keywords + " with the following title:\n\n" + title + "\n\nArticle:" content = generate_text(content_prompt) return (title, content)keywords_list = ["谷歌seo怎么做","谷歌SEM怎么做"] # 你可以在这里替换或添加关键字for keywords in keywords_list: title, content = generate_title_and_content(keywords) print("标题:", title) print("内容:", content) print("\n\n")
复制代码 自己改改吧..
自从chatgpt出来后感觉比较焦虑
©DZ插件网所发布的一切资源仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。 网站部分内容来源于网络,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。如果您喜欢该程序,请支持正版软件,得到更好的正版服务。 您在本站任何的赞助购买、下载、查阅、回复等行为等均表示接受并同意签订《DZ插件网免责声明协议》。 如有侵权请邮件与我们联系处理: discuzaddons@vip.qq.com 并出示相关证明以便删除。敬请谅解!
|
|