用户:
问号盒查看:24 回复:26 评论:24 创建时间:2023-02-15T00:46:41
ChatGPT
由OpenAI提供计算服务
目前市面上最先进顶流人工智能AI
因为目前太过火爆,官网暂时不能与GPT聊天
所以我通过API搭建了简单的文本请求的网站与GPT聊天
网站链接:
http://gpt.markjy.com
后续我会通过COCO制作一个【简单】的智能APP
(所有计算服务由OpenAI提供)
你这个GPT是神马意思?嘛玩意
我们北方仔看见给都不会了!我们这里根本就没有黑龙江啊,拜托!我们这里只有黄河和乌兰布和大沙漠!哪里来的大沼泽!更没有口岸边境!最不可能的事情就是有海港!这里离北京起码660千米!哪里来的560千米
点赞1
评论
罗氏之子我问 你知道“鸡你太美”吗?
它答 “鸡你太美”是一句网络流行语,用来表达对另一个人或情况极大的赞赏和崇拜。它源自一部网络动画“小猪佩奇”中小猪佩奇的台词,改编而成:“你鸡你太美”。
这正常吗?
点赞0
评论
南门安意春海这是我用ChatGPT写的js控件:
// Version 1.2.2 by Yoshi, Add by Yoshi
/* eslint-disable no-undef */
/* eslint-disable react/react-in-jsx-scope */
const types = {
type: 'ONLINE_AUDIO',
icon: 'https://creation.cod喵/716/appcraft/IMAGE_X36CDtIms_1642823792018.png',
title: '在线音频播放器',
platforms: ['web', 'android', 'ios'],
isInvisibleWidget: false,
isGlobalWidget: false,
properties: [
{
key: '__width',
label: '宽度',
valueType: 'number',
defaultValue: 320,
},
{
key: '__height',
label: '高度',
valueType: 'number',
defaultValue: 176,
},
{
key: 'url',
label: '媒体URL',
valueType: 'string',
defaultValue: 'http://www.w3school.com.cn/i/song.ogg',
},
{
key: 'contrl',
label: '有控制按钮',
valueType: 'boolean',
defaultValue: true,
},
{
key: 'name',
label: '控件ID',
valueType: 'number',
defaultValue: 0,
},
{
key: 'info',
label: '类型',
valueType: 'string',
defaultValue: 'audio/ogg',
dropdown : [
{label : 'MP3',value : 'audio/mpeg'},
{label : 'OGG(audio)',value : 'audio/ogg'},
{label : 'WAV',value : 'audio/wav'},
{label : 'MP4',value : 'video/mp4'},
{label : 'WebM',value : 'video/webm'},
{label : 'OGG(video)',value : 'video/ogg'},
]
},
],
methods: [
{
key : 'play',
label : '播放',
params : [],
},
{
key : 'pause',
label : '暂停',
params : [],
},
{
key : 'reload',
label : '刷新',
params : [],
},
],
events: [
{
key: 'onClick',
label: '点击',
params: [],
},
],
};
class OnlineAudio extends VisibleWidget {
constructor(props) {
super(props);
this.url = props.url;
this.info = props.info;
this.contrl = props.contrl;
this.name=props.name;
this.width=props.__width;
this.height=props.__height;
}
onClick = () => {
this.emit('onClick');
};
play = () => {
var element = document.getElementById(this.name);
element.play();
};
pause = () => {
var element = document.getElementById(this.name);
element.pause();
};
reload = () => {
//{$(function(){$(".YoshiDiv").load(location.href + " .YoshiDiv");})}
this.render();
};
render() {
return (
<div id="YoshiAudio">
<audio
controls={this.contrl}
id={this.name}
width={this.width}
height={this.height}>
<source
src={this.url}
type={this.info}>
</source>
Your browser does not support 'audio'.
</audio>
</div>
);
}
}
exports.types = types;
exports.widget = OnlineAudio;点赞1
评论
ENEMy我:我没有看过《狂飙》,但是听说这部电视剧很好看
GPT:据说它是一部描写一个名叫“狂飙”的青少年的故事,讲述了他如何在孤独,无助和喵的环境中以勇气与智慧去勇敢面对挑战,以期走向成功的过程。该剧的演员阵容也很豪华,包括著名演员莎伦·莱斯·阿德金姆,胡安·卡洛斯·莱科,迈克尔·奥特加等。据说这部剧有着出色的演技表现,有着动人的故事情节,是一部不容错过的佳作。
???
点赞1
评论