Show HN: Use Third Party LLM API in JetBrains AI Assistant

2 months ago 2

Proxy remote LLM API as Local model. Especially works for using custom LLM in JetBrains AI Assistant.

Powered by Ktor and kotlinx.serialization. Thanks to their no-reflex features.

Currently, JetBrains AI Assistant provides a free plan with very limited quotes. I tried out and my quote ran out quickly.

I already bought other LLM API tokens, such like Gemini and Qwen. So I started to think of using them in AI Assistant. Unfortunately, only local models from LM Studio and Ollama are supported. So I started to work on this proxy application that proxy third party LLM API as LM Studio and Ollama API so that I can use them in my JetBrains IDEs.

This is Just a simple task, so I started to use the official SDKs as clients and write a simple Ktor server that provides endpoints as LM Studio and Ollama. The problem appears when I try to distribute it as a GraalVM native image. The official Java SDKS uses too many dynamic features, making it hard to compile into a native image, even with a tracing agent. So I decided to implement a simple client of streaming chat completion API by myself with Ktor and kotlinx.serialization which are both no-reflex, functional and DSL styled.

As you can see, this application is distributed as a fat runnable jar and a GraalVM native image, which makes it cross-platform and fast to start.

The development of this application gives me confidence in Kotlin/Ktor/kotlinx.serialization. The Kotlin world uses more functional programming and less reflexion, which makes it more suitable for GraalVM native image, with faster startup and less memory usage.

Proxy from: OpenAI, Claude, DashScope(Alibaba Qwen), Gemini, Deepseek, Mistral, SiliconFlow.

Proxy as: LM Studio, Ollama.

Streaming chat completion API only.

This application is a proxy server, distributed as a fat runnable jar and a GraalVM native image (Windows x64).

Run the application, and you will see a help message:

2025-05-02 10:43:53 INFO Help - It looks that you are starting the program for the first time here. 2025-05-02 10:43:53 INFO Help - A default config file is created at your_path\config.yml with schema annotation. 2025-05-02 10:43:53 INFO Config - Config file watcher started at your_path\config.yml 2025-05-02 10:43:53 INFO LM Studio Server - LM Studio Server started at 1234 2025-05-02 10:43:53 INFO Ollama Server - Ollama Server started at 11434 2025-05-02 10:43:53 INFO Model List - Model list loaded with: []

Then you can edit the config file to set up your proxy server.

This config file is automatically hot-reloaded when you change it. Only the influenced parts of the server will be updated.

When first generating the config file, it will be created with schema annotations. This will bring completion and check in your editor.

# $schema: https://github.com/Stream29/ProxyAsLocalModel/raw/master/config_v2.schema.json lmStudio: port: 1234 # This is default value enabled: true # This is default value ollama: port: 11434 # This is default value enabled: true # This is default value client: socketTimeout: 1919810 # Long.MAX_VALUE is default value, in milliseconds connectionTimeout: 1919810 # Long.MAX_VALUE is default value, in milliseconds requestTimeout: 1919810 # Long.MAX_VALUE is default value, in milliseconds retry: 3 # This is default value delayBeforeRetry: 1000 # This is default value, in milliseconds apiProviders: OpenAI: type: OpenAi baseUrl: https://api.openai.com/v1 apiKey: <your_api_key> modelList: - gpt-4o Claude: type: Claude apiKey: <your_api_key> modelList: - claude-3-7-sonnet Qwen: type: DashScope apiKey: <your_api_key> modelList: # This is default value - qwen-max - qwen-plus - qwen-turbo - qwen-long DeepSeek: type: DeepSeek apiKey: <your_api_key> modelList: # This is default value - deepseek-chat - deepseek-reasoner Mistral: type: Mistral apiKey: <your_api_key> modelList: # This is default value - codestral-latest - mistral-large SiliconFlow: type: SiliconFlow apiKey: <your_api_key> modelList: - Qwen/Qwen3-235B-A22B - Pro/deepseek-ai/DeepSeek-V3 - THUDM/GLM-4-32B-0414 Gemini: type: Gemini apiKey: <your_api_key> modelList: - gemini-2.5-flash-preview-04-17
Read Entire Article