lollms-webui/configs/config.yaml

58 lines
1.3 KiB
YAML
Raw Normal View History

2023-06-05 01:21:12 +02:00
# =================== Lord Of Large Language Models Configuration file ===========================
2023-08-23 04:21:58 +02:00
version: 19
2023-06-25 21:06:47 +02:00
binding_name: null
2023-06-15 21:19:19 +02:00
model_name: null
2023-06-05 01:21:12 +02:00
2023-07-19 17:41:23 +02:00
# Enables gpu usage
enable_gpu: true
2023-06-05 01:21:12 +02:00
# Host information
2023-04-14 11:58:07 +02:00
host: localhost
port: 9600
2023-06-05 01:21:12 +02:00
# Genreration parameters
2023-07-19 17:41:23 +02:00
discussion_prompt_separator: "!@>"
2023-05-07 03:44:42 +02:00
seed: -1
2023-06-05 01:21:12 +02:00
n_predict: 1024
ctx_size: 2048
temperature: 0.9
top_k: 50
2023-04-12 22:36:03 +02:00
top_p: 0.95
2023-06-05 01:21:12 +02:00
repeat_last_n: 40
repeat_penalty: 1.2
n_threads: 8
#Personality parameters
2023-08-18 01:29:53 +02:00
personalities: ["generic/lollms"]
2023-06-08 08:58:02 +02:00
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)
2023-06-05 01:21:12 +02:00
user_name: user
2023-07-16 18:57:30 +02:00
user_description: ""
use_user_name_in_discussions: false
user_avatar: default_user.svg
2023-06-05 01:21:12 +02:00
# UI parameters
debug: False
2023-07-16 18:57:30 +02:00
db_path: database.db
# Automatic update
2023-08-18 01:29:53 +02:00
auto_update: true
2023-07-21 23:59:24 +02:00
# Audio
audio_in_language: 'en-US'
audio_out_voice: null
2023-07-22 03:17:30 +02:00
auto_speak: false
2023-07-28 01:16:26 +02:00
audio_pitch: 1
2023-08-23 04:21:58 +02:00
silenceTimer: 5000
# Data vectorization
data_vectorization_method: "ftidf_vectorizer" #"model_embedding" or "ftidf_vectorizer"
data_visualization_method: "PCA" #"PCA" or "TSNE"
data_vectorization_save_db: False # For each new session, new files
data_vectorization_chunk_size: 512 # chunk size
data_vectorization_overlap_size: 128 # overlap between chunks size
data_vectorization_nb_chunks: 2 # number of chunks to use