The Wayback Machine - https://web.archive.org/web/20250523213521/https://github.com/microsoft/vscode/issues/249031
Skip to content

Open-source AI functionality provided by the Copilot Chat extension #249031

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
kieferrm opened this issue May 15, 2025 · 9 comments
Open

Open-source AI functionality provided by the Copilot Chat extension #249031

kieferrm opened this issue May 15, 2025 · 9 comments
Assignees
Milestone

Comments

@kieferrm
Copy link
Member

kieferrm commented May 15, 2025

Our blog post outlines our motivation to open-source the client-side code of our AI features in VS Code. We also compiled FAQs.

Goals

  1. Open source is only useful, if you can participate in the development process of the AI features. We need a development story that allows you to make code changes and debug AI interactions end-to-end. You need to be able to run the AI tests suites. Since all AI features are powered by models, you need to have access to models during development.
  2. Once open source, we re-evaluate how we split the functionality between VS Code Core, built-in extension(s), and the Chat extension. We want to improve the user experience and simplify our architecture and build processes.

Approach

We'll first open-source the GitHub Copilot Chat extension. To do so we need:

  1. Ensure code compliance
  2. Define the strategy for service access
  3. Define how to run tests
  4. Define OSS builds
  5. Issue management

Note: Today, NES functionality is separate from code completions. NES is implemented in the Chat extension, while completions are implemented in the GitHub Copilot completions extension. We have concrete plans to bring NES and completions together in the Chat extension. Therefore, at the moment, we don't have concrete plans to open-source the Copilot completions extension.

Compliance Review

  • We need to review every file in the Copilot Chat extension for compliance. This includes adding copyrights and removing references to internal processes, IP, and issues. This is particularly important for our test suite that contains test cases created with information from private issues.
  • After the review, we'll move the Chat extension code to a new repository without history avoiding the need to review thousands of commits.

Service Access

  • The Chat extension is powered by the GitHub Copilot service. The GitHub Copilot service provides access to general purpose and custom models, embeddings computation, and semantic code search of GitHub repositories.
  • To talk to the GitHub Copilot service, the Chat extension uses CAPI (the GitHub Copilot API). Just like our other production services, for example the settings sync service, the Copilot service will remain closed source, and its usage will continue to be regulated by its service license.
  • For debug AI interactions, you need to be able to run Code-OSS with the Chat extension installed. Normally, Code-OSS does not have access to production services. This is not a handicap for non-AI features, but AI features are useless without model access. Our current thinking is that we'll provide a closed-source, licensed npm module providing CAPI access that you can choose to install into the codebase before launching Code-OSS. Or you can use BYOK without CAPI for limited scenarios.

Tests

  • We built a test infrastructure that deals with the stochastic nature of LLMs and makes heavy use of caching LLM responses for given prompts. If you make a change in the code that results in a prompt change for a specific scenario, you want to only issue LLM requests for the changed prompts and use the cached LLM responses in all other cases. The cache is implemented using Redis. We need to allow read-only access to the Redis cache which in MS terminology makes the Redis cache a production service. We therefore need to go through the motions of creating a new production service.
  • We need to investigate if we can use PR submissions for cache baseline updates.

Builds

  • We'll need to define what PR builds look like for the Chat extension.

Issues

  • Today, issues for AI features are in three different repositories: microsoft/vscode, microsoft/vscode-copilot-release, and the private repository we use(d) for developing the Chat extension.
  • Going forward, all client issues should be in microsoft/vscode.
  • We'll move only select issues from the private repo into the public repo.
  • We'll archive/lock the microsoft/vscode-copilot-release repo, so that no new issues can be created there and existing issues are locked. The issues will continue to be accessible.
  • We need a clearer separation of client issues from service issues. We have a large number of service issues, particularly in the microsoft/vscode-copilot-release repo that are not actionable and have no clear path to being closeable.
@kieferrm kieferrm added this to the May 2025 milestone May 15, 2025
@microsoft microsoft locked and limited conversation to collaborators May 15, 2025
@kieferrm kieferrm changed the title Re-evaluate split of functionality between VS Code and the Copilot Chat extension Open-source AI functionality provided by the Copilot Chat extension May 19, 2025
@microsoft microsoft unlocked this conversation May 19, 2025
@ups216
Copy link

ups216 commented May 19, 2025

@kieferrm is agent mode also part of the open source plan?

@dengyakui
Copy link

@kieferrm : Is the Visual Studio 2022 Github Copilot also be open sourced?

@iwangbowen
Copy link

Great work

@kieferrm
Copy link
Member Author

About #249031 (comment). @ups216 yes, everything but ghost text completions. See the note in the issue description.

@elongl
Copy link

elongl commented May 20, 2025

Out of curiosity, as I'm not proficient in VSCode's architecture, what's the value in moving Copilot from being an extension to being part of the core codebase as opposed to a built-in extension as mentioned here?

In fact, many core features of VS Code are built as extensions and use the same Extension API.

@NaokiS28
Copy link

NaokiS28 commented May 20, 2025

Is there going to be an option to be opted-out by default or outright disable the AI features for people who do not wish to use it? Thats currently something I prefer with the extension and I'm sure a great deal more would like. My experience with copilot was subpar and I would certainly not want to use it even if it was integrated.

@htahir1
Copy link

htahir1 commented May 20, 2025

Can users skip using CAPI and just bring their own models or API services that the Chat can talk to?

@hu-qi
Copy link

hu-qi commented May 21, 2025

Great!Support any LLMs that comply with the OpenAI specifications?

@trancethehuman
Copy link

Looking forward to this!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

10 participants