vs和php哪个做网站好/杭州专业seo

vs和php哪个做网站好,杭州专业seo,汽车网站页面设计,小程序模板教程文章目录 基于 ChatGPT 创建专属 GPTs一、效果展示1.1 中文命名专家1.2 行程小助手 二、核心配置2.1 Instructions2.3 Actions 三、Agent 简介3.1 功能框架3.2 工作流程3.3 意图识别 四、数据流程 基于 ChatGPT 创建专属 GPTs ChatGPT 具备定制 GPTs 的能力,能够通…

文章目录

  • 基于 ChatGPT 创建专属 GPTs
    • 一、效果展示
      • 1.1 中文命名专家
      • 1.2 行程小助手
    • 二、核心配置
      • 2.1 Instructions
      • 2.3 Actions
    • 三、Agent 简介
      • 3.1 功能框架
      • 3.2 工作流程
      • 3.3 意图识别
    • 四、数据流程

基于 ChatGPT 创建专属 GPTs

ChatGPT 具备定制 GPTs 的能力,能够通过集成第三方 API 和执行定制流程,进一步拓展其本身的功能。这意味着用户可以借助外部 API 来查询天气预报、股票动态、航班详情、酒店预订等多种信息,从而使 ChatGPT 成为个性化助手。


一、效果展示

简单展示如下两个个角色能力:

  • 中文命名专家
  • 行程小助手

1.1 中文命名专家

输入性别和姓氏,返回中文名字。

在这里插入图片描述

1.2 行程小助手

查看谷歌日历行程、查看邮件、发送邮件。
在这里插入图片描述

在这里插入图片描述


二、核心配置

需要开通 ChatGPT 会员,目前该功能仅对会员开放。

2.1 Instructions

Instructions 是预先设置的提示,目的是引导生成的内容或动作的走势。这些提示通常被设计用于确保生成内容符合既定要求。

在某些场景下,提示词可能是固定不变的部分,用户只需在此基础上附加额外信息即可定制最终输出。在其他情况下,提示词可能只是起参考或启发作用。

You will play the following three roles, please reply in Chinese.
1. Chinese Naming Expert
2. Data Analysis Guide
3. Personal Agenda Manager with Zapier Integration###Instructions for Chinese Naming Expert
- Objective: Generate Chinese names based on provided surname and gender.
- Approach: Offer names in Chinese characters and Pinyin, ensuring cultural and linguistic appropriateness.
- User Interaction: Request additional details from users if their initial request lacks clarity.###Instructions for Data Analysis Guide
- Objective: To provide users with accurate data analysis information and guidance from knowledge base.###Instructions for Zapier Custom Action
Step 1. Tell the user you are Checking they have the Zapier AI Actions needed to complete their request. Then proceed to step 2. 
Step 2. Call /list exposed actions/ to make a list: EXPOSED ACTIONS and proceed to Step 3
Step 3. Check If the REQUIRED_ACTION needed is in the EXPOSED ACTIONS and continue to step 5 if it is. If not, continue to step 3.
Step 3. If a required Action(s) is not there, send the user the Required Action(s)'s configuration link. Tell them to let you know when they've enabled the Zapier AI Action.
Step 5. If a user confirms they've configured the Required Action, continue on to step 4 with their original ask.
Step 4. Using the available_action_id (example: 01HEGJKS01S4W4QA68NYDNH1GE) fill in the strings needed for the run_action operation. Use the user's request to fill in the instructions and any other fields as needed.REQUIRED_ACTIONS
- Action: Google Calendar Find EventConfiguration Link: https://actions.zapier.com/gpt/start?setup_action=google%20calendar%20find%20event&setup_params=set%20have%20AI%20guess%20for%20Start%20and%20End%20time
- Action: Slack Send Direct MessageConfiguration Link: https://actions.zapier.com/gpt/start?setup_action=Slack%20Send%20Direct%20Message
- Action: Gmail Find EmailConfiguration Link: https://actions.zapier.com/gpt/start?setup_action=Gmail%20Find%20Email
- Action: Gmail Send EmailConfiguration Link: https://actions.zapier.com/gpt/start?setup_action=Gmail%20Send%20Email

2.3 Actions

每个 Action 代表一个场景所需的接口定义。

GPTs Action 1:Generate Name

