diff --git a/src/components/Compare/constants.ts b/src/components/Compare/constants.ts index 8606e767a63..6c0c4620655 100644 --- a/src/components/Compare/constants.ts +++ b/src/components/Compare/constants.ts @@ -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, }, { @@ -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, }, diff --git a/src/pages/compare/tabnine-vs-cody.tsx b/src/pages/compare/tabnine-vs-cody.tsx index 95320a4c83d..dfc29e0840f 100644 --- a/src/pages/compare/tabnine-vs-cody.tsx +++ b/src/pages/compare/tabnine-vs-cody.tsx @@ -22,8 +22,7 @@ const CompareCopilotPage: FunctionComponent = () => (

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.

The most unique aspect of Tabnine is its hybrid LLM approach. Tabnine's free tier (Starter) runs a @@ -32,9 +31,8 @@ const CompareCopilotPage: FunctionComponent = () => (

TL;DR:{' '} - 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.

}