Commit unncessary files update

This commit is contained in:
Roy
2025-03-08 21:06:19 +00:00
parent 04fdc617bb
commit 16536c870c
2 changed files with 7 additions and 28 deletions

21
.gitignore vendored
View File

@@ -64,24 +64,3 @@ gui/
# unit-test files # unit-test files
test_* test_*
Miniconda3-latest-Linux-x86_64.sh
requirements_basic.txt
requirements.txt
examples/test_chromadb.py
examples/test_faiss.py
examples/test_neo4j.py
.gitignore
requirements.txt
examples/test_chromadb.py
examples/test_faiss.py
examples/*
tests/test_lightrag_ollama_chat.py
requirements.txt
requirements.txt
examples/test_chromadb.py
examples/test_faiss.py
examples/test_neo4j.py
tests/test_lightrag_ollama_chat.py
examples/test_chromadb.py
examples/test_faiss.py
examples/test_neo4j.py

View File

@@ -38,16 +38,16 @@ class McpError(Exception):
DEFAULT_CONFIG = { DEFAULT_CONFIG = {
"server": { "server": {
"host": "host.docker.internal", "host": "localhost",
"port": 11434, "port": 9621,
"model": "llama3.2:latest", "model": "lightrag:latest",
"timeout": 300, "timeout": 300,
"max_retries": 1, "max_retries": 1,
"retry_delay": 1, "retry_delay": 1,
}, },
"test_cases": { "test_cases": {
"basic": {"query": "How many disciples did Tang Seng have?"}, "basic": {"query": "唐僧有几个徒弟"},
"generate": {"query": "Who directed the TV series Journey to the West?"}, "generate": {"query": "电视剧西游记导演是谁"},
}, },
} }
@@ -763,8 +763,8 @@ def parse_args() -> argparse.Namespace:
Configuration file (config.json): Configuration file (config.json):
{ {
"server": { "server": {
"host": "host.docker.internal", # Server address "host": "localhost", # Server address
"port": 11434, # Server port "port": 9621, # Server port
"model": "lightrag:latest" # Default model name "model": "lightrag:latest" # Default model name
}, },
"test_cases": { "test_cases": {