Skip to content
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

Update competitor page #6806

Merged
merged 3 commits into from Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/Compare/constants.ts
Expand Up @@ -844,8 +844,8 @@ export const tabnineVsCody: CompareDataType = {
cody: true,
cody_details: '',
view_cody_details: false,
competitor: false,
competitor_details: 'Waiting list',
competitor: true,
competitor_details: 'Available for Pro and Enterprise users',
view_competitor_details: false,
},
{
Expand All @@ -866,7 +866,7 @@ export const tabnineVsCody: CompareDataType = {
cody: true,
cody_details: '',
view_cody_details: false,
competitor: false,
competitor: true,
competitor_details: '',
view_competitor_details: false,
},
Expand Down
8 changes: 3 additions & 5 deletions src/pages/compare/tabnine-vs-cody.tsx
Expand Up @@ -22,8 +22,7 @@ const CompareCopilotPage: FunctionComponent = () => (
<p>
Tabnine is an AI assistant primarily focused on code autocomplete. Tabnine Chat, an in-IDE chat
feature, is also in beta but only for Enterprise users. The free tier of Tabnine has limited
functionality, offering short code completions of 2-3 words, and not offering chat or other AI
commands.
functionality, offering short code completions of 2-3 words.
</p>
<p>
The most unique aspect of Tabnine is its hybrid LLM approach. Tabnine's free tier (Starter) runs a
Expand All @@ -32,9 +31,8 @@ const CompareCopilotPage: FunctionComponent = () => (
</p>
<p>
<strong className="inline-block rounded-sm bg-blue-100 px-2 py-1 text-blue-500">TL;DR:</strong>{' '}
Tabnine is a good choice for users who want to run their LLM entirely on their local machine, but
its Starter and Pro tiers are restricted to only autocomplete. Cody Free and Cody Pro offer a wider
range of features (autocomplete, chat, and commands) using cloud-based models.
Tabnine is a good choice for users who want to run their LLM entirely on their local machine. Cody
Free and Cody Pro offer a wider range of features using cloud-based models.
</p>
</CompareHero>
}
Expand Down