fixed the default lollms server port number
Browse files- README.md +2 -2
- lightrag/api/lollms_lightrag_server.py +2 -2
README.md
CHANGED
@@ -1048,7 +1048,7 @@ Before running any of the servers, ensure you have the corresponding backend ser
|
|
1048 |
|
1049 |
#### For LoLLMs Server
|
1050 |
- LoLLMs must be running and accessible
|
1051 |
-
- Default connection: http://localhost:
|
1052 |
- Configure using --lollms-host if running on a different host/port
|
1053 |
|
1054 |
#### For Ollama Server
|
@@ -1072,7 +1072,7 @@ Each server has its own specific configuration options:
|
|
1072 |
| --port | 9621 | RAG server port |
|
1073 |
| --model | mistral-nemo:latest | LLM model name |
|
1074 |
| --embedding-model | bge-m3:latest | Embedding model name |
|
1075 |
-
| --lollms-host | http://localhost:
|
1076 |
| --working-dir | ./rag_storage | Working directory for RAG |
|
1077 |
| --max-async | 4 | Maximum async operations |
|
1078 |
| --max-tokens | 32768 | Maximum token size |
|
|
|
1048 |
|
1049 |
#### For LoLLMs Server
|
1050 |
- LoLLMs must be running and accessible
|
1051 |
+
- Default connection: http://localhost:9600
|
1052 |
- Configure using --lollms-host if running on a different host/port
|
1053 |
|
1054 |
#### For Ollama Server
|
|
|
1072 |
| --port | 9621 | RAG server port |
|
1073 |
| --model | mistral-nemo:latest | LLM model name |
|
1074 |
| --embedding-model | bge-m3:latest | Embedding model name |
|
1075 |
+
| --lollms-host | http://localhost:9600 | LoLLMS backend URL |
|
1076 |
| --working-dir | ./rag_storage | Working directory for RAG |
|
1077 |
| --max-async | 4 | Maximum async operations |
|
1078 |
| --max-tokens | 32768 | Maximum token size |
|
lightrag/api/lollms_lightrag_server.py
CHANGED
@@ -51,8 +51,8 @@ def parse_args():
|
|
51 |
)
|
52 |
parser.add_argument(
|
53 |
"--lollms-host",
|
54 |
-
default="http://localhost:
|
55 |
-
help="lollms host URL (default: http://localhost:
|
56 |
)
|
57 |
|
58 |
# RAG configuration
|
|
|
51 |
)
|
52 |
parser.add_argument(
|
53 |
"--lollms-host",
|
54 |
+
default="http://localhost:9600",
|
55 |
+
help="lollms host URL (default: http://localhost:9600)",
|
56 |
)
|
57 |
|
58 |
# RAG configuration
|