Skip to main content

Novita AI Provider

Access Novita AI through CCS’s built-in Anthropic-compatible preset. CCS ships the base URL, default profile name, and default model so you can go from API key to prompt quickly.

Overview

FieldDetails
Preset IDnovita
Default Profile Namenovita
Default Modeldeepseek/deepseek-v3.2
Base URLhttps://api.novita.ai/anthropic
Auth MethodAPI Key
CategoryAlternative

Quick Start

# Create profile with preset
ccs api create --preset novita

# Use default profile name
ccs novita "summarize this pull request"

Authentication

Novita uses API key authentication.
1

Get API Key

Sign in to novita.ai and generate an API key for Anthropic-compatible access.
2

Create Profile

ccs api create --preset novita
Enter the profile name when prompted, or accept the default novita. Then paste your API key.
3

Run with CCS

ccs novita "triage this production incident"

Model Configuration

The preset defaults to deepseek/deepseek-v3.2, but you can override the model if Novita exposes another Anthropic-compatible model you want to use.

Dashboard

ccs config
# Navigate to API Profiles → Create → Novita AI

Manual Configuration

Create ~/.ccs/novita.settings.json:
{
  "env": {
    "ANTHROPIC_BASE_URL": "https://api.novita.ai/anthropic",
    "ANTHROPIC_AUTH_TOKEN": "your-novita-api-key",
    "ANTHROPIC_MODEL": "deepseek/deepseek-v3.2"
  }
}
Register it in ~/.ccs/config.yaml:
profiles:
  novita: ~/.ccs/novita.settings.json

Commands Reference

# Create profile
ccs api create --preset novita

# Use default profile name
ccs novita "your prompt"

# List API profiles
ccs api list

# Remove profile
ccs api remove novita

Troubleshooting

401 Unauthorized

  • Re-check the API key entered during setup
  • Recreate the profile if needed: ccs api remove novita && ccs api create --preset novita

Model Not Found

  • Confirm the ANTHROPIC_MODEL value matches a Novita-supported Anthropic-compatible model
  • Reset to the shipped default: deepseek/deepseek-v3.2

Next Steps

API Profiles Overview

Compare Novita with other API-key providers

Provider Overview

See where Novita fits in the full CCS provider matrix