Skip to content

Providers

Configuring the Vikasit AI provider in Vikasit Code.

Vikasit Code uses Vikasit AI as its provider. All 5 models are hosted in India by Chandorkar Technologies and are available through a subscription plan or pay-as-you-go balance.


Getting started

  1. Run the /connect command in the TUI, select Vikasit, and head to vikasit.ai/auth.

    /connect
  2. Sign in with GitHub, choose a plan or add Go balance, and copy your API key.

  3. Paste your API key.

    ┌ API key
    └ enter
  4. Run /models in the TUI to see the available models.

    /models

Credentials

When you add your API key with the /connect command, it is stored in ~/.local/share/vikasit/auth.json.

You can also set the API key through an environment variable or in your config file.


Configuration

You can customize the Vikasit provider through the provider section in your Vikasit Code config.

vikasit.json
{
"$schema": "https://vikasit.ai/config.json",
"provider": {
"vikasit": {
"options": {
"timeout": 600000
}
}
}
}

Available options

  • timeout - Request timeout in milliseconds (default: 300000). Set to false to disable.
  • chunkTimeout - Timeout in milliseconds between streamed response chunks. If no chunk arrives in time, the request is aborted.
  • apiKey - Your Vikasit API key. You can also set this through the /connect command or the VIKASIT_API_KEY environment variable.

Setting a default model

Set the model key in your config to choose a default model.

vikasit.json
{
"$schema": "https://vikasit.ai/config.json",
"model": "vikasit/coder"
}

The format is vikasit/<model_id>. Available model IDs:

ModelConfig value
Flashvikasit/flash
Standard/3vikasit/std3
Codervikasit/coder
Maxvikasit/max
Fastvikasit/fast

Learn more about models.


Vikasit Code Zen (Subscription)

Vikasit Code Zen is the subscription service. Choose from Lite ($10/month), Pro ($30/month), or Max ($100/month). All plans include all 5 models with rate limits based on rolling 5-hour, 7-day, and 30-day windows.

Learn more about Zen.


Vikasit Code Go (Pay-as-you-go)

Vikasit Code Go provides pay-as-you-go API access. Add balance to your account and use the models in external apps and integrations.

Learn more about Go.


Privacy

All models are hosted in India by Chandorkar Technologies. We follow a zero-retention policy and do not use your data for model training.

Vikasit Code does not store your code or context data. All processing happens locally or through direct API calls to our model infrastructure.