You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Documentation Updates (removing AI Widget Information / deprecation)
Hover effect on tool calls shows which widget is effected
Remove AI Widget from sidebar unless there is customized presets
Backend now provides blockid (if available) to frontend for tool calls
Copy file name to clipboardExpand all lines: docs/docs/ai-presets.mdx
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,10 @@ sidebar_position: 3.6
3
3
id: "ai-presets"
4
4
title: "AI Presets"
5
5
---
6
+
:::warning Deprecation Notice
7
+
The AI Widget and its presets are being replaced by [Wave AI](./waveai.mdx). Please refer to the Wave AI documentation for the latest AI features and configuration options.
Copy file name to clipboardExpand all lines: docs/docs/customization.mdx
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,4 @@ wsh setbg --print "#ff0000"
81
81
82
82
For more advanced customization options including gradients, colors, and saving your own background presets, check out our [Background Configuration](/presets#background-configurations) documentation.
83
83
84
-
## Presets
85
84
86
-
For more advanced customization, to set up multiple AI models, and your own tab backgrounds, check out our [Presets Documentation](./presets).
Copy file name to clipboardExpand all lines: docs/docs/faq.mdx
-6Lines changed: 0 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,12 +6,6 @@ title: "FAQ"
6
6
7
7
# FAQ
8
8
9
-
### How do I configure Wave to use different AI models/providers?
10
-
11
-
Wave supports various AI providers including local LLMs (via Ollama), Azure OpenAI, Anthropic's Claude, and Perplexity. The recommended way to configure these is through AI presets, which let you set up and easily switch between different providers and models.
12
-
13
-
See our [AI Presets documentation](/ai-presets) for detailed setup instructions for each provider.
14
-
15
9
### How do I enable Claude Code support with Shift+Enter?
16
10
17
11
Wave supports Claude Code and similar AI coding tools that expect Shift+Enter to send an escape sequence + newline (`\u001b\n`) instead of a regular carriage return. This can be enabled using the `term:shiftenternewline` configuration setting.
Copy file name to clipboardExpand all lines: docs/docs/index.mdx
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,12 @@ Check out [Getting Started](./gettingstarted) for installation instructions.
19
19

20
20
21
21
<CardGroup>
22
+
<Card
23
+
href="./waveai"
24
+
icon="fa-sparkles"
25
+
title="Wave AI"
26
+
description="Context-aware terminal assistant with access to terminal output, widgets, and filesystem."
27
+
/>
22
28
<Card
23
29
href="./customization"
24
30
icon="fa-paintbrush"
@@ -80,8 +86,6 @@ Other References:
80
86
81
87
## Roadmap
82
88
83
-
Wave is constantly improving! Our roadmap will be continuously updated with our goals for each release. You can find it [here](https://github.com/wavetermdev/waveterm/blob/main/ROADMAP.md).
84
-
85
89
Want to provide input to our future releases? Connect with us on [Discord](https://discord.gg/XfvZ334gwU) or open a [Feature Request](https://github.com/wavetermdev/waveterm/issues/new/choose)!
Copy file name to clipboardExpand all lines: docs/docs/presets.mdx
+4-16Lines changed: 4 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,8 @@ title: "Presets"
6
6
7
7
# Presets
8
8
9
-
Wave's preset system allows you to save and apply multiple configuration settings at once. Presets can be used in two different scenarios:
9
+
Wave's preset system allows you to save and apply multiple configuration settings at once. Presets are used for:
10
10
11
-
- AI models: Configure different AI providers and models (see [AI Presets](/ai-presets))
12
11
- Tab backgrounds: Apply visual styles to your tabs
13
12
14
13
## Managing Presets
@@ -18,14 +17,14 @@ You can store presets in two locations:
18
17
-`~/.config/waveterm/presets.json`: Main presets file
19
18
-`~/.config/waveterm/presets/`: Directory for organizing presets into separate files
20
19
21
-
All presets are aggregated regardless of which file they're in, so you can use the `presets` directory to organize them (e.g., `presets/bg.json`, `presets/ai.json`).
20
+
All presets are aggregated regardless of which file they're in, so you can use the `presets` directory to organize them (e.g., `presets/bg.json`).
22
21
23
22
:::info
24
23
You can easily edit your presets using the built-in editor:
25
24
26
25
```bash
27
26
wsh editconfig presets.json # Edit main presets file
The `preset-type` determines where the preset appears in Wave's interface:
49
48
50
-
-`ai`: Appears in the models dropdown in the "Wave AI" widget header (see [AI Presets](/ai-presets))
51
49
-`bg`: Appears in the "Backgrounds" submenu when right-clicking a tab
52
50
53
51
### Common Keys
@@ -58,19 +56,9 @@ The `preset-type` determines where the preset appears in Wave's interface:
58
56
| display:order | float | Controls the order in the menu (optional) |
59
57
60
58
:::info
61
-
When a preset is applied, it overrides the default configuration values for that tab or block. Using `bg:*`or `ai:*`will clear any previously overridden values, setting them back to defaults. It's recommended to include these keys in your presets to ensure a clean slate.
59
+
When a preset is applied, it overrides the default configuration values for that tab or block. Using `bg:*` will clear any previously overridden values, setting them back to defaults. It's recommended to include this key in your presets to ensure a clean slate.
62
60
:::
63
61
64
-
## AI Presets
65
-
66
-
For configuring AI providers and models, see our dedicated [AI Presets](/ai-presets) documentation. It covers setting up presets for:
67
-
68
-
- Local LLMs via Ollama
69
-
- Azure OpenAI
70
-
- Anthropic's Claude
71
-
- Perplexity
72
-
- And more
73
-
74
62
## Background Presets
75
63
76
64
Wave's background system harnesses the full power of CSS backgrounds, letting you create rich visual effects through the "background" attribute. You can apply solid colors, gradients (both linear and radial), images, and even blend multiple elements together.
0 commit comments