Skip to content

Commit ecf881f

Browse files
committed
fix copy & paste error in LLMs
1 parent b3e2da2 commit ecf881f

4 files changed

Lines changed: 19 additions & 2 deletions

File tree

dashjoin-core/src/test/java/org/dashjoin/util/LLMs.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ static void writeJsonata() throws Exception {
167167
@SuppressWarnings("unchecked")
168168
static void writeWidget() throws Exception {
169169
StringBuffer b = new StringBuffer();
170-
b.append("# Appendix: Form Input Types\n");
170+
b.append("# Appendix: Widgets\n");
171171
Map<String, List<Example>> list = om.readValue(new File("../dashjoin-docs/llms/widget.json"),
172172
new TypeReference<Map<String, List<Example>>>() {});
173173

dashjoin-docs/docs/appendix-configurations.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,14 @@ disallow dark mode
366366
"boolean" : false
367367
}
368368
```
369+
### base-theme
370+
change the base theme
371+
```json
372+
{
373+
"ID" : "base-theme",
374+
"string" : "B&W"
375+
}
376+
```
369377
### autocomplete-timeout-ms
370378
sets the timeout for autocomplete queries to 1 second
371379
```json

dashjoin-docs/docs/appendix-widgets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Appendix: Form Input Types
1+
# Appendix: Widgets
22
## display widget simple value
33
Used to visualize the result of any jsonata expression. Here, we display the value of the session variable x
44
```json

llms.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1156,6 +1156,15 @@ CODE: {
11561156
"boolean" : false
11571157
}
11581158

1159+
TITLE: base-theme
1160+
DESCRIPTION: change the base theme
1161+
FILE: model/dj-config/base-theme.json
1162+
LANGUAGE: json
1163+
CODE: {
1164+
"ID" : "base-theme",
1165+
"string" : "B&W"
1166+
}
1167+
11591168
TITLE: autocomplete-timeout-ms
11601169
DESCRIPTION: sets the timeout for autocomplete queries to 1 second
11611170
FILE: model/dj-config/autocomplete-timeout-ms.json

0 commit comments

Comments
 (0)