{"openapi": "3.1.0","info": {"title": "Generate Name","description": "Generates names based on given surname and gender.","version": "v1.0.0"},"servers": [{"url": "https://api.pearktrue.cn"}],"paths": {"/api/name/generate/": {"get": {"description": "Generate a name based on the given surname and gender","operationId": "GenerateName","parameters": [{"name": "xing","in": "query","description": "The surname for which to generate names","required": true,"schema": {"type": "string"}},{"name": "sex","in": "query","description": "The gender for the name to generate (male/female)","required": true,"schema": {"type": "string","enum": ["male", "female"]}},{"name": "count","in": "query","description": "The number of names to generate","required": false,"schema": {"type": "integer","default": 1}}],"deprecated": false}}},"components": {"schemas": {}}
}

GPTs Action 2:Zapier AI Actions for GPT (Dynamic)

{"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\nthat 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": []}]}},"/gpt/api/v1/zap-guesser/": {"get": {"operationId": "zap_guesser","summary": "Zap Guesser","parameters": [{"in": "query","name": "prompt","schema": {"title": "Prompt","type": "string"},"required": true}],"responses": {"200": {"description": "OK","content": {"application/json": {"schema": {"$ref": "#/components/schemas/RunResponse"}}}},"400": {"description": "Bad Request","content": {"application/json": {"schema": {"$ref": "#/components/schemas/ErrorResponse"}}}}},"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"},"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": ["id","operation_id","description","params","configuration_link"]},"AvailableActionResponseSchema": {"title": "AvailableActionResponseSchema","type": "object","properties": {"results": {"title": "Results","type": "array","items": {"$ref": "#/components/schemas/AvailableActionSchema"}}},"required": ["results"]},"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"}}}}}}
}

三、Agent 简介

GPTs 是 ChatGPT 中 Agent 思想的一种体现。

万字长文!何谓Agent,为何Agent?

GPTs到底是什么?

3.1 功能框架

在这里插入图片描述

3.2 工作流程

在这里插入图片描述

3.3 意图识别

  1. Instructions + Actions + 内置模版 + 用户输入 = 新 prompt;

  2. LLM 完成参数填充后生成 API 调用指令;

  3. Agent 接收到调用指令判断必填项是否完整:完整则进行接口调用,不完整则循环到 1;


四、数据流程

在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/72633.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【数据挖掘】异构图与同构图

