Configuration Overview

Tuvo Code stores configuration in a JSON file located at ~/.tuvo/config.json. This file contains your API keys, provider settings, and other preferences.

Configuration File Location

~/.tuvo/config.json

Example Configuration

{ "provider": "anthropic", "model": "claude-3-5-sonnet-20241022", "apiKey": "sk-ant-...", "maxTokens": 4096, "temperature": 0.7 }

Configuration Commands

You can modify configuration using Tuvo commands:

# Set provider /config provider anthropic # Set model /config model claude-3-5-sonnet-20241022 # Set max tokens /config maxTokens 8192