Auto-commit: OCR workflow improvements, performance optimizations, and bug fixes
This commit is contained in:
98
server_test.txt
Normal file
98
server_test.txt
Normal file
@@ -0,0 +1,98 @@
|
||||
WARNING:root:>> Forcing workers=1 in uvicorn mode(Ignoring workers=2)
|
||||
DEBUG: Authentication disabled - using guest access only
|
||||
DEBUG: Final accounts (disabled): {}
|
||||
|
||||
LightRAG log file: c:\aaWORK\railseek6\LightRAG-main\logs\lightrag.log
|
||||
|
||||
|
||||
LightRAG Server v1.4.8.1/0222
|
||||
Fast, Lightweight RAG Server Implementation
|
||||
============================================================
|
||||
|
||||
Server Configuration:
|
||||
Host: 0.0.0.0
|
||||
Port: 3015
|
||||
Workers: 1
|
||||
Timeout: 300
|
||||
CORS Origins: *
|
||||
SSL Enabled: False
|
||||
Ollama Emulating Model: lightrag:latest
|
||||
Log Level: INFO
|
||||
Verbose Debug: False
|
||||
History Turns: 0
|
||||
API Key: Set
|
||||
JWT Auth: Disabled
|
||||
|
||||
Directory Configuration:
|
||||
Working Directory: c:\aaWORK\railseek6\LightRAG-main\rag_storage
|
||||
Input Directory: c:\aaWORK\railseek6\inputs
|
||||
|
||||
LLM Configuration:
|
||||
Binding: openai
|
||||
Host: https://api.openai.com/v1
|
||||
Model: deepseek-chat
|
||||
Max Async for LLM: 4
|
||||
Summary Context Size: 12000
|
||||
LLM Cache Enabled: True
|
||||
LLM Cache for Extraction Enabled: True
|
||||
|
||||
Embedding Configuration:
|
||||
Binding: ollama
|
||||
Host: http://localhost:11434
|
||||
Model: bge-m3:latest
|
||||
Dimensions: 1024
|
||||
|
||||
RAG Configuration:
|
||||
Summary Language: English
|
||||
Entity Types: ['Person', 'Organization', 'Location', 'Event', 'Concept', 'Method', 'Content', 'Data', 'Artifact', 'NaturalObject']
|
||||
Max Parallel Insert: 2
|
||||
Chunk Size: 1200
|
||||
Chunk Overlap Size: 100
|
||||
Cosine Threshold: 0.2
|
||||
Top-K: 40
|
||||
Force LLM Summary on Merge: 8
|
||||
|
||||
Storage Configuration:
|
||||
KV Storage: JsonKVStorage
|
||||
Vector Storage: NanoVectorDBStorage
|
||||
Graph Storage: NetworkXStorage
|
||||
Document Status Storage: JsonDocStatusStorage
|
||||
Workspace: -
|
||||
|
||||
Server starting up...
|
||||
|
||||
|
||||
Server Access Information:
|
||||
WebUI (local): http://localhost:3015
|
||||
Remote Access: http://<your-ip-address>:3015
|
||||
API Documentation (local): http://localhost:3015/docs
|
||||
Alternative Documentation (local): http://localhost:3015/redoc
|
||||
|
||||
Note:
|
||||
Since the server is running on 0.0.0.0:
|
||||
- Use 'localhost' or '127.0.0.1' for local access
|
||||
- Use your machine's IP address for remote access
|
||||
- To find your IP address:
|
||||
<20> Windows: Run 'ipconfig' in terminal
|
||||
<20> Linux/Mac: Run 'ifconfig' or 'ip addr' in terminal
|
||||
|
||||
Security Notice:
|
||||
API Key authentication is enabled.
|
||||
Make sure to include the X-API-Key header in all your requests.
|
||||
Traceback (most recent call last):
|
||||
File "<frozen runpy>", line 198, in _run_module_as_main
|
||||
File "<frozen runpy>", line 88, in _run_code
|
||||
File "c:\aaWORK\railseek6\LightRAG-main\lightrag\api\lightrag_server.py", line 981, in <module>
|
||||
main()
|
||||
File "c:\aaWORK\railseek6\LightRAG-main\lightrag\api\lightrag_server.py", line 950, in main
|
||||
display_splash_screen(global_args)
|
||||
File "c:\aaWORK\railseek6\LightRAG-main\lightrag\api\utils_api.py", line 281, in display_splash_screen
|
||||
ASCIIColors.magenta("\n\U0001f4e1 Server Configuration:")
|
||||
File "C:\Program Files\Python311\Lib\site-packages\ascii_colors\__init__.py", line 1917, in magenta
|
||||
ASCIIColors.print(text, ASCIIColors.color_magenta, "", "", end, flush, file)
|
||||
File "C:\Program Files\Python311\Lib\site-packages\ascii_colors\__init__.py", line 1880, in print
|
||||
print(f"{prefix}{text}{ASCIIColors.color_reset}", end=end, flush=flush, file=file)
|
||||
File "C:\Program Files\Python311\Lib\encodings\cp1252.py", line 19, in encode
|
||||
return codecs.charmap_encode(input,self.errors,encoding_table)[0]
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
UnicodeEncodeError: 'charmap' codec can't encode character '\U0001f4e1' in position 7: character maps to <undefined>
|
||||
Reference in New Issue
Block a user