https://github.com/mloncode/oss-llm-intellij
https://github.com/mloncode/oss-llm-intellij
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mloncode/oss-llm-intellij
- Owner: mloncode
- License: apache-2.0
- Created: 2023-09-12T14:46:30.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-29T06:12:05.000Z (about 2 years ago)
- Last Synced: 2024-04-17T19:21:25.244Z (almost 2 years ago)
- Language: Kotlin
- Homepage:
- Size: 1.81 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# IntelliJ plugin for Open Source code completion models

[](https://plugins.jetbrains.com/plugin/PLUGIN_ID)
[](https://plugins.jetbrains.com/plugin/PLUGIN_ID)
## Run model inference
To run OSS LLM use:
* a simple local [inference server](./server).
## Plugin development
```
./gradlew buildPlugin
```
### Plugin installation
- Using the IDE built-in plugin system:
Settings/Preferences > Plugins > Marketplace > Search for "OSS LLM" >
Install
- Manually:
Download the [latest release](https://github.com/mloncode/intellij/releases/latest) and install it manually using
Settings/Preferences > Plugins > ⚙️ > Install plugin from disk...
Use Open Source LLMs for code completion in IntelliJ IDEs.
Supported features
* Ghost text/inline code completion
### Template ToDo list
- [x] Create a new [IntelliJ Platform Plugin Template][template] project.
- [x] Adjust the [pluginGroup](./gradle.properties), [plugin ID](./src/main/resources/META-INF/plugin.xml) and [sources package](./src/main/kotlin).
- [x] Review the [Legal Agreements](https://plugins.jetbrains.com/docs/marketplace/legal-agreements.html?from=IJPluginTemplate).
- [ ] [Publish a plugin manually](https://plugins.jetbrains.com/docs/intellij/publishing-plugin.html?from=IJPluginTemplate) for the first time.
- [ ] Set the `PLUGIN_ID` in the above README badges.
- [ ] Set the [Plugin Signing](https://plugins.jetbrains.com/docs/intellij/plugin-signing.html?from=IJPluginTemplate) related [secrets](https://github.com/JetBrains/intellij-platform-plugin-template#environment-variables).
- [ ] Set the [Deployment Token](https://plugins.jetbrains.com/docs/marketplace/plugin-upload.html?from=IJPluginTemplate).