Skip to content

Commit e27a316

Browse files
authored
Merge pull request #761 from ethersphere/llm
add llm plugin
2 parents edd7298 + f100d42 commit e27a316

File tree

11 files changed

+7156
-5438
lines changed

11 files changed

+7156
-5438
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- uses: actions/setup-node@v1
2222
with:
23-
node-version: '18'
23+
node-version: '20'
2424

2525
- name: Build
2626
run: |

.github/workflows/gh-pages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
- uses: actions/setup-node@v1
1919
with:
20-
node-version: '18'
20+
node-version: '20'
2121

2222
- name: Build for gh-pages
2323
run: |

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18
1+
20

docs/develop/dynamic-content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sidebar_label: Dynamic Content
55
---
66

77
:::warning
8-
Under construction, set for major revisions to incorporate content from manifests, rout, and host your website pages
8+
Under construction, set for major revisions.
99
:::
1010

1111

docs/develop/manifests.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ sidebar_label: Manifests ("Virtual Filesystem")
77
import Tabs from '@theme/Tabs';
88
import TabItem from '@theme/TabItem';
99

10+
:::warning
11+
Under construction, set for major revisions.
12+
:::
13+
14+
1015
Bee nodes — and tools like `bee-js` and `swarm-cli` — let you upload entire folders of files to Swarm.
1116

1217
Swarm doesn’t have a traditional file system like your computer does. Instead, when uploading a collection of files, it uses something called a **manifest**, which acts like a map between relative file paths (like `/images/cat.jpg`) and the actual content stored on Swarm.

docs/develop/routing.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ import TabItem from '@theme/TabItem';
88

99
## Routing on Swarm
1010

11+
:::warning
12+
Under construction, set for major revisions.
13+
:::
14+
1115
Swarm does not behave like a traditional web server — there is **no server-side routing**, and every route must correspond to a real file inside the site [manifest](/docs/develop/manifests).
1216

1317
If you try to use typical "clean URLs" like:

0 commit comments

Comments
 (0)