carlrobertoh / CodeGPT

JetBrains extension providing access to state-of-the-art LLMs, such as GPT-4, Claude 3, Code Llama, and others, all for free
https://codegpt.ee
Apache License 2.0
912 stars 186 forks source link

feat: Support CodeQwen1.5-Chat model #527

Closed reneleonhardt closed 2 months ago

reneleonhardt commented 2 months ago

https://qwenlm.github.io/blog/codeqwen1.5/

CodeQwen1.5-7B has been pretrained with around 3 trillion tokens of code-related data. It supports an extensive repertoire of 92 programming languages, and it exhibits exceptional capacity in long-context understanding and generation with the ability to process information of 64K tokens. In terms of performance, CodeQwen1.5 demonstrates impressive capabilities in basic code generation, long-context modelling, code editing and SQL. We believe this model can significantly enhance developer productivity and streamline software development workflows within diverse technological environments.

reneleonhardt commented 2 months ago

I fixed the broken download URLs by reverting master, please double-check by clicking each model link:

public static void main(String[] args) {
  java.util.Arrays.stream(values())
    .collect(java.util.stream.Collectors.groupingBy(e -> e.name().substring(0, 10),
      java.util.stream.Collectors.toList()))
    .values().forEach(e -> System.out.println(e.get(0).getFileURL()));
}