Building your own GitHub Copilot chat participant in VS Code

Поделиться
HTML-код
  • Опубликовано: 23 окт 2024

Комментарии • 14

  • @thunde7226
    @thunde7226 2 месяца назад +3

    yes, I saw this presentation several months ago.... both of the ladies were great..... yes doing live coding and doing regex, it is a challenge...................:) bye

  • @domesticcadiz
    @domesticcadiz 20 дней назад +1

    I love this but I have never built my own extension before. Seems like there was a starting point that is further than I can get to right now. how do I go about starting to build my own extension?

    • @code
      @code  20 дней назад +1

      We have documentation on building your very first extension! code.visualstudio.com/api/get-started/your-first-extension

  • @robinjoshua93
    @robinjoshua93 8 дней назад

    Joyce said that the extension will be available in VS Code Stable per July, however, I am not able to find it. Is it publiced yet? If so, how can I find it?

  • @DougFinke
    @DougFinke 2 месяца назад +1

    Great topic, great presenter!

  • @jacobbrooks3116
    @jacobbrooks3116 27 дней назад

    Am I missing the steps she used to allow the chat participant access to her databases? How is it authenticating?

  • @LauraHuang-w4e
    @LauraHuang-w4e 2 месяца назад

    Thanks for sharing!

  • @aniketthorat3957
    @aniketthorat3957 Месяц назад +1

    Question: how to we create sub command like
    @review /code
    or
    @review /file
    how we can create chat participates like this

    • @wotcherbabe
      @wotcherbabe 12 дней назад

      add a command within the chat participant in package.json
      "chatParticipants": [
      {
      "commands": []
      }]

  • @PotlaChowdary
    @PotlaChowdary 2 месяца назад

    S letter not working in vs code solution please?

  • @zanylyf
    @zanylyf 2 месяца назад

    day 2 of asking for a UI refresh of VS code!

  • @wotcherbabe
    @wotcherbabe 12 дней назад

    I have a question regarding an extension I am trying to create. While creating a new button, I am passing arguments like the data, and the response object. However when I try to use the response.markdown within the new register command function, I keep getting an error that Response stream is closed. Is there something I am doing wrong or can we not use the response object in this manner?
    this is a sample of my code:
    the new button creation:
    response.button({ title: 'Export', command: 'exportToJira', arguments: [summary, response] });
    the register command function definition:
    vscode.commands.registerCommand('exportToJira', async (summary: string, chatResponse: any) => {}}

    • @code
      @code  12 дней назад

      Hi! I suggest you post in our extension development community: github.com/microsoft/vscode-discussions/discussions. Thanks!!