updated documlentation
Browse files
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 |
|
| 963 |
-
| --port | 9621 |
|
| 964 |
-
| --llm-binding | ollama | LLM binding to be used. Supported: lollms, ollama, openai
|
| 965 |
-
| --llm-binding-host |
|
| 966 |
-
| --model | mistral-nemo:latest | LLM model name |
|
| 967 |
-
| --embedding-binding | ollama | Embedding binding to be used. Supported: lollms, ollama, openai
|
| 968 |
-
| --embedding-binding-host |
|
| 969 |
| --embedding-model | bge-m3:latest | Embedding model name |
|
| 970 |
-
| --
|
| 971 |
-
| --
|
| 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 |
-
| --
|
| 977 |
-
| --log-level | INFO | Logging level |
|
| 978 |
-
| --key |
|
|
|
|
|
|
|
|
|
|
| 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 |
|