Skip to main content

Overview

The Jan Data Folder is where all application data is stored locally on your computer. This includes models, conversations, settings, and extensions.

Default Locations

Jan stores data in different locations based on your operating system:
You can view and change the data folder location in Settings > Advanced > Jan Data Folder.

Folder Structure

The Jan data folder is organized into several subdirectories:

Detailed Structure

Models Directory

Stores all downloaded model files:
Example:
Model files are typically large (2GB-40GB+). Ensure adequate storage space before downloading.

Threads Directory

Stores conversation history:
thread.json example:
messages.jsonl example:

Assistants Directory

Stores custom assistant configurations:
Assistant file example:

Projects Directory

Stores project configurations and metadata:
project.json example:

Embeddings Directory

Stores vector databases for RAG (Retrieval Augmented Generation):
Embeddings are created when you attach documents with RAG mode enabled. They allow semantic search across your documents.

Uploads Directory

Stores attached files and images:
Files are named using unique identifiers and organized by thread.

Extensions Directory

Stores MCP servers and plugin configurations:
servers.json example:

Configuration Files

settings.json

Main application settings:

providers.json

Model provider configurations:

Storage Management

Checking Storage Usage

  1. Go to Settings > Advanced
  2. View Jan Data Folder section
  3. See total storage used

Cleaning Up Storage

Delete Unused Models

Remove model directories you no longer need.

Clear Old Threads

Delete conversation directories you don’t need to keep.

Remove Embeddings

Delete vector databases for old threads.
Deleting threads and embeddings is permanent. Export conversations you want to keep before deletion.

Moving the Data Folder

To relocate your Jan data:
  1. Close Jan completely
  2. Copy the entire Jan folder to the new location
  3. Open Jan and go to Settings > Advanced
  4. Click Change next to Jan Data Folder
  5. Select the new location
  6. Restart Jan
Alternatively:
  1. In Jan, go to Settings > Advanced
  2. Click Change next to Jan Data Folder
  3. Select new location
  4. Choose to Move or Copy existing data
  5. Wait for the transfer to complete
  6. Restart Jan
When moving to a new drive, ensure it has sufficient space for all your models and data.

Backup and Restore

Creating Backups

Manual backup:
  1. Close Jan
  2. Copy the entire Jan data folder to your backup location
  3. Include all subdirectories
Automated backup:

Restoring from Backup

  1. Close Jan
  2. Delete or rename the current Jan data folder
  3. Copy your backup to the Jan data folder location
  4. Restart Jan
Selective restore: You can restore individual components (threads, assistants, models) by copying only specific subdirectories.

Troubleshooting

Corrupted Data Folder

If Jan fails to start:
  1. Rename the current data folder (e.g., jan-old)
  2. Start Jan (creates a fresh folder)
  3. Selectively copy back data from jan-old:
    • Start with settings.json
    • Then assistants/
    • Then threads/
    • Finally models/ (if not corrupted)

Missing Models After Update

If models disappear after an update:
  1. Check Settings > Advanced > Jan Data Folder
  2. Verify the path is correct
  3. Open the folder and check models/ directory
  4. If models exist but aren’t showing, restart Jan
  5. If still missing, re-import from the folder

Large Storage Usage

If the data folder is too large:
  1. Check which models are installed (models are the largest files)
  2. Delete unused models in Settings > Models
  3. Clean up old threads and embeddings
  4. Consider moving to a larger drive
A typical Jan installation with 2-3 models uses 10-50GB of storage. Large models (70B parameters) can exceed 40GB each.

Security Considerations

Data Encryption

  • Jan data is stored unencrypted by default
  • Use full-disk encryption (FileVault, BitLocker) for protection
  • Sensitive conversations should be stored on encrypted volumes

File Permissions

Jan data folder permissions:

API Keys and Tokens

Stored in providers.json and extensions/mcp/servers.json:
  • Never commit these files to version control
  • Use environment variables for sensitive values
  • Rotate keys regularly
If sharing backups, remove sensitive files (providers.json, MCP configs) or redact API keys.