> ## Documentation Index
> Fetch the complete documentation index at: https://docs.koalavault.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# koava config

> Configure timeout, verbose logging, and Hugging Face CLI settings

# Usage

```bash theme={"system"}
koava config <SUBCOMMAND>
```

For help:

```bash theme={"system"}
koava config -h
```

# Description

The `config` command manages koava's configuration settings.

# Examples

## Basic Configuration

```bash theme={"system"}
# Check current configuration
koava config show

# Set timeout to 2 minutes
koava config set-timeout 120

# Enable verbose logging
koava config set-verbose true
```

## Hugging Face CLI Configuration

```bash theme={"system"}
# Auto-detect Hugging Face CLI
koava config set-huggingface-cli auto

# Specify custom Hugging Face CLI path
koava config set-huggingface-cli /usr/local/bin/huggingface-cli
```

## Reset Configuration

```bash theme={"system"}
# Reset to defaults
koava config reset
```

# Advanced

## Subcommands

### show

Display current configuration:

```bash theme={"system"}
koava config show
```

### set-timeout

Set request timeout in seconds:

```bash theme={"system"}
koava config set-timeout <SECONDS>
```

### set-verbose

Enable or disable verbose logging:

```bash theme={"system"}
koava config set-verbose <true|false>
```

### set-huggingface-cli

Set Hugging Face CLI path (required for `push` command):

```bash theme={"system"}
koava config set-huggingface-cli <PATH|auto>
```

Options:

* `auto` - Auto-detect from PATH (default)
* `/path/to/hf` - Custom path to Hugging Face CLI

<Note>
  The `push` command requires Hugging Face CLI to create public models and upload encrypted models. You must be logged in with `hf auth login` before using `push`.
</Note>

### reset

Reset all configuration to defaults:

```bash theme={"system"}
koava config reset
```

# Related Commands

* [koava status](/koava/status) - Check configuration and connection status
* [koava login](/koava/login) - Authenticate with API key
