Skip to content

Commit 06c4c84

Browse files
arora-saurabh448Saurabh Aroraclaude
authored
docs: add Altimate LLM Gateway provider, expand IDE page, update quic… (#607)
* docs: add Altimate LLM Gateway provider, expand IDE page, update quickstart - Rewrite IDE page: generic setup for VS Code/Cursor via Datamates extension, Cmd+Shift+P flow, features, LLM access options - Add Altimate LLM Gateway as first provider in providers.md (condensed format, links to Datamates docs for full details) - Add Gateway tip in quickstart Step 2 (10M tokens free, links to Datamates docs) - Update ecosystem.md with Datamates and Windsurf links Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * docs: fix ZDR wording, add CLI prerequisite, add Windsurf to IDE page - providers.md: remove ZDR and subprocessor claims, keep accurate metadata bullet - ide.md: add npm install -g altimate-code as prerequisite, add Windsurf install instruction, rename title to "IDE Integration" Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * docs: strip gateway data handling details from providers.md Keep only config snippet and link to Datamates docs for full gateway details. Remove security/data handling bullets — this info lives in Datamates and dbtPU docs only. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Saurabh Arora <saurabh@altimate.ai> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 5b6b31f commit 06c4c84

File tree

4 files changed

+67
-20
lines changed

4 files changed

+67
-20
lines changed

docs/docs/configure/providers.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,21 @@ Each provider has a key in the `provider` object:
2323
!!! tip
2424
Use `{env:...}` substitution for API keys so you never commit secrets to version control.
2525

26+
## Altimate LLM Gateway
27+
28+
Managed LLM access with dynamic routing across Sonnet 4.6, Opus 4.6, GPT-5.4, GPT-5.3, and more. No API keys to manage — 10M tokens free to get started.
29+
30+
```json
31+
{
32+
"provider": {
33+
"altimate": {}
34+
},
35+
"model": "altimate/auto"
36+
}
37+
```
38+
39+
For pricing, security, and data handling details, see the [Altimate LLM Gateway guide](https://datamates-docs.myaltimate.com/user-guide/components/llm-gateway/).
40+
2641
## Anthropic
2742

2843
```json

docs/docs/develop/ecosystem.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ altimate has a growing ecosystem of plugins, tools, and integrations.
1414

1515
- **GitHub Actions**: Automated PR review and issue triage
1616
- **GitLab CI**: Merge request analysis
17-
- **VS Code / Cursor**: IDE integration
17+
- **VS Code / Cursor / Windsurf**: [IDE integration](../usage/ide.md) via the Datamates extension
18+
- **[Datamates](https://datamates-docs.myaltimate.com/)**: AI teammates platform with MCP integrations, Knowledge Hub, Memory, and Guardrails
1819
- **MCP**: Model Context Protocol servers
1920
- **ACP**: Agent Communication Protocol for editors
2021

docs/docs/getting-started/quickstart-new.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ export ANTHROPIC_API_KEY=sk-ant-...
2828
altimate
2929
```
3030

31+
!!! tip "Don't want to manage API keys?"
32+
The [Altimate LLM Gateway](https://datamates-docs.myaltimate.com/user-guide/components/llm-gateway/) gives you 10M tokens free — no API keys needed. It dynamically routes to the best model for each task across Sonnet 4.6, Opus 4.6, GPT-5.4, and more.
33+
3134
---
3235

3336
## Step 3: Connect Your Warehouse

docs/docs/usage/ide.md

Lines changed: 47 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,56 @@
1-
# IDE
1+
# IDE Integration
22

3-
altimate integrates with VS Code and Cursor as an AI assistant.
3+
altimate-code integrates with your IDE via the [Datamates extension](https://marketplace.visualstudio.com/items?itemName=altimateai.vscode-altimate-mcp-server), giving you AI-powered chat with 100+ data engineering tools directly in your editor.
44

5-
!!! warning "Beta"
6-
IDE integration is currently in beta. Features may change.
5+
---
76

8-
## VS Code / Cursor
7+
## Prerequisites
98

10-
### Setup
9+
Install the altimate-code CLI globally:
1110

12-
1. Install the altimate extension from the marketplace
13-
2. Ensure `altimate` is installed globally:
14-
```bash
15-
npm install -g altimate-code
16-
```
17-
3. The extension will auto-detect the CLI
11+
```bash
12+
npm install -g altimate-code
13+
```
1814

19-
### Features
15+
The Datamates extension requires this to be installed for the chat and tools to function.
2016

21-
- Inline chat with altimate agents
22-
- File context awareness from your editor
23-
- Tool call results displayed inline
24-
- Agent mode switching from the command palette
17+
## Install the Extension
2518

26-
### Configuration
19+
Install the Datamates extension for your IDE:
2720

28-
The extension uses your existing `altimate-code.json` config. No additional IDE configuration is required.
21+
- **VS Code**[Microsoft Marketplace](https://marketplace.visualstudio.com/items?itemName=altimateai.vscode-altimate-mcp-server)
22+
- **Cursor / other VS Code-compatible editors**[Open VSX Registry](https://open-vsx.org/extension/altimateai/vscode-altimate-mcp-server)
23+
- **Windsurf** — Install via the built-in extension marketplace (search "Datamates")
24+
25+
## Open Altimate Code Chat
26+
27+
After installing the extension:
28+
29+
1. Press `Cmd+Shift+P` (macOS) or `Ctrl+Shift+P` (Windows/Linux) to open the command palette
30+
2. Type `Datamates`
31+
3. Select **Datamates: Open Altimate Code Chat**
32+
33+
This opens the Altimate Code chat panel where you can interact with altimate agents and use all 100+ data engineering tools.
34+
35+
## Features
36+
37+
- **Inline chat** with altimate agents — ask questions, run tools, and get results directly in your editor
38+
- **File context awareness** — the agent sees your open files and project structure
39+
- **Tool call results inline** — SQL analysis, lineage, dbt operations, and more displayed in the chat
40+
- **Agent mode switching** — switch between Builder (full read/write), Analyst (read-only), and Plan (minimal access) modes from the command palette
41+
- **100+ data engineering tools** — SQL validation, query optimization, column lineage, dbt model generation, FinOps analysis, schema exploration, and more
42+
43+
## Configuration
44+
45+
The extension uses your existing `altimate-code.json` config. No additional IDE-specific configuration is required. Warehouse connections, LLM providers, permissions, and agent settings all carry over.
46+
47+
## LLM Access
48+
49+
You need an LLM to power the chat. Two options:
50+
51+
- **BYOK (Bring Your Own Key)** — Free and unlimited. Configure any of the [35+ supported providers](../configure/providers.md) (Anthropic, OpenAI, AWS Bedrock, Azure OpenAI, etc.)
52+
- **[Altimate LLM Gateway](https://datamates-docs.myaltimate.com/user-guide/components/llm-gateway/)** — Managed LLM access with dynamic model routing. 10M tokens free to get started — no API keys to manage
53+
54+
## Full Datamates Documentation
55+
56+
The Datamates extension offers additional capabilities beyond Altimate Code Chat, including MCP server integrations, Knowledge Hub, Memory Hub, and Guardrails. See the [Datamates documentation](https://datamates-docs.myaltimate.com/) for full setup guides, integration configuration, and feature details.

0 commit comments

Comments
 (0)