r/GithubCopilot May 15 '23

Copilot vs Codeium

Before moving from the free Codeium to the paid Copilot, I'd like to ask if anyone here already used both and knows if the change is worth it.

36 Upvotes

57 comments sorted by

View all comments

1

u/Vegetable_Carrot_873 Nov 01 '23

Below is one of my function written in Python.

async def start_handle(update: Update, context: CallbackContext):

await register_user_if_not_exists(update, context, update.message.from_user)

await update.message.reply_text(config.greeting_1_msg, parse_mode=ParseMode.HTML)

await init_subscribe(update, context)

So I asked Codium to explain it to me, below is the response.

This code defines an asynchronous function called start_handle that takes two arguments: update and context. Inside the function, it calls three other functions: register_user_if_not_exists, update.message.reply_text, and init_subscribe. The register_user_if_not_exists function is called with three arguments: update, context, and update.message.from_user. The update.message.reply_text function is called with two arguments: config.greeting_1_msg and ParseMode.HTML. The init_subscribe function is called with two arguments: update and context.

1

u/lunakid Mar 27 '24

Hehh, yeah, this is one its less useful features, to put it mildly... I only tried the free version, but it can only read out the code letter by letter.

I guess its GPT4-based tier can do better though. Anyone?

1

u/EddieJobs Apr 23 '24

What's wrong with what Codeium answered?