Configuration

Configure and customize your Gconv Prune instance

Overview

This guide will help you configure your Gconv Prune instance for optimal performance and customization.

Environment Variables

Required Variables

NEXT_PUBLIC_API_URL

The base URL for API requests. Example: https://api.gconvPrune.fun

AI_MODEL

The default AI model to use. Options: standard, advanced, fast, specialized

LANGUAGE

Default language for the interface. Example: en, es, fr

Optional Variables

DEBUG_MODE

Enable debug logging. Default: false

ENABLE_ANALYTICS

Enable usage analytics. Default: true

MAX_TOKENS

Maximum tokens per request. Default: 2048

Application Settings

UI Configuration

Theme Settings

  • Dark/Light mode toggle
  • Custom color schemes
  • Font customization

Chat Settings

Behavior Settings

  • Message history length
  • Response streaming
  • Auto-save intervals

Advanced Configuration

Custom Configuration File

Create a gconv.config.js file in your project root:

module.exports = {
  theme: {
    dark: {
      primary: '#3B82F6',
      secondary: '#8B5CF6'
    },
    light: {
      primary: '#2563EB',
      secondary: '#7C3AED'
    }
  },
  chat: {
    maxHistory: 100,
    streamResponses: true,
    autoSaveInterval: 30000
  },
  api: {
    baseUrl: process.env.NEXT_PUBLIC_API_URL,
    timeout: 30000,
    retries: 3
  }
}

Best Practices

Use Environment Variables

Always use environment variables for sensitive configuration values.

Validate Configuration

Always validate configuration values before using them in your application.

Need Help?

For more detailed configuration options, check our advanced configuration guide or contact our support team.