ParisNeo commited on
Commit
d307d1a
·
1 Parent(s): 2019ada

updated documlentation

Browse files
Files changed (1) hide show
  1. README.md +15 -12
README.md CHANGED
@@ -959,23 +959,26 @@ Each server has its own specific configuration options:
959
 
960
  | Parameter | Default | Description |
961
  |-----------|---------|-------------|
962
- | --host | 0.0.0.0 | RAG server host |
963
- | --port | 9621 | RAG server port |
964
- | --llm-binding | ollama | LLM binding to be used. Supported: lollms, ollama, openai (default: ollama) |
965
- | --llm-binding-host | http://localhost:11434 if the binding is ollama, http://localhost:9600 if the binding is lollms, https://api.openai.com/v1 if the binding is openai | llm server host URL (default: http://localhost:11434 if the binding is ollama, http://localhost:9600 if the binding is lollms, https://api.openai.com/v1 if the binding is openai) |
966
- | --model | mistral-nemo:latest | LLM model name |
967
- | --embedding-binding | ollama | Embedding binding to be used. Supported: lollms, ollama, openai (default: ollama) |
968
- | --embedding-binding-host | http://localhost:11434 if the binding is ollama, http://localhost:9600 if the binding is lollms, https://api.openai.com/v1 if the binding is openai | embedding server host URL (default: http://localhost:11434 if the binding is ollama, http://localhost:9600 if the binding is lollms, https://api.openai.com/v1 if the binding is openai) |
969
  | --embedding-model | bge-m3:latest | Embedding model name |
970
- | --embedding-binding-host | http://localhost:9600 | LoLLMS backend URL |
971
- | --working-dir | ./rag_storage | Working directory for RAG |
972
  | --max-async | 4 | Maximum async operations |
973
  | --max-tokens | 32768 | Maximum token size |
974
  | --embedding-dim | 1024 | Embedding dimensions |
975
  | --max-embed-tokens | 8192 | Maximum embedding token size |
976
- | --input-file | ./book.txt | Initial input file |
977
- | --log-level | INFO | Logging level |
978
- | --key | none | Access Key to protect the lightrag service |
 
 
 
979
 
980
 
981
 
 
959
 
960
  | Parameter | Default | Description |
961
  |-----------|---------|-------------|
962
+ | --host | 0.0.0.0 | Server host |
963
+ | --port | 9621 | Server port |
964
+ | --llm-binding | ollama | LLM binding to be used. Supported: lollms, ollama, openai |
965
+ | --llm-binding-host | (dynamic) | LLM server host URL. Defaults based on binding: http://localhost:11434 (ollama), http://localhost:9600 (lollms), https://api.openai.com/v1 (openai) |
966
+ | --llm-model | mistral-nemo:latest | LLM model name |
967
+ | --embedding-binding | ollama | Embedding binding to be used. Supported: lollms, ollama, openai |
968
+ | --embedding-binding-host | (dynamic) | Embedding server host URL. Defaults based on binding: http://localhost:11434 (ollama), http://localhost:9600 (lollms), https://api.openai.com/v1 (openai) |
969
  | --embedding-model | bge-m3:latest | Embedding model name |
970
+ | --working-dir | ./rag_storage | Working directory for RAG storage |
971
+ | --input-dir | ./inputs | Directory containing input documents |
972
  | --max-async | 4 | Maximum async operations |
973
  | --max-tokens | 32768 | Maximum token size |
974
  | --embedding-dim | 1024 | Embedding dimensions |
975
  | --max-embed-tokens | 8192 | Maximum embedding token size |
976
+ | --timeout | None | Timeout in seconds (useful when using slow AI). Use None for infinite timeout |
977
+ | --log-level | INFO | Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL) |
978
+ | --key | None | API key for authentication. Protects lightrag server against unauthorized access |
979
+ | --ssl | False | Enable HTTPS |
980
+ | --ssl-certfile | None | Path to SSL certificate file (required if --ssl is enabled) |
981
+ | --ssl-keyfile | None | Path to SSL private key file (required if --ssl is enabled) |
982
 
983
 
984