File size: 610 Bytes
559af1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
#!/usr/bin/env python3
# Copyright (c) 2025 Codette
# Licensed under the MIT License.
class DefaultConfig:
"""Bot Configuration"""
PORT = 7860
APP_ID = ""
APP_PASSWORD = ""
# HuggingFace settings
HF_TOKEN = ""
# Logging settings
LOG_LEVEL = "INFO"
# Model settings
DEFAULT_TEMPERATURE = 0.7
MAX_LENGTH = 1024
CONTEXT_WINDOW = 2048
# Memory settings
MAX_MEMORY = 50
MEMORY_CONTEXT_SIZE = 5
# Perspective settings
PERSPECTIVES = ["newton", "davinci", "human_intuition", "quantum_computing"] |