QT6开发高性能企业视频会议-8 利用VSCode+Copilot AI开发

打印 上一主题 下一主题

主题 987|帖子 987|积分 2961

Github Copilot是Github和OpenAI推出的AI编程辅助工具,之前版本的Github Copilot只有简朴的代码自动补全,根据注释生成一些代码等辅助功能。
近期Copilot有了一次大的升级,加入了Agent模式,可以实现自然语言对话讨论和最紧张的,根据指定的上下文直接按指令生成或者修改项目代码,做到了雷同Cursor的体验,而且基础版是免费利用的。
付费版Copilot可以指定更多的AI模子,包括最新的Claude 3.7等,而且能利用无限次的token。
本文简朴先容怎样在Visual Studio Code中集成和利用Github Copilot,以下步调都需要科学上网。
在Visual Studio Code中集成Copilot插件

首先需要登录Github账号并启用Github Copilot。
Sign in to GitHub · GitHub

然后我们需要为Visual Studio Code安装Github Copilot插件

安装完成后,左侧工具栏会出现Copilot Chat的图标。


利用Chat模式

在Chat模式中,Copilot会自动把当前正在编辑的代码文件代入Chat上下文,我们也可以右键点击某个项目中的文件,在Copilot菜单中把它加入Chat上下文。同时Copilot还支持上传图片,选中代码片断甚至某个GIt Change作为上下文。
之后我们和Copilot的对话中Copilot会自动关联这些上下文的内容做出回应。



这里是一个通过笔墨描述生成一个QML窗口的例子:


  1. import QtQuick 2.15
  2. import QtQuick.Controls 2.15
  3. ApplicationWindow {
  4.     visible: true
  5.     width: 400
  6.     height: 300
  7.     title: "User Login"
  8.     Column {
  9.         anchors.centerIn: parent
  10.         spacing: 20
  11.         Text {
  12.             text: "Login"
  13.             font.pixelSize: 24
  14.             horizontalAlignment: Text.AlignHCenter
  15.             anchors.horizontalCenter: parent.horizontalCenter
  16.         }
  17.         TextField {
  18.             id: usernameField
  19.             placeholderText: "Username"
  20.             width: parent.width * 0.8
  21.             anchors.horizontalCenter: parent.horizontalCenter
  22.         }
  23.         TextField {
  24.             id: passwordField
  25.             placeholderText: "Password"
  26.             echoMode: TextInput.Password
  27.             width: parent.width * 0.8
  28.             anchors.horizontalCenter: parent.horizontalCenter
  29.         }
  30.         Button {
  31.             text: "Login"
  32.             width: parent.width * 0.8
  33.             anchors.horizontalCenter: parent.horizontalCenter
  34.             onClicked: {
  35.                 // Handle login logic here
  36.                 console.log("Username: " + usernameField.text)
  37.                 console.log("Password: " + passwordField.text)
  38.             }
  39.         }
  40.     }
  41. }
复制代码
生成之后可以让Copilot帮忙修改

  1. import QtQuick 2.15
  2. import QtQuick.Controls 2.15
  3. ApplicationWindow {
  4.     visible: true
  5.     width: 800
  6.     height: 400
  7.     title: "User Login"
  8.     Row {
  9.         anchors.centerIn: parent
  10.         spacing: 20
  11.         Image {
  12.             source: "qrc:/images/left_image.png" // Replace with the path to your image
  13.             width: 300
  14.             height: 300
  15.             fillMode: Image.PreserveAspectFit
  16.         }
  17.         Column {
  18.             spacing: 20
  19.             width: 300
  20.             Text {
  21.                 text: "Login"
  22.                 font.pixelSize: 24
  23.                 horizontalAlignment: Text.AlignHCenter
  24.                 anchors.horizontalCenter: parent.horizontalCenter
  25.             }
  26.             TextField {
  27.                 id: usernameField
  28.                 placeholderText: "Username"
  29.                 width: parent.width
  30.                 anchors.horizontalCenter: parent.horizontalCenter
  31.             }
  32.             TextField {
  33.                 id: passwordField
  34.                 placeholderText: "Password"
  35.                 echoMode: TextInput.Password
  36.                 width: parent.width
  37.                 anchors.horizontalCenter: parent.horizontalCenter
  38.             }
  39.             Button {
  40.                 text: "Login"
  41.                 width: parent.width
  42.                 anchors.horizontalCenter: parent.horizontalCenter
  43.                 onClicked: {
  44.                     // Handle login logic here
  45.                     console.log("Username: " + usernameField.text)
  46.                     console.log("Password: " + passwordField.text)
  47.                 }
  48.             }
  49.         }
  50.     }
  51. }
复制代码

Chat模式除了可以用自然语言进行交换,还可以利用一些关联到Visual Studio Code的预制指令,具体可以在Chat窗口中输入/查看

利用Edit模式

假如希望Copilot直接帮我们修改项目中的文件,可以利用Copilot的编辑模式。
在编写代码时,按下Ctrl+Shift+I,右侧会弹出Edit窗口,利用方式和Chat根本一样,不同的地方是Edit模式会直接把结果更改到你的代码文件中,在保存修改之前会弹出Diff窗口让我们确认Accept或者Discard。



神旗视讯 -- 开源高性能的音视频体系
开源地址: https://gitee.com/sqmeeting


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

本帖子中包含更多资源

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

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

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

本版积分规则

愛在花開的季節

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