Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
December 28, 2022 03:25 pm GMT

Using CodeGeeX as a GitHub Copilot alternative

Written by Fimber Elemuwa

When GitHub Copilot was released to the public in June 2022, developers worldwide were over the moon, mainly because theyd been waiting for this since the preview was launched in 2021. The wait was worth it, as Copilot fulfilled the goal of helping developers code faster while reducing work. It was almost perfect, except for one thing Copilot isnt free.

While the paywall is not a deal breaker for most people, it has led to many people seeking an alternative to Copilot. Thats where CodeGeeX comes in. In this article, well dive into CodeGeeX and see why it can serve as a useful replacement for Copilot.

To jump ahead:

  • What is CodeGeeX?
  • CodeGeeX code generation tool
  • CodeGeeX code translation tool
  • CodeGeeX VS code extension
    • Stealth mode
    • Interactive mode
    • Prompt mode

What is CodeGeeX?

According to its official docs, CodeGeeX is a large-scale multilingual code generation model with 13 billion parameters pre-trained on a large code corpus of more than 20 programming languages. Simply put, CodeGeeX is a code generation tool powered by artificial intelligence that helps you write code faster.

CodeGeeX does this by taking your comments and generating code that fits with them or suggesting the next line of code for you based on your previous lines of code.

Unlike Copilot, which is powered by OpenAI Codex, CodeGeeX trains its AI on a cluster of Ascend 910 AI processors (arguably the worlds most powerful AI processor) to power their software.

The Ascend 910 AI processors are known to be so powerful that when combined with Mindspore, they are twice as powerful as other AI training cards, such as Tensorflow. The Ascend 910 AI processors are protected by the HUAWEI Trademark Policy, but CodeGeeX uses the Apache License 2.0 license to protect its copyright. The Apache license is a free and open source software (FOSS) licensing agreement from the Apache Software Foundation.

In terms of performance and ease of use, CodeGeeX is on par with GitHub Copilot. It even has a few unique features that make it a fantastic alternative, and well look at them below.

CodeGeeX code generation tool

The CodeGeeX code generation tool is one of the most incredible things to happen to developers this year. It allows users to generate blocks of code by just inputting what they want as comments. CodeGeeX reads the comments and then generates the code users want, line by line.

CodeGeeXs generated code is able to be edited, so if you have specific modifications, you can directly edit it. The code generation tool also has a Candidate feature that allows it to generate multiple versions of the same line of code, and then you can choose which one you like: CodeGeeX's Code Generation Tool's Candidate Feature

Heres an example. Lets say we want to create a JavaScript guessing game with the code generator. All we have to do is input the following comments:

// Create a number guessing game to generate a number between the range of 1 and 2.// The game should prompt users for their username.// Set range as function parameter and prompt the player to predict the generated number between the given range.// At a correct guess, the player a point and move them to stage 2 by increasing the range limit value by 1// At a wrong guess, the player loses a point, and the game ends

Then, we have to write the first word of the function or name the function whatever we want, and the generator will take care of the rest, just like in the video below:

Heres the code that was generated by CodeGeeXs code generation tool using the comments we inputted:

function ilegal_number(range) {    range = range || 2;    var username = prompt('What is your name?');    for (var i = 1; i <= range; i++) {        if (i === range) {            return i;        }        if (i > range) {            alert('Your number must be lower than'+ range);            break;        }        var guess = prompt('Guess'+ i + ': ');        if (guess === null) {            alert('You should input the number');            break;        }        if (guess === 'exit') {            alert('Thanks for playing!');            return null;        }        if (guess === i) {            alert('You guessed it!');            alert('You scored:'+ (i * 2));            break;        }    }    alert('You tried too many times, try again!');    alert('You scored:'+ (i * 2));    return null;}

CodeGeeX code translation tool

The CodeGeeX code translation tool is a fantastic tool for every developer. As the name suggests, it translates your code from the language you wrote it in into another language of your choice.

The code translation tool only supports eight languages:

  • Python
  • Go
  • Java
  • JavaScript
  • C++
  • C#
  • PHP
  • TypeScript

