OXYGEN‘S BLOG
动态日历
统计近10个月的博主文章和评论数目
Loading...
分类雷达图
Loading...
发布统计图
Loading...
分类统计图
Loading...
标签统计图
Loading...
文档
时光机
新
时光机
这是一条默认的说说,如果你看到这条动态,请去后台新建独立页面,地址填写cross,自定义模板选择时光机。具体说明请参见主题的使用攻略。
December 21st, 2024 a 08:31 pm
登录
注册
用户名
密码
登录
登录中...
用户名
邮箱
注册
注册中...
文章
时光机
ChatGPT
首页
ChatGPT
分享到:
ChatGPT 3.5-Oxygen
ChatGPT 3.5-Oxygen
发送
打赏
赞赏作者
支付宝
微信
赞
2
如果觉得我的文章对你有用,请随意赞赏
发表评论
取消回复
使用cookie技术保留您的个人信息以便您下次快速评论,继续评论表示您已同意该条款
评论
*
私密评论
名称
*
🎲
邮箱
*
地址
发表评论
提交中...
ChatGPT
顾大北
•
2024 年 01 月 04 日
<p><html lang="en"><br><head><br><meta charset="UTF-8"><br><title>ChatGPT 3.5-Oxygen</title><br><style><br>.center {<br> margin: auto;<br> margin-top: 30px;<br> width: 80%;<br> border: 3px solid #14A2FF;<br>}<br></style><br></head><br><body></p><div class="center"> <h1>ChatGPT 3.5-Oxygen</h1> <div class="chat-log" id="chatLog"></div> <div class="input-container"> <input class="input" id="inputMessage" placeholder="请输入消息"></input> <button class="send-button" onclick="sendMessage()">发送</button> </div><p></div></p><script> let conversationHistory = []; // 存储聊天历史 const chatLog = document.getElementById('chatLog'); const inputMessage = document.getElementById('inputMessage'); function sendMessage() { const message = inputMessage.value.trim(); if (message === '') { return; } addMessageToChatLog(message, 'user-message'); inputMessage.value = ''; // 更新聊天历史 conversationHistory.push({ role: 'user', content: message }); // 发送消息到服务器(ChatGPT)进行处理 sendRequestToChatGPT(conversationHistory); } function sendRequestToChatGPT(history) { // 发送请求到服务器(这里使用示例的URL,根据实际情况修改) fetch('https://api.chatanywhere.com.cn/v1/chat/completions', { method: 'POST', headers: { 'Authorization': 'Bearer sk-MVmhPCaapTgSfA0bafaU4s6bQRBKUSxCp1pmG0LZISFlRNZ1', 'Content-Type': 'application/json' }, body: JSON.stringify({ model: 'gpt-3.5-turbo', messages: history }) }) .then(response => response.json()) .then(data => { const reply = data.choices[0].message.content; // 将服务器返回的回复添加到聊天记录中 conversationHistory.push({ role: 'assistant', content: reply }); addMessageToChatLog(reply, 'ai-message'); }) .catch(error => { console.error('请求ChatGPT时出错:', error); }); } function addMessageToChatLog(message, className) { const messageElement = document.createElement('div'); messageElement.style.width = '70%'; messageElement.textContent = message; messageElement.classList.add(className); chatLog.appendChild(messageElement); chatLog.scrollTop = chatLog.scrollHeight; } </script><p></body><br></html></p>
文章目录