mirror of
https://github.com/ParisNeo/lollms.git
synced 2024-12-18 20:27:58 +00:00
uprgaded config
This commit is contained in:
parent
9eee751ccf
commit
3fb04e62b1
@ -1,5 +1,5 @@
|
||||
# =================== Lord Of Large Language Models Configuration file ===========================
|
||||
version: 26
|
||||
version: 27
|
||||
binding_name: null
|
||||
model_name: null
|
||||
|
||||
@ -14,7 +14,7 @@ port: 9601
|
||||
discussion_prompt_separator: "!@>"
|
||||
seed: -1
|
||||
n_predict: 1024
|
||||
ctx_size: 2048
|
||||
ctx_size: 4048
|
||||
min_n_predict: 256
|
||||
temperature: 0.9
|
||||
top_k: 50
|
||||
@ -45,6 +45,7 @@ debug: false
|
||||
|
||||
# Data vectorization
|
||||
use_files: true # Activate using files
|
||||
data_vectorization_visualize_on_vectorization: false # if active, the vectorizer wil lshow data whenever index is called
|
||||
data_vectorization_activate: true # To activate/deactivate data vectorization
|
||||
data_vectorization_method: "ftidf_vectorizer" #"model_embedding" or "ftidf_vectorizer"
|
||||
data_visualization_method: "PCA" #"PCA" or "TSNE"
|
||||
|
@ -1,20 +1,19 @@
|
||||
# =================== Lord Of Large Language Models Configuration file ===========================
|
||||
version: 26
|
||||
version: 27
|
||||
binding_name: null
|
||||
model_name: null
|
||||
|
||||
# Enables gpu usage
|
||||
enable_gpu: true
|
||||
|
||||
|
||||
# Host information
|
||||
host: localhost
|
||||
port: 9601
|
||||
port: 9600
|
||||
|
||||
# Genreration parameters
|
||||
discussion_prompt_separator: "!@>"
|
||||
seed: -1
|
||||
n_predict: 1024
|
||||
ctx_size: 2048
|
||||
ctx_size: 4084
|
||||
min_n_predict: 256
|
||||
temperature: 0.9
|
||||
top_k: 50
|
||||
@ -29,24 +28,40 @@ personalities: ["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)
|
||||
|
||||
# Extensions
|
||||
extensions: []
|
||||
|
||||
# User infos
|
||||
user_name: user
|
||||
user_description: ""
|
||||
use_user_name_in_discussions: false
|
||||
user_avatar: default_user
|
||||
user_avatar: default_user.svg
|
||||
use_user_informations_in_discussion: false
|
||||
|
||||
# Automatic update
|
||||
auto_update: false
|
||||
# UI parameters
|
||||
db_path: database.db
|
||||
|
||||
# Automatic updates
|
||||
debug: False
|
||||
auto_update: true
|
||||
auto_save: true
|
||||
debug: false
|
||||
# Enables gpu usage
|
||||
enable_gpu: true
|
||||
# Automatically open the browser
|
||||
auto_show_browser: true
|
||||
|
||||
# Audio
|
||||
audio_in_language: 'en-US'
|
||||
audio_out_voice: null
|
||||
auto_speak: false
|
||||
audio_pitch: 1
|
||||
audio_auto_send_input: true
|
||||
audio_silenceTimer: 5000
|
||||
|
||||
# Data vectorization
|
||||
use_discussions_history: false # Activate vectorizing previous conversations
|
||||
data_vectorization_visualize_on_vectorization: false
|
||||
use_files: true # Activate using files
|
||||
data_vectorization_activate: true # To activate/deactivate data vectorization
|
||||
data_vectorization_method: "ftidf_vectorizer" #"model_embedding" or "ftidf_vectorizer"
|
||||
data_vectorization_method: "tfidf_vectorizer" #"model_embedding" or "tfidf_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
|
||||
|
Loading…
Reference in New Issue
Block a user