FauxPilot – an attempt to build a locally hosted version of GitHub Copilot
21–30 of 86 posts
Re: FauxPilot – an attempt to build a locally hosted version of GitHub Copilot
#22I would love to build a free and oss clone of GitHub using things like this. Kudos to moyix
Re: FauxPilot – an attempt to build a locally hosted version of GitHub Copilot
#23Re: FauxPilot – an attempt to build a locally hosted version of GitHub Copilot
#24Tangential, maybe someone here knows; how complicated would be to implement an autocompleter that just understands syntax + patterns and can offer me suggestions but based on my own stuff? Like what is the simplest version of Copilot that doesn't require huge amounts of training but just does a decent job at recognizing tokens and trying to fill in the structure based on some input code. e.g: `app.get('/',|` {}`, may…
Re: FauxPilot – an attempt to build a locally hosted version of GitHub Copilot
#25I don't understand the point of dedicating so many resources just so that you can have a Clipper add-on second-guess your code and make bad suggestions.
Whatever. Regardless of copying mechanisms I expect my fellow developers to understand every suggestion made by such tools.
Re: FauxPilot – an attempt to build a locally hosted version of GitHub Copilot
#26I don't understand the point of dedicating so many resources just so that you can have a Clipper add-on second-guess your code and make bad suggestions.
Re: FauxPilot – an attempt to build a locally hosted version of GitHub Copilot
#27I don't understand the point of dedicating so many resources just so that you can have a Clipper add-on second-guess your code and make bad suggestions.
Re: FauxPilot – an attempt to build a locally hosted version of GitHub Copilot
#28What's the license of the project? There is no license file in the repo
Re: FauxPilot – an attempt to build a locally hosted version of GitHub Copilot
#29Re: FauxPilot – an attempt to build a locally hosted version of GitHub Copilot
#30Tangential, maybe someone here knows; how complicated would be to implement an autocompleter that just understands syntax + patterns and can offer me suggestions but based on my own stuff? Like what is the simplest version of Copilot that doesn't require huge amounts of training but just does a decent job at recognizing tokens and trying to fill in the structure based on some input code. e.g: `app.get('/',|` {}`, may…
I think it used to be kind of usable also in VB6 also, at least that is how I remember it.
Golang and Typescript seems to have good support too now.
But for just the thing you mention above you could go a long way with live templates or what it is called in different IDEs, or just text templates with variables like the Rails guys used to use in their demos.