仿chatgpt网页源码

<!DOCTYPE html>
<html lang="en">
<head>

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChatGPT</title>
<style>
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f4f4f4;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    .chat-container {
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    .chat-bubble {
        background-color: #f0f0f0;
        padding: 10px 15px;
        margin-bottom: 10px;
        border-radius: 5px;
    }
    .user-bubble {
        background-color: #c3e1fc;
        text-align: right;
    }
    input[type="text"] {
        width: calc(100% - 50px);
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        margin-right: 10px;
    }
    input[type="submit"] {
        padding: 10px 20px;
        background-color: #007bff;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
</style>

</head>
<body>

<div class="container">
    <h1>ChatGPT</h1>
    <div class="chat-container">
        <div class="chat-bubble user-bubble">
            Hi there, how can I help you today?
        </div>
        <div class="chat-bubble">
            Well, I'm looking for some information on AI chatbots.
        </div>
    </div>
    <form id="chat-form">
        <input type="text" id="user-input" placeholder="Type your message...">
        <input type="submit" value="Send">
    </form>
</div>

<script>
    document.getElementById('chat-form').addEventListener('submit', function(e) {
        e.preventDefault();
        var userInput = document.getElementById('user-input').value;
        var userBubble = document.createElement('div');
        userBubble.classList.add('chat-bubble', 'user-bubble');
        userBubble.textContent = userInput;
        document.querySelector('.chat-container').appendChild(userBubble);
        document.getElementById('user-input').value = '';

        // Make a request to the ChatGPT API to get the response
        fetch('https://api.chatgpt.com/chat', {
            method: 'POST',
            headers: {
                'Content-Type': 'application/json'
            },
            body: JSON.stringify({ message: userInput })
        })
        .then(response => response.json())
        .then(data => {
            var chatBubble = document.createElement('div');
            chatBubble.classList.add('chat-bubble');
            chatBubble.textContent = data.message;
            document.querySelector('.chat-container').appendChild(chatBubble);
        });
    });
</script>

</body>
</html>

<!DOCTYPE html>
<html>
<head>
<title>ChatGPT</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="chat-container">

<div class="chat-log" id="chat-log">
  <div class="chat-message">
    <div class="sender">ChatGPT</div>
    <div class="message">Hello there! How can I help you today?</div>
  </div>
</div>
<div class="chat-input">
  <input type="text" id="user-input" placeholder="Type your message...">
  <button id="send-button">Send</button>
</div>

</div>

<script>

const chatLog = document.getElementById('chat-log');
const userInput = document.getElementById('user-input');
const sendButton = document.getElementById('send-button');

sendButton.addEventListener('click', () => {
  const userMessage = userInput.value;
  const userChatMessage = document.createElement('div');
  userChatMessage.classList.add('chat-message');
  userChatMessage.innerHTML = `
    <div class="sender">You</div>
    <div class="message">${userMessage}</div>
  `;
  chatLog.appendChild(userChatMessage);

  // Call ChatGPT API to get response
  fetch('https://api.chatgpt.com/ask', {
    method: 'POST',
    body: JSON.stringify({ message: userMessage }),
    headers: {
      'Content-Type': 'application/json'
    }
  })
  .then(response => response.json())
  .then(data => {
    const { message } = data;
    const chatGPTMessage = document.createElement('div');
    chatGPTMessage.classList.add('chat-message');
    chatGPTMessage.innerHTML = `
      <div class="sender">ChatGPT</div>
      <div class="message">${message}</div>
    `;
    chatLog.appendChild(chatGPTMessage);
  })
});

</script>
</body>
</html>

仿chatgpt网页源码 发布者:luotuoemo,转转请注明出处:https://www.chatairc.com/34664/

Like (0)
luotuoemo的头像luotuoemo
Previous 2023年11月12日 上午8:25
Next 2023年11月13日 上午10:25

相关推荐

  • 苹果的chatgpt怎么使用

    苹果的chatgpt可以通过以下步骤来使用: 打开你的苹果设备上的Siri功能,或者在设备上下载并安装最新版的Siri Shortcuts应用。 在Siri Shortcuts应用中,点击“+”按钮创建一个新的Shortcut。 在Shortcut的编辑界面,点击“Add Action”按钮,然后在搜索栏中输入“Open App”以找到并选择“Open Ap…

    2023年8月25日
    37000
  • chat gpt 将改变教育的未来

    GPT (Generalized Pre-trained Transformer) 是一种基于深度学习的自然语言处理模型,它可以生成具有上下文连贯性的自然语言文本。这种技术的引入将对教育领域产生重大影响,改变教育的未来。 首先,GPT可以提供个性化的学习体验。它可以根据学生的需求和兴趣生成定制化的学习材料和练习题,帮助学生更好地理解和掌握知识。通过与学生的交…

    2023年9月27日
    28700
  • 内置chatgpt4.0的插件

    ChatGPT 4.0 是 OpenAI 推出的一个强大的对话生成模型,它没有单独的插件版本。它是 OpenAI API 的一部分,您可以通过使用 OpenAI API 来访问 ChatGPT 4.0。要使用 ChatGPT 4.0 进行对话生成,您需要使用 OpenAI API 的对话模型端点。 请注意,对话模型是 OpenAI API 的高级功能,可能会…

    2023年9月12日
    28800
  • chatgpt接口php源码

    很抱歉,我无法提供ChatGPT的PHP源码。ChatGPT是由OpenAI开发的一种自然语言处理模型,其源代码暂不对公众开放。但你可以通过OpenAI的API来与ChatGPT进行集成,以便在你的PHP应用程序中使用它。下面是一个简单的PHP代码示例,演示如何使用OpenAI的ChatGPT API: <?php function callOpenA…

    2023年9月7日
    30000
  • 为什么chatgpt国内不能用

    ChatGPT国内不能用的原因有多个: 数据限制:ChatGPT使用了大量的数据进行训练,其中包括公开的互联网文本和用户提供的对话数据。然而,国内的互联网环境受到审查和限制,导致了训练数据的获取和使用难度增加。 数据敏感性:由于ChatGPT是一个基于深度学习的模型,它可以生成各种回答和对话。这可能涉及到包括政治、社会和敏感性话题的内容。考虑到国内对互联网内…

    2024年1月7日
    24800

发表回复

Please Login to Comment

联系我们

4000-747-360

在线咨询: QQ交谈

邮件:582059487@qq.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信
国内Chat Ai版本直接使用:https://chat.chatairc.com/