mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-20 04:47:55 +00:00
31 lines
725 B
YAML
31 lines
725 B
YAML
# =================== Lord Of Large Language Models Configuration file ===========================
|
|
version: 7
|
|
binding_name: llama_cpp_official
|
|
model_name: Wizard-Vicuna-7B-Uncensored.ggmlv3.q4_0.bin
|
|
|
|
# Host information
|
|
host: localhost
|
|
port: 9600
|
|
|
|
# Genreration parameters
|
|
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
|
|
|
|
# UI parameters
|
|
debug: False
|
|
db_path: database.db |