Increased graph layout iteration limits and defaults.
- Raised max layout iterations to 30 - Set default iterations to 15
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -5,7 +5,7 @@
|
||||
<link rel="icon" type="image/svg+xml" href="./logo.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Lightrag</title>
|
||||
<script type="module" crossorigin src="./assets/index-EWBvZgEb.js"></script>
|
||||
<script type="module" crossorigin src="./assets/index-C_HczF2h.js"></script>
|
||||
<link rel="stylesheet" crossorigin href="./assets/index-CQ75jPFs.css">
|
||||
</head>
|
||||
<body>
|
||||
|
@@ -294,7 +294,7 @@ export default function Settings() {
|
||||
<LabeledNumberInput
|
||||
label="Max Layout Iterations"
|
||||
min={1}
|
||||
max={20}
|
||||
max={30}
|
||||
value={graphLayoutMaxIterations}
|
||||
onEditFinished={setGraphLayoutMaxIterations}
|
||||
/>
|
||||
|
@@ -81,7 +81,7 @@ const useSettingsStoreBase = create<SettingsState>()(
|
||||
|
||||
graphQueryMaxDepth: 3,
|
||||
graphMinDegree: 0,
|
||||
graphLayoutMaxIterations: 10,
|
||||
graphLayoutMaxIterations: 15,
|
||||
|
||||
queryLabel: defaultQueryLabel,
|
||||
|
||||
|
Reference in New Issue
Block a user