mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-18 14:49:24 +00:00
* Initial implementation of integrating llama.cpp to run LLaMA models locally * Move submodule * Copy llama submodule to bundle * Support for downloading models from IDE * Code cleanup * Store port field * Replace service selection radio group with dropdown * Add quantization support + other fixes * Add option to override host * Fix override host handler * Disable port field when override host enabled * Design updates * Fix llama settings configuration, design changes, clean up code * Improve You.com coupon design * Add new Phind model and help tooltip * Fetch you.com subscription * Add CodeBooga model, fix downloadable model selection * Chat history support * Code refactoring, minor bug fixes * UI updates, several bug fixes, removed code llama python model * Code cleanup, enable llama port only on macOS * Change downloaded gguf models path * Move some of the labels to codegpt bundle * Minor fixes * Remove ToRA model, add help texts * Fix test * Modify description
41 lines
No EOL
1.7 KiB
Properties
41 lines
No EOL
1.7 KiB
Properties
# IntelliJ Platform Artifacts Repositories -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
|
|
|
|
pluginGroup = ee.carlrobert
|
|
pluginName = CodeGPT
|
|
pluginRepositoryUrl = https://github.com/carlrobertoh/CodeGPT
|
|
# SemVer format -> https://semver.org
|
|
pluginVersion = 2.1.7
|
|
|
|
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
|
|
pluginSinceBuild = 213
|
|
pluginUntilBuild = 232.*
|
|
|
|
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
|
|
platformType = IC
|
|
platformVersion = 2022.2
|
|
|
|
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
|
|
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
|
|
platformPlugins =
|
|
|
|
javaVersion = 11
|
|
|
|
# Gradle Releases -> https://github.com/gradle/gradle/releases
|
|
gradleVersion = 7.6
|
|
|
|
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
|
|
kotlin.stdlib.default.dependency = false
|
|
|
|
# Enable Gradle Configuration Cache -> https://docs.gradle.org/current/userguide/configuration_cache.html
|
|
org.gradle.configuration-cache = true
|
|
|
|
# Enable Gradle Build Cache -> https://docs.gradle.org/current/userguide/build_cache.html
|
|
org.gradle.caching = true
|
|
|
|
# org.gradle.logging.level=debug
|
|
|
|
# Enable Gradle Kotlin DSL Lazy Property Assignment -> https://docs.gradle.org/current/userguide/kotlin_dsl.html#kotdsl:assignment
|
|
systemProp.org.gradle.unsafe.kotlin.assignment = true
|
|
|
|
# Temporary workaround for Kotlin Compiler OutOfMemoryError -> https://jb.gg/intellij-platform-kotlin-oom
|
|
kotlin.incremental.useClasspathSnapshot = false |