Integrating Kilo Code with HPC-AI Tech
Kilo Code is an AI-powered coding assistant designed to help developers write, edit, refactor, and understand code more efficiently. By connecting Kilo Code to the HPC-AI Tech Model APIs platform, you can leverage high-performance models like MiniMax-M2.5 through a unified OpenAI-compatible API.
In this guide, we'll walk you through how to integrate Kilo Code with HPC-AI Tech so you can start building with your preferred models in minutes.

🚀 Prerequisites
Before we dive in, make sure you have:
-
Kilo Code installed and configured
-
An HPC-AI Tech API Key (from the Model APIs platform)
🛠️ Configuration: Choose Your Method
Kilo Code offers multiple ways to configure model providers depending on your workflow. Pick what suits you best.
Method 1: Interactive Configuration (Recommended)
Best for developers who prefer a guided, in-app setup.
Open Kilo Code.
Navigate to Settings → Model Providers.
Select OpenAI-Compatible Provider.
Enter the following:
Base URL
https://api.hpc-ai.com/inference/v1
API Key
your-hpc-ai-api-key
Select the model:
minimax/minimax-m2.5
(You can replace this with any model available on the HPC-AI Tech Model APIs platform.)
Save your settings and begin using Kilo Code with HPC-AI Tech.
Method 2: Config File (The Structured Way)
Best for reproducibility, automation, or team environments.
Create or edit your Kilo Code configuration file.
Configure the following:
{
"provider": "openai-compatible",
"baseURL": "https://api.hpc-ai.com/inference/v1",
"apiKey": "${HPC_AI_API_KEY}",
"model": "minimax/minimax-m2.5"
}
Using environment variables for your API key is recommended for improved security.
Method 3: Environment Variables (The Lightweight Way)
Best for quick setups or CI/CD pipelines.
export HPC_AI_API_KEY="sk-your-hpc-ai-api-key"
export OPENAI_API_BASE="https://api.hpc-ai.com/inference/v1"
Then launch Kilo Code and select:
minimax/minimax-m2.5
as your default model.
✅ Verifying the Connection
After configuration, it's important to confirm everything is working correctly.
-
Restart Kilo Code (if required)
-
Open a project
-
Ask the assistant to generate or explain code
-
Ensure responses are returned successfully from the model
A successful response confirms:
-
Your API key is valid
-
The endpoint is reachable
-
The model is correctly configured
🎯 Summary
By integrating Kilo Code with HPC-AI Tech, you unlock:
-
Access to multiple state-of-the-art AI models
-
OpenAI-compatible APIs
-
Cost-efficient inference
-
Low-latency model serving
-
Flexible model switching through a single platform
Whether you're writing new features, refactoring existing projects, or accelerating everyday development, HPC-AI Tech provides the performance and flexibility needed to build faster.
Happy coding!