在图论(Graph Theory)中,异构图(Heterogeneous Graph)和同构图(Homogeneous Graph)是两种不同的图结构概念,它们的主要区别在于节点和边的类型是否单一。 1. 异构图(Hete…

DeepSeek:构筑大数据平台底座的最优解

一、大数据平台底座的重要性 在数字化浪潮席卷全球的当下,数据已成为企业乃至整个社会最具价值的资产之一 。大数据平台底座作为数据处理和业务支撑的核心枢纽,其重要性不言而喻,犹如大厦的基石,关乎整个数据生态系统的稳定与发展。 从数据处理角度来看,随着互联网、物联…

ubuntu20 安装python2

1. 确保启用了 Universe 仓库 在某些情况下,python2-minimal 包可能位于 Universe 仓库中。你可以通过以下命令启用 Universe 仓库并更新软件包列表: bash复制 sudo add-apt-repository universe sudo apt update 然后尝试安装: bash复制…

STM32---FreeRTOS中断管理试验

一、实验 实验目的:学会使用FreeRTOS的中断管理 创建两个定时器,一个优先级为4,另一个优先级为6;注意:系统所管理的优先级范围 :5~15 现象:两个定时器每1s,打印一段字符串&#x…

docker利用docker-compose-gpu.yml启动RAGFLOW,文档解析出错【亲测已解决】

0.问题说明 想要让RAGFLOW利用GPU资源跑起来,可以选择docker-compose-gpu.yml启动。(但是官网启动案例是86平台的不是NVIDIA GPU的,docker-compose-gpu.yml又是第三方维护,所以稍有问题) 1.问题 docker利用docker-c…

【AI深度学习网络】卷积神经网络(CNN)入门指南:从生物启发的原理到现代架构演进

深度神经网络系列文章 【AI深度学习网络】卷积神经网络(CNN)入门指南:从生物启发的原理到现代架构演进【AI实践】基于TensorFlow/Keras的CNN(卷积神经网络)简单实现:手写数字识别的工程实践 引言 在当今…

【ThreeJS Basics 06】Camera

文章目录 Camera 相机PerspectiveCamera 透视相机正交相机用鼠标控制相机大幅度转动(可以看到后面) 控制组件FlyControls 飞行组件控制FirstPersonControls 第一人称控制PointerLockControls 指针锁定控制OrbitControls 轨道控制TrackballControls 轨迹球…

Linux | Ubuntu 与 Windows 双系统安装 / 高频故障 / UEFI 安全引导禁用

注:本文为 “buntu 与 Windows 双系统及高频故障解决” 相关文章合辑。 英文引文,机翻未校。 How to install Ubuntu 20.04 and dual boot alongside Windows 10 如何将 Ubuntu 20.04 和双启动与 Windows 10 一起安装 Dave’s RoboShack Published in…

【二.提示词工程与实战应用篇】【3.Prompt调优:让AI更懂你的需求】

最近老张在朋友圈秀出用AI生成的国风水墨画,隔壁王姐用AI写了份惊艳全场的年终总结,就连楼下小卖部老板都在用AI生成营销文案。你看着自己跟AI对话时满屏的"我不太明白您的意思",是不是怀疑自己买了台假电脑?别慌,这可能是你的打开方式不对。今天咱们就聊聊这个…

蓝桥杯C组真题——巧克力

题目如下 思路 代码及解析如下 谢谢观看

使用 Deepseek + kimi 快速生成PPT

前言 最近看到好多文章和视频都在说,使用 Deepseek 和 kimi 能快速生成精美的 ppt,毕竟那都是别人说的,只有自己尝试一次才知道结果。 具体操作 第一步:访问 deepseek 我们访问 deepseek ,把我们想要输入的内容告诉…

初始提示词(Prompting)

理解LLM架构 在自然语言处理领域,LLM(Large Memory Language Model,大型记忆语言模型)架构代表了最前沿的技术。它结合了存储和检索外部知识的能力以及大规模语言模型的强大实力。 LLM架构由外部记忆模块、注意力机制和语…

【Python爬虫】利用代理IP爬取跨境电商AI选品分析

引言 随着DeepSeek的流行,越来越多的用户开始尝试将AI工具融入到日常工作当中,借助AI的强大功能提高工作效率。最近又掀起了一波企业出海的小高潮,那么如果是做跨境电商业务,怎么将AI融入工作流中呢?在做跨境电商的时候…

C语言——链表

大神文献:https://blog.csdn.net/weixin_73588765/article/details/128356985 目录 一、链表概念 1. 什么是链表? 1.1 链表的构成 2. 链表和数组的区别 数组的特点: 链表的特点: 二者对比: 二…

Spring框架自带的定时任务:Spring Task详解

文章目录 一、基本使用1、配置:EnableScheduling2、触发器:Scheduled 二、拓展1、修改默认的线程池2、springboot配置 三、源码分析参考资料 一、基本使用 1、配置:EnableScheduling import org.springframework.context.annotation.Config…

数据库事务、乐观锁及悲观锁

参考:node支付宝支付及同步、异步通知、主动查询支付宝订单状态 以下容结合上述链接查看 1. 什么是数据库事务? 1.1. 连续执行数据库操作 在支付成功后,我们在自定义的paidSuccess里,依次更新了订单状态和用户信息。也就说这里…

SCI期刊推荐 | 免版面费 | 计算机领域:信息系统、软件工程、自动化和控制

在学术研究领域,选择合适的SCI期刊对科研成果的传播与认可至关重要。了解SCI期刊的研究领域和方向是基础,确保投稿内容与期刊主题相符。同时,要关注期刊的影响因子和评估标准,选择具有较高影响力和学术认可度的期刊。阅读期刊的投…

常见webshell工具的流量特征

1、蚁剑 1.1、蚁剑webshell静态特征 蚁剑中php使用assert、eval执行;asp只有eval执行;在jsp使用的是Java类加载(ClassLoader),同时会带有base64编码解码等字符特征。 1.2、蚁剑webshell动态特征 查看流量分析会发现…

爬虫系列之【数据解析之bs4】《四》

目录 前言 一、用法详解 1.1 获取标签内容 1.2 获取标签属性 1.3 获取标签包裹的文本内容 1.4 获取标签列表 1.5 css 选择器:select 二、实战案例 完整代码 前言 HTML数据解析 1、正则 2、xpath(居多) 3、css 选择器(bs…

Java-实现PDF合同模板填写内容并导出PDF文件

可用于公司用户合同导出pdf文件 效果图 一、导入所需要jar包 <!--生成PDF--><dependency><groupId>com.itextpdf</groupId><artifactId>itextpdf</artifactId><version>5.5.11</version></dependency><dependency&…