To use the code translation tool, select the language you want to write in, write the code or paste it in the input field, and select the language you want it to be translated into. Then click Translate.

To test it out, let's use the guessing game we generated earlier and translate it from JavaScript to C#: CodeGeeX Code Translation Heres the generated code:

using System;class IlegalNumber {    static int ilegal_number(int range) {        range = range == 0? 2 : range;        string username = Console.ReadLine("What is your name?");        int i;        for (i = 1; i <= range; i++) {            if (i == range) {                return i;            }            if (i > range) {                Console.WriteLine("Your number must be lower than " + range);                break;            }            string guess = Console.ReadLine("Guess " + i + ": ");            if (guess == null) {                Console.WriteLine("You should input the number");                break;            }            if (guess == "exit") {                Console.WriteLine("Thanks for playing!");                return null;            }            if (guess == i.ToString()) {                Console.WriteLine("You guessed it!");                Console.WriteLine("You scored: " + (i * 2));                break;            }        }        Console.WriteLine("You tried too many times, try again!");        Console.WriteLine("You scored: " + (i * 2));        return null;    }    public static void Main() {        Console.WriteLine("Welcome " + username);        Console.WriteLine("1 - 2147483647");        Console.WriteLine(ilegal_number(0) == null? "exit" : ilegal_number(1));    }}

As you can see, CodeGeex can translate all your code snippets into a different language with a high level of accuracy.

CodeGeeX VS code extension

CodeGeeX also has a VS code extension that, unlike Github Copilot, is free. The GitHub Copilot VS code extension is technically free, but only to verified students, teachers, and maintainers of popular open source repositories on GitHub. Otherwise, youll have to pay a monthly subscription of ten dollars or a yearly subscription of 100 dollars.

The CodeGeeX VS code extension does not require any of those conditions. All you have to do is go to the VS code extension store and download the CodeGeeX extension.

The CodeGeeX extension has three modes.

Stealth mode

This mode works in the same way as the code generation tool. It looks at your previous code or code comments and generates the next line of code for you. The best part of this is that it doesnt interfere with your code. It only suggests code if its been 3 seconds since you last typed, and the suggested code is in the form of a placeholder thats only implemented when you press the tab key.

Heres an example:

CodeGeeX Stealth Mode Example

In the picture above, the header file is generated by CodeGeeX, but its only there as a placeholder until I press the tab key. Additionally, the CodeGeeX extension only generates one line at a time, so its easy to edit.

Interactive mode

The Interactive mode of the CodeGeeX extension also has an element of the code generation tool. To access this mode, press Control+Enter, and your VS code will split into two panes. One pane will be where you write your normal codes, while the other pane will suggest code snippets for you: CodeGeeX Interactive Mode Example

Prompt mode

Prompt mode is more advanced than the other CodeGeeX modes, and it gives you access to features like code explanation, code summarization, and even generates code for you with a specific coding style.

To use Prompt mode, you have to highlight the code you want to be explained and press ALT+T to trigger the Prompt mode. If you choose an explanation, itll then generate a line-by-line explanation for the highlighted code: CodeGeeX Prompt Mode Example

If youd like to read more on the CodeGeeX VS code extension, heres a guide for you.

Conclusion

Given the features that CodeGeeX has, coupled with the fact that its free, we can all agree that CodeGeeX can indeed stand as a suitable alternative to GitHub Copilot. Its easy to use, theres plenty of support, and the AI is smart enough to act as a suitable assistant for your coding. So if youre still debating whether to use it, give it a go. It wont cost you a thing.

Resolve more tickets per month with LogRocket

LogRocket signup

LogRocket is a digital experience analytics solution that helps you fix user-reported bugs faster. LogRocket combines session replay with deep technical information, bug aggregation, and product analytics to help you reproduce issues and ship fixes faster.

What's behind it? LogRocket records every error, network request, performance metric, UX interaction, and much more so you can immediately reproduce an issue and see the context behind a bug. It takes seconds to install and integrates with all of the ticketing systems and backend monitoring tools you use today.

Instantly reproduce issues tryLogRocket today.


Original Link: https://dev.to/logrocket/using-codegeex-as-a-github-copilot-alternative-4kh

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To