Earlier quoted context omitted.
I’m assuming you meant “blurb” instead of “blur”?
Thanks corrected. While we are at it. Is it "make the following experiment" or "do the following experiment" ?
Ask HN: Any indications Copilot scans your local files?
31–40 of 88 posts
Re: Ask HN: Any indications Copilot scans your local files?
#32Have you considered that your marketing blurb is actually, not that novel after all? GPT3 is damn convincing these days :)
Re: Ask HN: Any indications Copilot scans your local files?
#33Yes, other files open in your IDE may also be scanned. From terms of service [1] (Which I'm sure everyone reads) > when you edit files with the GitHub Copilot extension/plugin enabled, file content snippets [...] will be shared with GitHub, Microsoft, and OpenAI, and used for diagnostic purposes to improve suggestions and related products. GitHub Copilot relies on file content for context, both in the file you are ed…
Re: Ask HN: Any indications Copilot scans your local files?
#34Have you told your client that you are making use of tools that upload the intellectual property they’ve shared with you / they’ve paid you to create for them, onto third-party servers? If I was paying for work and the contractor was uploading the end result onto some sort of shared AI training set, we would not be working together for very long. You may have brought up an excellent point that needs to be inserted in…
Re: Ask HN: Any indications Copilot scans your local files?
#35Have you told your client that you are making use of tools that upload the intellectual property they’ve shared with you / they’ve paid you to create for them, onto third-party servers? If I was paying for work and the contractor was uploading the end result onto some sort of shared AI training set, we would not be working together for very long. You may have brought up an excellent point that needs to be inserted in…
> Have you told your client that you are making use of tools that upload the intellectual property they’ve shared with you / they’ve paid you to create for them, onto third-party servers? Related: Have any of the big tech companies banned their employees from using Copilot yet?
Re: Ask HN: Any indications Copilot scans your local files?
#36Earlier quoted context omitted.
Good point again, but no. MacOS.
If VSCode scanned your files to feed Copilot, it's not just Microsoft who can access that, but anyone using copilot. Every single file in every single machine that ever ran VSCode would potentially be at anyone's grasp. Allowing this to happen would've been incredibly stupid. But it's worth investigating further.
Even if they were scanning all the files, Copilot's terms [1] explicitly says they do not use the data to provide suggestions for other users.
> GitHub Copilot does not use these URLs, file paths, or snippets collected in your telemetry as suggestions for other users of GitHub Copilot. This information is treated as confidential information and accessed on a need-to-know basis.
[1] https://docs.github.com/en/github/copilot/github-copilot-tel...
Re: Ask HN: Any indications Copilot scans your local files?
#37Are you sure the AI couldn't get some context from the current file? No title tag in the head, no description nor keywords ? The filename/path is also used, could it be it?
Re: Ask HN: Any indications Copilot scans your local files?
#38I was writing a twitter api wrapper and had hardcoded access token for a test user. Copilot when testing a function that requires a user id suggested one. I searched the id and it belonged to my test user. I searched my entire codebase but couldn't find any place I had used the particular id. The only place it could have extracted it from would have been access token which has user id as part of the string(which I hadn't noticed before this). Either this is a common code pattern or I don't know how to process this.