diff --git a/docs.json b/docs.json
index c24f4a7..2a3adeb 100644
--- a/docs.json
+++ b/docs.json
@@ -235,7 +235,9 @@
"v3/integrations/cline",
"v3/integrations/codex-cli",
"v3/integrations/continue-dev",
- "v3/integrations/opencode"
+ "v3/integrations/opencode",
+ "v3/integrations/open-code-review",
+ "v3/integrations/pi"
]
},
{
diff --git a/integration-logo/open-code-review-icondoc.svg b/integration-logo/open-code-review-icondoc.svg
new file mode 100644
index 0000000..ff16180
--- /dev/null
+++ b/integration-logo/open-code-review-icondoc.svg
@@ -0,0 +1 @@
+
diff --git a/integration-logo/pi-icondoc.svg b/integration-logo/pi-icondoc.svg
new file mode 100644
index 0000000..6d95214
--- /dev/null
+++ b/integration-logo/pi-icondoc.svg
@@ -0,0 +1,4 @@
+
diff --git a/v3/integrations/open-code-review.mdx b/v3/integrations/open-code-review.mdx
new file mode 100644
index 0000000..9060e6d
--- /dev/null
+++ b/v3/integrations/open-code-review.mdx
@@ -0,0 +1,94 @@
+---
+title: "Open Code Review"
+icon: "/integration-logo/open-code-review-icondoc.svg"
+description: "Use Open Code Review with Eden AI to review your code with 500+ AI models through one API."
+---
+
+import { TechArticleSchema } from "/snippets/TechArticleSchema.mdx";
+
+
+
+Use Open Code Review with Eden AI to review your code with 500+ AI models through one API.
+
+## Overview
+
+Open Code Review (`ocr`) is Alibaba's open-source AI code-review tool. It reviews commits and pull requests through a unified provider system, and **Eden AI ships as a built-in provider preset** — supply a key and review your code with OpenAI, Anthropic, Google, Mistral and 500+ models, behind one key, with EU-based, GDPR-aligned inference and unified billing.
+
+## Installation
+
+
+```bash npm
+npm install -g @alibaba-group/open-code-review
+```
+
+```bash Install script
+curl -fsSL https://raw.githubusercontent.com/alibaba/open-code-review/main/install.sh | sh
+```
+
+
+## Configuration
+
+Eden AI is a built-in preset, so you only need a key. Configure it interactively:
+
+
+```bash Interactive
+ocr config provider # select "edenai"
+ocr config model # pick an Eden AI model, e.g. anthropic/claude-sonnet-4-5
+```
+
+
+Or write the config directly (scripts / CI):
+
+
+```bash CLI
+ocr config set provider edenai
+ocr config set providers.edenai.api_key YOUR_EDEN_AI_API_KEY
+ocr config set providers.edenai.model anthropic/claude-sonnet-4-5
+```
+
+
+The `edenai` preset supplies the base URL (`https://api.edenai.run/v3`) and the OpenAI-compatible protocol automatically. Run `ocr llm providers` to list all built-in providers. If `EDEN_AI_API_KEY` is set in your environment, `ocr` picks it up automatically.
+
+## Available Models
+
+Pick any Eden AI model using the `provider/model` format:
+
+**OpenAI**
+- `openai/gpt-4o`
+- `openai/gpt-4o-mini`
+
+**Anthropic**
+- `anthropic/claude-sonnet-4-5`
+- `anthropic/claude-opus-4-5`
+
+**Google**
+- `google/gemini-2.5-pro`
+- `google/gemini-2.5-flash`
+
+**Mistral**
+- `mistral/mistral-large-latest`
+- `mistral/mistral-small-latest`
+
+## Environment Variables
+
+
+```bash .env
+EDEN_AI_API_KEY=your_api_key_here
+```
+
+
+## Next Steps
+
+- [Chat Completions](/v3/llms/chat-completions) - Core LLM endpoint
+- [List LLM Models](/v3/llms/listing-models) - Browse available providers and models
+- [OpenAI SDK (Python)](/v3/integrations/openai-sdk-python) - Direct SDK usage
diff --git a/v3/integrations/pi.mdx b/v3/integrations/pi.mdx
new file mode 100644
index 0000000..3eb0b51
--- /dev/null
+++ b/v3/integrations/pi.mdx
@@ -0,0 +1,96 @@
+---
+title: "Pi"
+icon: "/integration-logo/pi-icondoc.svg"
+description: "Use Pi with Eden AI to power your coding agent (and Flue) with 500+ AI models through one API."
+---
+
+import { TechArticleSchema } from "/snippets/TechArticleSchema.mdx";
+
+
+
+Use Pi with Eden AI to power your coding agent (and Flue) with 500+ AI models through one API.
+
+## Overview
+
+Pi is an MIT-licensed coding agent whose model catalog also powers Flue. Pi lets extensions register custom model providers, so you can add Eden AI with a small extension — no fork, no core change — and reach models from OpenAI, Anthropic, Google, Cohere, Meta and more behind one key, with EU-based, GDPR-aligned inference. The same provider flows through to Flue.
+
+## Installation
+
+
+```bash Install script
+curl -fsSL https://pi.dev/install.sh | sh
+```
+
+```bash npm
+npm install -g --ignore-scripts @earendil-works/pi-coding-agent
+```
+
+
+## Quick Start
+
+Register Eden AI as a custom provider from a Pi extension:
+
+
+```typescript extension.ts
+import { pi } from "@earendil-works/pi-coding-agent";
+
+pi.registerProvider("edenai", {
+ name: "Eden AI",
+ api: "openai-completions",
+ baseUrl: "https://api.edenai.run/v3",
+ apiKey: process.env.EDEN_AI_API_KEY,
+ models: [
+ "openai/gpt-4o",
+ "openai/gpt-4o-mini",
+ "anthropic/claude-sonnet-4-5",
+ "mistral/mistral-small-latest",
+ ],
+});
+```
+
+
+Then select any `edenai/` in Pi. The same catalog is available in Flue.
+
+## Available Models
+
+Access models from multiple providers using the `provider/model` format:
+
+**OpenAI**
+- `openai/gpt-4o`
+- `openai/gpt-4o-mini`
+
+**Anthropic**
+- `anthropic/claude-sonnet-4-5`
+- `anthropic/claude-haiku-4-5`
+
+**Google**
+- `google/gemini-2.5-pro`
+- `google/gemini-2.5-flash`
+
+**Mistral**
+- `mistral/mistral-large-latest`
+- `mistral/mistral-small-latest`
+
+## Environment Variables
+
+
+```bash .env
+EDEN_AI_API_KEY=your_api_key_here
+```
+
+
+## Next Steps
+
+- [Chat Completions](/v3/llms/chat-completions) - Core LLM endpoint
+- [List LLM Models](/v3/llms/listing-models) - Browse available providers and models
+- [OpenAI SDK (Python)](/v3/integrations/openai-sdk-python) - Direct SDK usage