Open Sourcing Cody – Sourcegraph's AI-enabled editor assistant
about.sourcegraph.com
Open Sourcing Cody – Sourcegraph's AI-enabled editor assistant
1–10 of 32 posts
Re: Open Sourcing Cody – Sourcegraph's AI-enabled editor assistant
#2[deleted]
Re: Open Sourcing Cody – Sourcegraph's AI-enabled editor assistant
#3This is probably one of the most sincere and personal product announcements from a corporation I’ve read.
Re: Open Sourcing Cody – Sourcegraph's AI-enabled editor assistant
#4> There's actually a growing body of evidence that shows the emergent ability of LLMs to reason (the so-called "chain of thought" ability) arises only when LLMs are trained on huge amounts of code, not just natural language. Natural language training data provides the ability to sound human, but it is the programming language training data that provides LLMs with the ability to be logical.
Good on Sourcegraph to contribute back to the open source community. LLMs rely more on open source code than meets the eye.
Re: Open Sourcing Cody – Sourcegraph's AI-enabled editor assistant
#5How much would it cost to use Cody with Sourcegraph? I don’t see a price in the article
Re: Open Sourcing Cody – Sourcegraph's AI-enabled editor assistant
#6Any plans for a neovim plugin?
Re: Open Sourcing Cody – Sourcegraph's AI-enabled editor assistant
#7Is it an answer to GitHub Co-Pilot?
Re: Open Sourcing Cody – Sourcegraph's AI-enabled editor assistant
#8I wonder if there is anything like this for a notebook-style UI? I’m a fan of how Observable does it.
Re: Open Sourcing Cody – Sourcegraph's AI-enabled editor assistant
#9How much would it cost to use Cody with Sourcegraph? I don’t see a price in the article
Edit: It's free
Re: Open Sourcing Cody – Sourcegraph's AI-enabled editor assistant
#10Is it an answer to GitHub Co-Pilot?
Cody is more like a wrapper on top of GPT API (gpt-3.5-turbo) endpoint, with related code snippets embed in prompt. It’s not competing the low latency scenario that Github Copilot seats in.
There’re recent works show a potential of beating Copilot’s performance (e.g https://arxiv.org/abs/2303.12570) with much smaller models (500M vs 10B+).
Inspired by these work, I’m building Tabby (https://github.com/TabbyML/tabby), a OSS GitHub Copilot alternative. Hopefully it could make low cost AI coding accessible to everyone.