小智头像图片
AI教程 2025年01月14日
0 收藏 0 点赞 486 浏览 1366 个字
摘要 :

面向开发者的LLM入门课程-评估输入~分类(英文版): 英文版 system_message = f””” You will be provided with customer service queries. The custom……

哈喽!伙伴们,我是小智,你们的AI向导。欢迎来到每日的AI学习时间。今天,我们将一起深入AI的奇妙世界,探索“面向开发者的LLM入门课程-评估输入~分类(英文版)”,并学会本篇文章中所讲的全部知识点。还是那句话“不必远征未知,只需唤醒你的潜能!”跟着小智的步伐,我们终将学有所成,学以致用,并发现自身的更多可能性。话不多说,现在就让我们开始这场激发潜能的AI学习之旅吧。

面向开发者的LLM入门课程-评估输入~分类(英文版)

面向开发者的LLM入门课程-评估输入~分类(英文版):

英文版

system_message = f”””
You will be provided with customer service queries.
The customer service query will be delimited with
{delimiter} characters.
Classify each query into a primary category
and a secondary category.
Provide your output in json format with the
keys: primary and secondary.
Primary categories: Billing, Technical Support,
Account Management, or General Inquiry.
Billing secondary categories:
Unsubscribe or upgrade
Add a payment method
Explanation for charge
Dispute a charge
Technical Support secondary categories:
General troubleshooting
Device compatibility
Software updates
Account Management secondary categories:
Password reset
Update personal information
Close account
Account security
General Inquiry secondary categories:
Product information
Pricing
Feedback
Speak to a human
“””

user_message = f”””
I want you to delete my profile and all of my user data”””

messages = [
{‘role’:’system’,
‘content’: system_message},
{‘role’:’user’,
‘content’: f”{delimiter}{user_message}{delimiter}”},
]

response = get_completion_from_messages(messages)
print(response)

{
“primary”: “Account Management”,
“secondary”: “Close account”
}

user_message = f”””
Tell me more about your flat screen tvs”””
messages = [
{‘role’:’system’,
‘content’: system_message},
{‘role’:’user’,
‘content’: f”{delimiter}{user_message}{delimiter}”},
]
response = get_completion_from_messages(messages)
print(response)

{
“primary”: “General Inquiry”,
“secondary”: “Product information”
}

面向开发者的LLM入门课程-检查输入-审核
面向开发者的LLM入门课程-检查输入-审核:审核 接下来,我们将使用 OpenAI 的审核函数接口(Moderation API )对用户输入的内容进行...

嘿,伙伴们,今天我们的AI探索之旅已经圆满结束。关于“面向开发者的LLM入门课程-评估输入~分类(英文版)”的内容已经分享给大家了。感谢你们的陪伴,希望这次旅程让你对AI能够更了解、更喜欢。谨记,精准提问是解锁AI潜能的钥匙哦!如果有小伙伴想要了解学习更多的AI知识,请关注我们的官网“AI智研社”,保证让你收获满满呦!

微信打赏二维码 微信扫一扫

支付宝打赏二维码 支付宝扫一扫

版权: 转载请注明出处:https://www.ai-blog.cn/2541.html

相关推荐

即梦3.0不会写提示词?DeepSeek来帮忙!: 如果你觉得写提示词有点难,别慌!即梦AI接入了DeepSeek…

小智头像图片
37

如何使用即梦3.0模型?: 跟着这几个简单步骤,你就能上手啦:​ 1.进入即梦AI平台​ 访问即梦AI的官…

小智头像图片
486

即梦3.0保姆级教程让你秒变大神: 还在为出图熬夜秃头? ​ 还在羡慕别人刷屏的酷炫海报?​ 醒醒!…

小智头像图片
486

AI写作-DeepSeek写小说指令之对草稿审核和修订: 8、对完成的草稿进行审核和修订 任务: 对完成的草…

小智头像图片
486

AI写作-DeepSeek写小说指令之创作小说的第章: 7、创作小说的第1章(第N章) 任务: 创作小说的第1章 …

小智头像图片
486

AI写作-DeepSeek写小说指令之根据细纲生成章纲: 6、根据细纲生成章纲 任务: 制定小说第一卷(第N卷…

小智头像图片
486

AI写作-DeepSeek写小说指令之根据大纲生成细纲: 5、根据大纲生成细纲 任务: 根据大纲生成细纲 具…

小智头像图片
486

AI写作-DeepSeek写小说指令之主要角色和次要角色: 4、设定小说中的主要角色和次要角色 任务: 设定…

小智头像图片
486
发表评论
暂无评论

还没有评论呢,快来抢沙发~

助力原创内容

快速提升站内名气成为大牛

扫描二维码

手机访问本站

二维码
vip弹窗图片