mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-19 04:17:52 +00:00
49 lines
983 B
YAML
49 lines
983 B
YAML
# =================== Lord Of Large Language Models Configuration file ===========================
|
|
version: 16
|
|
binding_name: null
|
|
model_name: null
|
|
|
|
# Enables gpu usage
|
|
enable_gpu: true
|
|
|
|
# Host information
|
|
host: localhost
|
|
port: 9600
|
|
|
|
# Genreration parameters
|
|
discussion_prompt_separator: "!@>"
|
|
seed: -1
|
|
n_predict: 1024
|
|
ctx_size: 2048
|
|
temperature: 0.9
|
|
top_k: 50
|
|
top_p: 0.95
|
|
repeat_last_n: 40
|
|
repeat_penalty: 1.2
|
|
|
|
n_threads: 8
|
|
|
|
#Personality parameters
|
|
personalities: ["english/generic/lollms"]
|
|
active_personality_id: 0
|
|
override_personality_model_parameters: false #if true the personality parameters are overriden by those of the configuration (may affect personality behaviour)
|
|
|
|
user_name: user
|
|
user_description: ""
|
|
use_user_name_in_discussions: false
|
|
user_avatar: default_user.svg
|
|
|
|
# UI parameters
|
|
debug: False
|
|
db_path: database.db
|
|
|
|
# Automatic update
|
|
auto_update: false
|
|
|
|
|
|
# Audio
|
|
audio_in_language: 'en-US'
|
|
audio_out_voice: null
|
|
auto_speak: false
|
|
audio_pitch: 1
|
|
silenceTimer: 5000 |