腾讯云AI代码助手---用AI构造AI,打造属于个人的Copilot

农民  金牌会员 | 2025-3-22 13:25:21 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 979|帖子 979|积分 2937

 随着AI的快速发展,使用AI构造AI也登录历史舞台。本日带各人使用腾讯云 AI 代码助手来创建基于AI大模子的AI呆板人对话网页,使用的开辟工具为Python的Flask作为后端,HTML5+js作为前端。文章末尾附完整源码。源码没有一个是本身手敲出来的 都是AI编写。看完你也会。
一 环境和工具使用

PyCharm:适用于数据科学和 Web 开辟的 Python IDE
https://www.jetbrains.com/zh-cn/pycharm/Miniconda — Conda documentation
https://docs.conda.io/en/latest/miniconda.html首先就是通过上面的链接分别下载pycharm社区版(免费的)和miniconda你本身电脑对应的版本


下载过程中的选项除了安装路径不选择c盘换成其他盘,其他的都选择默认的就行。接下来找到这个打开
二 开辟前准备


创建conda虚拟环境 使用以下下令创建虚拟环境  

conda create -n your_env_name python=3.10

your_env_name:指的是你的虚拟环境的名字

python=3.10:指的是虚拟环境内置的python解释器版本


然后pycharm创建新项目 此处演示使用找到conda创建的解释器的位置选择就行 

右下角能看到当前解释器的名字和版本 

解释器设置完成后 点击文件下的设置找到里面的插件  在Marketplace界面中搜索腾讯 点击安装(我这里是安装好了的)



点击 然后扫码登录(微信扫码就行) 接下来与ai进行对话直接询问AI 我要使用什么去做什么,得到什么结果。例如我所询问的

那么我们按照它给出的第一步去细细盘问(这里之所以选择这个千帆大模子,这个里面有免费额度的)

接下来根据引导注册,创建应用选择服务(选择我选择的两种模子,这两种模子是免费额度500千tokens的学习测试使用完全足够。)


接下来点击应用接入 就可以得到你的API Key 和Secret Key 


三 操作AI来构造代码

根据得到的id API Key 和Secret Key 让其生成代码 然后插入到main.py文件内

注意这里的插入代码是直接插入代码到你当前打开的文件里面去了 所以后端代码要放置在.py文件内 前端代码放置在当前目录下新建文件夹然后创建html后缀的文件


这里进行新建html文件大概py文件

这是插入后的结果 可以明显的看看到爆红了 这意味的没有安装库,根据ai之前的提示我们使用pip指令安装库


点击终端的图标复制给的指令 复制粘贴 敲回车安装库


安装事子女码就不会爆红了

接下来运行代码 先运行main.py  此时出现报错将报错信息复制给ai  根据ai1给出的下令到终端去运行下载这个库。(这里会多次重复这个情况,ai也不是万能的,给他机会一次一次修改代码)这个过程就不一一展示了。



知道运行不报错了 出现以下 这表明代码乐成了我们看看下结果


四 反复鞭策AI让其给你生成你想要的结果

这个结果没题目,就是界面看起来不理想很不美观而且没有各种功能 我们将前端的代码再次发给ai让其对界面代码进行润色。  这里询问尽量全点,将你的逻辑梳理清晰,然后转换成笔墨来询问ai。 询问内容为(现在的前端代码展示的界面不理想 很不美观 请你进行优化 增长历史记载的功能 一旦用户发送题目后会等待结果,这个时间应该对话框内什么都没有没有任何的提示 应该显示ai正在思考中请等待)

接下来根据其给你的修改方案复制到代码相应的位置内 (小白的话,建议直接问ai这段代码应该插入到我的代码的哪里才对。大概直接一句给我修改后的完整的html的代码)得到最后的结果

五 源码展示

