- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以这是不确定为什么开放式 AI 不工作的代码。请让我知道谢谢下面是代码。
import PropTypes from 'prop-types'
import React , {useState} from 'react'
const { Configuration, OpenAIApi } = require("openai");
function TextForm(props){
const key = //key
const configuration = new Configuration({
apiKey: key,
});
const openai = new OpenAIApi(configuration);
const [text,setText] = useState("Enter text here");
const [wordCount,setWordCount] = useState(text.length);
const [responseText,setResponseText] = useState("");
const header = {
'Content-Type': 'application/json',
'Authorization': 'Bearer //key',//also not sure what Bearer is
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
}
const previewCase = async (event) => {
event.preventDefault();
const response = await openai.createCompletion({
model: "text-davinci-003",
prompt: "Say this is a test",
temperature: 0,
max_tokens: 7,
headers: header,
}).then((response) => {console.log(response.data);}).catch((error) => {console.log(error);});
setResponseText(response.data);
}
const convertToUpperCase = (event) => {
event.preventDefault()
console.log("Converting to upper case...");
setText(text.toUpperCase());
};
const convertToLowerCase = (event) => {
event.preventDefault()
console.log("Converting to lower case...");
setText(text.toLowerCase());
};
const handleManageCount = (event) => {
setText(event.target.value)
const Array = text.split(" ");
setWordCount(Array.length);
if (text.length === 0){
setWordCount(0);
}
}
return (
<>
<form>
<div className="row d-flex justify-content-center">
<div className="form-group col-lg-8 mt-3" >
<label htmlFor="exampleFormControlTextarea1 row"><h3>{props.title}</h3></label>
<textarea className="form-control mt-3" id="exampleFormControlTextarea1" rows="20" value={text} onChange={handleManageCount}></textarea>
<h6 className='mt-3'><span>Word:</span>{wordCount}</h6>
<div className=''>
<button className='btn btn-secondary mt-3 mx-2' onClick={convertToUpperCase} >Convert to Upper case</button>
<button className='btn btn-secondary mt-3 mx-2' onClick={convertToLowerCase}>Convert to Lower case</button>
<button className='btn btn-secondary mt-3 mx-2' onClick={previewCase}>Preview Sumarry</button>
</div>
</div>
</div>
</form>
<div className="container">
<p><h1>
Preview Summary
</h1>
{responseText}
</p>
</div>
</>
)
TextForm.propTypes = {title:PropTypes.string.isRequired};
TextForm.defaultProps = {title : "Write Here!"};
}
export default TextForm;
[ enter image description here ]( /image/PvMb1.png )
所以我试图为它提供一个提示,用户将在文本表单上键入,并在单击预览按钮后他将收到摘要返回
最佳答案
您正在使用 openai npm 包。在这种情况下,您不需要随请求发送 header 。您会在 header 中注意到您正在尝试设置 API key 。
除非您已经使用配置变量设置了 API key 。
我已经重写了您代码的开头,它对我有用。
function TextForm(props){
const key = //key
const configuration = new Configuration({
apiKey: key,
});
const openai = new OpenAIApi(configuration);
const [text,setText] = useState("Enter text here");
const [wordCount,setWordCount] = useState(text.length);
const [responseText,setResponseText] = useState("");
const previewCase = async (event) => {
event.preventDefault();
const response = await openai.createCompletion({
model: "text-davinci-003",
prompt: "Say this is a test",
temperature: 0,
max_tokens: 7
}).then((response) => {console.log(response.data.choices[0].text);}).catch((error) => {console.log(error);});
setResponseText(response.data.choices[0].text);
}
如果您直接使用 API 端点,您只会使用 header ,但因为您使用的是 NPM 包,它会直接为您设置 header 。
通过从您的代码中删除 header ,您应该不会收到不安全 header 警报。
请注意,我还修复了您回复的控制台日志。为了获得实际的响应文本,您必须进入响应对象的多个层:
response.data.choices[0].text
关于javascript - 打开 AI 错误返回 429 和不安全的 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75465228/
更新:下面提到的stackoverflow给出了另一种解决方案,即导入json并用正确格式的数据替换文本。我现在试图看看如何适应给定的格式,它看起来像这样: { "text" : "use
有谁知道三者之间的具体区别和功能,或者作为开发人员是否有更多功能/更灵活地使用? 最佳答案 wit.ai 与 Dialogflow 与 luis.ai ╔═══════════════════════
我知道 Wit.ai 引擎可以通过手动验证案例来训练,但是有没有办法用一组定义的输入和输出来训练它? 最佳答案 您可能可以查看其中一个应用程序的导出格式并对其进行调整以导入新应用程序。 https:/
来自 wit.ai 团队的一些人请回答这个 我们计划将 wit.ai 用于商业目的。有使用政策吗?请提供一些注意事项指南。此外,这项服务将来是否也是免费的,还是您计划推出企业版? 主要是 API 命中
我需要添加一个确认实体,以便在对话框流 (api.ai) 中的某个操作的参数中得到"is"或“取消”。假设用户正在购买咖啡,我会询问有关咖啡和数量的详细信息,最后我需要确认,我应该向哪个实体申请?任何
谁能帮我解决上面的问题。我们必须在数组 (a1,a2),(a1,a3),(a1,a4).... 等中找到元素的组合,然后选择满足条件 (ai*aj) <= max 的组合(A) 其中 A 是数组并返回
我正在尝试训练我的 Wit.ai 机器人以识别某人的名字。我不太确定我是否完全理解 NLP 的工作原理,所以我会给你一个例子。 我定义了很多表达,比如“我的名字是XXXX”、“大家都叫我XXXX” 在
我想知道是否存在一个网站,人们可以上传他们的 AI 在不同的棋盘游戏中相互竞争:国际象棋、五子棋等。 该站点将接受程序的源代码(以某种通用语言编写)、对其进行编译并相互运行程序。所有程序都必须使用一些
大家好,我是程序员幽鬼。 你想为后代开发一个令人难以置信的应用程序,你想到的第一件事——人工智能!还有什么比模仿人类智能的机器更令人着迷的呢?如果你期待打破刻板印象并准备推出出色的 AI 应用
我在 Application Insights Analytics 中创建了几个查询来获取我想要的图表。 示例: customEvents | where timestamp >= ago(31d)
我似乎无法让这个请求生效: https://wit.ai/docs/http/20160526#delete--entities-:entity-id-values-link 我已经设置了一个值为“C
我正在尝试在 wit.ai 中编写示例应用程序。我使用在 https://wit.ai/docs/quickstart 中显示的 node.js 客户端跟随快速启动应用程序。 .那里显示的示例只有一个
在 api.i(dialogflow) 中,我想获取用户的输入,如姓名、年龄、邮件等,并使用 PHP 将它们存储在我的 MYSQL 数据库中。 如何在对话流中生成我的代理的公共(public) API
我目前正在与 Wit.ai 合作 webpage in CodePen.io .我想知道是否可以使用 HTTP API 检索 Wit.ai 机器人的文本响应(“Bot says”)。 例如:如果用户要
我接到了一项任务,要编写一个由人类玩家和 AI 玩家组成的 NIM 游戏。游戏是“Misere”(最后一个必须拿起一根棍子的人输了)。 AI 应该使用 Minimax 算法,但它正在采取使其输得更快的
为了通过 shell 从端点取消部署模型,我必须指定 deployed-model-id如 gcloud ai endpoints undeploy-model 中所述 我如何获得这个已部署的模型 I
我在谷歌的 Vertex AI 中运行自定义训练作业。执行自定义作业的简单 gcloud 命令将使用类似于以下语法的内容(可以查看命令的完整文档 here ): gcloud beta ai cust
Wit AI project 在他们的 Converse 功能中添加了一个名为 Story 的新概念。有没有办法通过 HTTP API 管理(创建/编辑/验证)这些 Wit AI 故事? 最佳答案 W
我想为 Google 智能助理部署一个应用。但是,我想使用不同的 AI 后端而不是 api.ai。 有人知道这是否可能吗?如何? 或者如果我想使用 Google 智能助理,我会被 api.ai 困住吗
我的项目有一个依赖项,需要 python v3.6+。因此,它会在通过 pip 在 python 3 内核中安装时抛出错误,因为 AI Platform Notebooks 默认附带 v3.5。如何使
我是一名优秀的程序员,十分优秀!