format
format
This commit is contained in:
@@ -31,4 +31,3 @@ export default tseslint.config({ ignores: ['dist'] }, prettier, {
|
|||||||
'@typescript-eslint/no-explicit-any': ['off']
|
'@typescript-eslint/no-explicit-any': ['off']
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@@ -191,4 +191,3 @@ const GraphControl = ({
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default GraphControl
|
export default GraphControl
|
||||||
|
|
||||||
|
@@ -123,7 +123,6 @@ if mongo_uri:
|
|||||||
rag_storage_config.DOC_STATUS_STORAGE = "MongoKVStorage"
|
rag_storage_config.DOC_STATUS_STORAGE = "MongoKVStorage"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def get_default_host(binding_type: str) -> str:
|
def get_default_host(binding_type: str) -> str:
|
||||||
default_hosts = {
|
default_hosts = {
|
||||||
"ollama": os.getenv("LLM_BINDING_HOST", "http://localhost:11434"),
|
"ollama": os.getenv("LLM_BINDING_HOST", "http://localhost:11434"),
|
||||||
|
@@ -383,7 +383,7 @@ class Neo4JStorage(BaseGraphStorage):
|
|||||||
async with self._driver.session(database=self._DATABASE) as session:
|
async with self._driver.session(database=self._DATABASE) as session:
|
||||||
try:
|
try:
|
||||||
main_query = ""
|
main_query = ""
|
||||||
if label == '*':
|
if label == "*":
|
||||||
main_query = """
|
main_query = """
|
||||||
MATCH (n)
|
MATCH (n)
|
||||||
WITH collect(DISTINCT n) AS nodes
|
WITH collect(DISTINCT n) AS nodes
|
||||||
|
Reference in New Issue
Block a user