后续可以不断的追问ai让其对界面不断的美满,好比加上聊天界面的两边头像大概加上两边每段对话的时间。以下是ai编写出来的源码   
main.py

  1. from flask import Flask, request, render_template, session, redirect, url_for
  2. import requests
  3. import json
  4. import uuid
  5. API_KEY = "输入你的钥匙"
  6. SECRET_KEY = "输入你的密匙"
  7. app = Flask(__name__)
  8. app.secret_key = "your_secret_key_here"
  9. def get_access_token():
  10.     url = "https://aip.baidubce.com/oauth/2.0/token"
  11.     params = {
  12.         "grant_type": "client_credentials",
  13.         "client_id": API_KEY,
  14.         "client_secret": SECRET_KEY
  15.     }
  16.     response = requests.post(url, params=params)
  17.     data = response.json()
  18.     return data.get("access_token")
  19. def get_ai_response(user_messages):
  20.     access_token = get_access_token()
  21.     url = f"https://aip.baidubce.com/rpc/2.0/ai_custom/v1/wenxinworkshop/chat/completions_pro?access_token={access_token}"
  22.     payload = {
  23.         "messages": user_messages,
  24.         "temperature": 0.95,
  25.         "top_p": 0.8,
  26.         "penalty_score": 1,
  27.         "enable_system_memory": False,
  28.         "disable_search": False,
  29.         "enable_citation": False
  30.     }
  31.     headers = {
  32.         'Content-Type': 'application/json'
  33.     }
  34.     response = requests.post(url, headers=headers, data=json.dumps(payload))
  35.     result = response.json()
  36.     ai_response = result.get("result", "抱歉,我未能理解您的请求。")
  37.     return ai_response
  38. @app.route("/", methods=["GET"])
  39. def home():
  40.     # 显示会话列表(如果没有则为空)
  41.     if "conversations" not in session:
  42.         session["conversations"] = {}
  43.     conversations = session["conversations"]
  44.     return render_template("index.html", chat_history=None, conversations=conversations, current_chat_id=None)
  45. @app.route("/new_chat", methods=["GET"])
  46. def new_chat():
  47.     # 创建新的会话ID
  48.     chat_id = str(uuid.uuid4())
  49.     if "conversations" not in session:
  50.         session["conversations"] = {}
  51.     session["conversations"][chat_id] = []  # 空会话
  52.     session.modified = True
  53.     return redirect(url_for("chat", chat_id=chat_id))
  54. @app.route("/chat/<chat_id>", methods=["GET", "POST"])
  55. def chat(chat_id):
  56.     if "conversations" not in session:
  57.         session["conversations"] = {}
  58.     if chat_id not in session["conversations"]:
  59.         # 如果传入的chat_id不存在,重定向回首页或新建
  60.         return redirect(url_for("home"))
  61.     chat_history = session["conversations"][chat_id]
  62.     if request.method == "POST":
  63.         user_input = request.form.get("user_input", "").strip()
  64.         if user_input:
  65.             # 用户消息
  66.             chat_history.append({"role": "user", "content": user_input})
  67.             ai_response = get_ai_response([{"role": "user", "content": user_input}])
  68.             chat_history.append({"role": "assistant", "content": ai_response})
  69.             session["conversations"][chat_id] = chat_history
  70.             session.modified = True
  71.     conversations = session["conversations"]
  72.     return render_template("index.html", chat_history=chat_history, conversations=conversations, current_chat_id=chat_id)
  73. def get_ai_response(user_messages):
  74.     access_token = get_access_token()
  75.     url = f"https://aip.baidubce.com/rpc/2.0/ai_custom/v1/wenxinworkshop/chat/completions_pro?access_token={access_token}"
  76.     payload = {
  77.         "messages": user_messages,
  78.         "temperature": 0.95,
  79.         "top_p": 0.8,
  80.         "penalty_score": 1,
  81.         "enable_system_memory": False,
  82.         "disable_search": False,
  83.         "enable_citation": False
  84.     }
  85.     headers = {
  86.         'Content-Type': 'application/json'
  87.     }
  88.     response = requests.post(url, headers=headers, data=json.dumps(payload))
  89.     result = response.json()
  90.     ai_response = result.get("result", "抱歉,我未能理解您的请求。")
  91.     return ai_response
  92. if __name__ == "__main__":
  93.     app.run(host="0.0.0.0", port=5000, debug=True)
