diff --git a/docs/faq.mdx b/docs/faq.mdx new file mode 100644 index 0000000..adbe70a --- /dev/null +++ b/docs/faq.mdx @@ -0,0 +1,44 @@ +--- +sidebar_position: 7 +id: "faq" +title: "FAQ" +--- + +# FAQ + +### How do I set up my own LLM? + +You must manually edit the [config file](./config) located at `~/.waveterm/config/settings.json`. + +| Key Name | Type | Function | +|----------|------|----------| +| ai:baseurl | string | Set the AI Base Url (must be OpenAI compatible) | +| ai:apitoken | string | your AI api token | +| ai:name | string | string to display in the Wave AI block header | +| ai:model | string | model name to pass to API | +| ai:maxtokens | int | max tokens to pass to API | +| ai:timeoutms | int | timeout (in milliseconds) for AI calls | + +Here's an example of pointing it to a local Ollama instance. Note that to get the text in the header of the AI block +to update, you'll need to set the "ai:name" key. For ollama, you'll also need to provide something for the +apitoken (even though it is ignored). + +Here are the ollma open AI compatibility docs: https://github.com/ollama/ollama/blob/main/docs/openai.md + +```json +{ + "ai:baseurl": "http://localhost:11434/v1", + "ai:name": "llama3.2", + "ai:model": "llama3.2", + "ai:apitoken": "ollama" +} +``` + +### How can I see the block numbers? + +The block numbers will appear when you hold down Ctrl-Shift (and disappear once you release the key combo). + +### How do I make a remote connection? + +There is a button in the header. Click the or +and type the `[user]@[host]` that you wish to connect to. \ No newline at end of file diff --git a/docs/index.mdx b/docs/index.mdx index 30f68c6..f9b3ab0 100644 --- a/docs/index.mdx +++ b/docs/index.mdx @@ -19,6 +19,7 @@ References: * [Telemetry](./telemetry) * [Wsh](./wsh) * [Widgets](./widgets) +* [FAQ](./faq) ## Features diff --git a/docs/releasenotes.mdx b/docs/releasenotes.mdx new file mode 100644 index 0000000..a302932 --- /dev/null +++ b/docs/releasenotes.mdx @@ -0,0 +1,48 @@ +--- +id: "releasenotes" +title: "Release Notes" +sidebar_position: 8 +--- + +# Release Notes + +### v0.8.5 — Sep 25, 2024 + +Hot fix, dowgrade `jotai` library. Upgrading caused a major regression in codeedit which did not allow +users to edit files. + +### v0.8.4 — Sep 25, 2024 + +* Added a setting `window:disablehardwareacceleration` to disable native hardware acceleration +* New startup model for legacy users given them the option to download the WaveLegacy +* Use WAVETERM_HOME for the home directory consistently + +### v0.8.3 — Sep 25, 2024 + +More hotfixes for Linux users. We now link against an older version of glibc and use +the zig compiler on linux (the newer version caused us not to run on older distros). +Also fixes a permissions issue when installing via .deb. There is also a new config value +`window:nativetitlebar` which restores the native titlebar on windows/linux. + + +### v0.8.2 — Sep 24, 2024 + +Hot fix, fixes a nasty crash on startup for Linux users (dynamic linking but with netcgo DNS library) + +### v0.8.1 — Sep 23, 2024 + +Minor cleanup release. + +* fix number parsing for certain config file values +* add link to docs site +* add new back button for directory view +* telemetry fixes + +### v0.8.0 — Sep 20, 2024 + +**Major New Relase of Wave Terminal** + +The new build is a fresh start, and a clean break from the current version. As such, your history, settings, and configuration will not be carried over. If you'd like to continue to run the legacy version, you will need to download it separately. + + +Release Artificats and source code diffs can be found on (Github)[https://github.com/wavetermdev/waveterm]. \ No newline at end of file diff --git a/sidebars.ts b/sidebars.ts index a4172ba..d9202d5 100644 --- a/sidebars.ts +++ b/sidebars.ts @@ -32,6 +32,11 @@ const sidebars: SidebarsConfig = { id: "widgets", label: "Widgets", }, + { + type: "doc", + id: "faq", + label: "FAQ", + }, ], };