Skip to content

Commit 900d162

Browse files
committed
docs: add models documentation
1 parent 389b8a0 commit 900d162

6 files changed

Lines changed: 44 additions & 101 deletions

File tree

27.9 KB
Loading
89.6 KB
Loading

packages/docs/content/docs/docs.json

Lines changed: 0 additions & 100 deletions
This file was deleted.

packages/docs/content/docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ We recommend dragging Pochi to the right side of your VSCode window to get the b
4343

4444
![Drag to right sidebar](../assets/images/vscode-right-sidebar.png)
4545

46-
With Pochi, you can use any LLM provider by configuring their API keys. Use the VS Code command `Pochi: Open Custom Model Settings` to open the settings file and configure it. Alternatively, Pochi offers cloud-based services. Creating a Pochi account gives you access to:
46+
With Pochi, you can use any LLM provider by configuring their API keys. Use the VS Code command `Pochi: Open Custom Model Settings` to open the settings file and [configure it](./models). Alternatively, Pochi offers cloud-based services. Creating a Pochi account gives you access to:
4747

4848
- Pochi's managed LLM models
4949
- Shared task histories and team management

packages/docs/content/docs/meta.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"share",
1313
"slack",
1414
"---Customize---",
15+
"models",
1516
"rules",
1617
"workflows",
1718
"mcp"
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
title: Models
3+
description: Manage Pochi's model settings
4+
icon: "Zap"
5+
---
6+
7+
# Models
8+
9+
Pochi leverages the AI SDK to support various LLM providers and can run local models.
10+
11+
## Pochi Models
12+
13+
After signing in, you gain access to the Pochi models shown below. Pochi uses a usage-based pricing strategy with no additional charges. For detailed pricing information, visit https://app.getpochi.com/pricing.
14+
15+
![Pochi Models](../assets/images/pochi-models.png)
16+
17+
## GitHub Copilot Models
18+
19+
For Microsoft VS Code distributions, you can utilize your enabled Copilot models within Pochi.
20+
21+
![Copilot Models](../assets/images/copilot-models.png)
22+
23+
## OpenAI Compatible Models
24+
25+
Pochi allows you to configure any LLM provider that offers an OpenAI-compatible API by setting up the appropriate API keys. To configure custom models, use the VS Code command `Pochi: Open Custom Model Settings` to open the settings configuration file.
26+
27+
```json
28+
{
29+
"id": "groq",
30+
"apiKey": "your_api_key",
31+
"baseUrl": "https://api.groq.com/openai/v1",
32+
"models": [
33+
{
34+
"id": "moonshotai/kimi-k2-instruct",
35+
"contextWindow": 131072,
36+
"maxTokens": 8000
37+
}
38+
]
39+
}
40+
```
41+
42+
After saving the configuration, the model will be available in the toolbar's model selector.

0 commit comments

Comments
 (0)