复制代码
index.html

  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>AI 对话页面</title>
  6. <style>
  7.     body {
  8.         margin: 0;
  9.         padding: 0;
  10.         font-family: "Microsoft YaHei", sans-serif;
  11.         background: #f0f2f5;
  12.         height: 100vh;
  13.         display: flex;
  14.         color: #333;
  15.     }
  16.     .sidebar {
  17.         width: 260px;
  18.         background: #ffffff;
  19.         border-right: 1px solid #ddd;
  20.         display: flex;
  21.         flex-direction: column;
  22.         padding: 20px;
  23.         box-sizing: border-box;
  24.     }
  25.     .sidebar h2 {
  26.         font-size: 18px;
  27.         margin-bottom: 20px;
  28.         text-align: center;
  29.         color: #333;
  30.     }
  31.     .new-chat-btn {
  32.         display: block;
  33.         width: 100%;
  34.         text-align: center;
  35.         background: #409eff;
  36.         color: #fff;
  37.         border: none;
  38.         padding: 10px 0;
  39.         border-radius: 5px;
  40.         cursor: pointer;
  41.         margin-bottom: 20px;
  42.         font-size: 14px;
  43.         text-decoration: none;
  44.         line-height: 20px;
  45.     }
  46.     .new-chat-btn:hover {
  47.         background: #66b1ff;
  48.     }
  49.     .chat-list {
  50.         flex: 1;
  51.         overflow-y: auto;
  52.     }
  53.     .chat-item {
  54.         padding: 10px 0;
  55.         border-bottom: 1px solid #eee;
  56.         cursor: pointer;
  57.         font-size: 14px;
  58.         text-decoration: none;
  59.         color: #333;
  60.         display: block;
  61.     }
  62.     .chat-item:hover {
  63.         background: #f9f9f9;
  64.     }
  65.     .main {
  66.         flex: 1;
  67.         display: flex;
  68.         flex-direction: column;
  69.         background: #f0f2f5;
  70.     }
  71.     .header {
  72.         background: #409eff;
  73.         color: #fff;
  74.         padding: 15px;
  75.         text-align: center;
  76.         font-size: 18px;
  77.     }
  78.     .chat-window {
  79.         flex: 1;
  80.         padding: 20px;
  81.         box-sizing: border-box;
  82.         overflow-y: auto;
  83.         position: relative;
  84.     }
  85.     .message {
  86.         display: flex;
  87.         margin-bottom: 20px;
  88.         width: 100%;
  89.     }
  90.     .message.assistant .bubble {
  91.         margin-right: auto;
  92.         background: #ffffff;
  93.         border: 1px solid #eee;
  94.         color: #333;
  95.     }
  96.     .message.user .bubble {
  97.         margin-left: auto;
  98.         background: #409eff;
  99.         color: #fff;
  100.     }
  101.     .bubble {
  102.         max-width: 70%;
  103.         padding: 12px 15px;
  104.         border-radius: 8px;
  105.         line-height: 1.5;
  106.         word-wrap: break-word;
  107.         white-space: pre-wrap;
  108.         font-size: 14px;
  109.     }
  110.     .input-container {
  111.         border-top: 1px solid #ddd;
  112.         background: #ffffff;
  113.         padding: 10px;
  114.         display: flex;
  115.         align-items: center;
  116.     }
  117.     .input-box {
  118.         flex: 1;
  119.         display: flex;
  120.         align-items: center;
  121.         background: #f9f9f9;
  122.         border: 1px solid #ddd;
  123.         border-radius: 5px;
  124.         padding: 5px;
  125.         margin-right: 10px;
  126.     }
  127.     .input-box textarea {
  128.         flex: 1;
  129.         border: none;
  130.         background: transparent;
  131.         outline: none;
  132.         resize: none;
  133.         font-size: 14px;
  134.         padding: 5px;
  135.         line-height: 1.5;
  136.     }
  137.     .send-btn {
  138.         background: #409eff;
  139.         color: #fff;
  140.         border: none;
  141.         padding: 10px 20px;
  142.         font-size: 14px;
  143.         border-radius: 5px;
  144.         cursor: pointer;
  145.     }
  146.     .send-btn:hover {
  147.         background: #66b1ff;
  148.     }
  149.     .footer {
  150.         text-align: center;
  151.         color: #aaa;
  152.         font-size: 12px;
  153.         margin: 10px 0;
  154.     }
  155. </style>
  156. </head>
  157. <body>
  158.     <div class="sidebar">
  159.         <h2>对话列表</h2>
  160.         <a href="{{ url_for('new_chat') }}" class="new-chat-btn">新建对话</a>
  161.         <div class="chat-list">
  162.             {% for cid, conv in conversations.items() %}
  163.                 <a class="chat-item" href="{{ url_for('chat', chat_id=cid) }}">
  164.                     对话: {{ cid|truncate(8,true,'...') }}
  165.                 </a>
  166.             {% endfor %}
  167.         </div>
  168.     </div>
  169.     <div class="main">
  170.         <div class="header">与 AI 对话</div>
  171.         <div class="chat-window" id="chat-window">
  172.             {% if chat_history %}
  173.                 {% for msg in chat_history %}
  174.                     <div class="message {{ msg.role }}">
  175.                         <div class="bubble">{{ msg.content }}</div>
  176.                     </div>
  177.                 {% endfor %}
  178.             {% endif %}
  179.         </div>
  180.         {% if current_chat_id %}
  181.         <form id="chat-form" method="post" action="{{ url_for('chat', chat_id=current_chat_id) }}" class="input-container">
  182.             <div class="input-box">
  183.                 <textarea name="user_input" id="user_input" rows="1" placeholder="在此输入您的问题..."></textarea>
  184.             </div>
  185.             <button type="submit" class="send-btn">发送</button>
  186.         </form>
  187.         {% endif %}
  188.         <div class="footer">Powered by Wenxin & Flask</div>
  189.     </div>
  190.     <script>
  191.     const chatForm = document.getElementById('chat-form');
  192.     const chatWindow = document.getElementById('chat-window');
  193.     const userInput = document.getElementById('user_input');
  194.     if (chatForm) {
  195.         chatForm.addEventListener('submit', function(e) {
  196.             e.preventDefault(); // 阻止表单默认提交
  197.             const message = userInput.value.trim();
  198.             if (!message) return;
  199.             // 1. 先显示用户输入
  200.             appendMessage('user', message);
  201.             // 2. 显示AI正在思考中...
  202.             const thinkingMsg = appendMessage('assistant', 'AI正在思考中...');
  203.             // 3. 发送AJAX请求到后端
  204.             fetch(chatForm.action, {
  205.                 method: 'POST',
  206.                 body: new FormData(chatForm)
  207.             })
  208.             .then(response => response.text())
  209.             .then(html => {
  210.                 // 用后端重新渲染的整页HTML进行局部更新
  211.                 // 需要从返回的HTML中提取最新对话记录
  212.                 // 简单的做法是后端返回JSON而非整页HTML
  213.                 // 以下方法为简单演示,建议使用JSON接口!
  214.                 // DEMO方式:使用JSON接口替代,下面的代码仅供参考:
  215.                 // 实际中你应该在后端提供一个JSON返回的API,例如 /chat/<chat_id>/api
  216.                 // 然后在这里解析JSON更新界面。
  217.                 // 简单处理:重新从服务器获取新页面HTML片段(不建议生产用)
  218.                 const parser = new DOMParser();
  219.                 const doc = parser.parseFromString(html, 'text/html');
  220.                 const newChatWindow = doc.querySelector('#chat-window');
  221.                 if (newChatWindow) {
  222.                     chatWindow.innerHTML = newChatWindow.innerHTML;
  223.                 }
  224.             })
  225.             .catch(err => {
  226.                 console.error(err);
  227.                 // 如果出错,则用一条消息表示出错信息
  228.                 thinkingMsg.querySelector('.bubble').textContent = '出错了,请重试。';
  229.             })
  230.             .finally(() => {
  231.                 userInput.value = '';
  232.                 chatWindow.scrollTop = chatWindow.scrollHeight;
  233.             });
  234.         });
  235.     }
  236.     function appendMessage(role, content) {
  237.         const msgDiv = document.createElement('div');
  238.         msgDiv.className = 'message ' + role;
  239.         const bubble = document.createElement('div');
  240.         bubble.className = 'bubble';
  241.         bubble.textContent = content;
  242.         msgDiv.appendChild(bubble);
  243.         chatWindow.appendChild(msgDiv);
  244.         chatWindow.scrollTop = chatWindow.scrollHeight;
  245.         return msgDiv;
  246.     }
  247.     </script>
  248. </body>
  249. </html>
复制代码
可以看到 ai修改生成的代码都非常的尺度,也很美观。节省了大量的开辟时间,有这时间摸鱼能不香嘛。

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

农民

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表