waveterm/docs
Copilot f1e06c7ef9
Add groq AI mode provider defaults and docs (#2942)
This change adds first-class `groq` provider support to Wave AI mode
resolution and documents it in the Wave AI modes guide. Users can now
configure Groq modes via `ai:provider` with provider defaults applied
automatically.

- **Provider support in backend config resolution**
  - Added `groq` as a recognized AI provider constant.
  - Added Groq provider defaults in mode resolution:
    - `ai:apitype`: `openai-chat`
    - `ai:endpoint`: `https://api.groq.com/openai/v1/chat/completions`
    - `ai:apitokensecretname`: `GROQ_KEY`

- **Schema/config surface update**
- Extended `AIModeConfigType` provider enum to include `groq`, so
`ai:provider: "groq"` is valid in Wave AI config.

- **Documentation updates (`waveai-modes.mdx`)**
  - Added `groq` to supported providers.
- Added a Groq-specific configuration example and default behavior
notes.
  - Updated provider reference and capability guidance to include Groq.

- **Focused coverage**
- Added a targeted unit test for Groq provider default application in
`applyProviderDefaults`.

```json
{
  "groq-kimi-k2": {
    "display:name": "Groq - Kimi K2",
    "ai:provider": "groq",
    "ai:model": "moonshotai/kimi-k2-instruct"
  }
}
```

<!-- START COPILOT CODING AGENT TIPS -->
---

💡 You can make Copilot smarter by setting up custom instructions,
customizing its development environment and configuring Model Context
Protocol (MCP) servers. Learn more [Copilot coding agent
tips](https://gh.io/copilot-coding-agent-tips) in the docs.

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: sawka <2722291+sawka@users.noreply.github.com>
2026-02-26 09:50:05 -08:00
..
docs Add groq AI mode provider defaults and docs (#2942) 2026-02-26 09:50:05 -08:00
src update eslint to v9 (and fix all eslint errors) (#2923) 2026-02-23 18:42:17 -08:00
static Add sharp-solid font to docsite (#1813) 2025-01-23 12:23:24 -08:00
.editorconfig Move docsite to main repo (#1204) 2024-11-06 10:45:21 -08:00
.gitignore Move docsite to main repo (#1204) 2024-11-06 10:45:21 -08:00
.prettierignore Move docsite to main repo (#1204) 2024-11-06 10:45:21 -08:00
.remarkrc Move docsite to main repo (#1204) 2024-11-06 10:45:21 -08:00
babel.config.js Move docsite to main repo (#1204) 2024-11-06 10:45:21 -08:00
docusaurus.config.ts Add code highlighting to docsite (#1866) 2025-01-28 19:38:43 -08:00
eslint.config.js Move docsite to main repo (#1204) 2024-11-06 10:45:21 -08:00
package.json update eslint to v9 (and fix all eslint errors) (#2923) 2026-02-23 18:42:17 -08:00
prettier.config.cjs Move docsite to main repo (#1204) 2024-11-06 10:45:21 -08:00
README.md remove storybook, tasks, and dependencies (#2593) 2025-11-24 13:36:00 -08:00
tsconfig.json Move docsite to main repo (#1204) 2024-11-06 10:45:21 -08:00

Wave Terminal Documentation

This is the home for Wave Terminal's documentation site. This README is specifically about building and contributing to the docs site. If you are looking for the actual hosted docs, go here -- https://docs.waveterm.dev

Installation

Our docs are built using Docusaurus, a modern static website generator.

Local Development

task docsite

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

Build

task docsite:build:public

This command generates static content into the build directory and can be served using any static contents hosting service.

Deployment

Deployments are handled automatically by the Docsite CI/CD workflow