fix: default log dir
This commit is contained in:
parent
35c4115441
commit
ba9c8cd734
1 changed files with 1 additions and 1 deletions
|
|
@ -129,7 +129,7 @@ class LightRAG:
|
||||||
# logging
|
# logging
|
||||||
current_log_level = logger.level
|
current_log_level = logger.level
|
||||||
log_level: str = field(default=current_log_level)
|
log_level: str = field(default=current_log_level)
|
||||||
logging_dir: str = field(default="logs")
|
logging_dir: str = field(default="./")
|
||||||
|
|
||||||
# text chunking
|
# text chunking
|
||||||
chunk_token_size: int = 1200
|
chunk_token_size: int = 1200
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue