Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions llm-integration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ A typical first-time flow is: install and authenticate your provider in the CLI,
| **Claude Code** | `claude-code` | `curl -fsSL https://claude.ai/install.sh \| sh` |
| **Gemini** | `gemini` | `npm install -g @google/gemini-cli` |
| **GitHub Copilot** | `copilot` | `npm install -g @github/copilot-cli` |
| **Codex** | `codex` | `npx @zed-industries/codex-acp` |
| **Codex** | `codex` | `npx @agentclientprotocol/codex-acp` |

### API Key Providers (PydanticAI)

Expand Down Expand Up @@ -140,7 +140,7 @@ Follow the [Configure in Telegram](#configure-in-telegram) steps and select the

### Codex

Condor connects to Codex through Zed's ACP bridge (`@zed-industries/codex-acp`). You'll need the Codex CLI installed and authenticated, plus the ACP bridge available for Condor to invoke.
Condor connects to Codex through the Agent Client Protocol bridge (`@agentclientprotocol/codex-acp`). You'll need the Codex CLI installed and authenticated, plus the ACP bridge available for Condor to invoke.

**1. Install the Codex CLI:**

Expand All @@ -153,10 +153,10 @@ Open Codex and sign in with your ChatGPT account or an OpenAI API key.
**3. Install the ACP bridge:**

```bash
npx @zed-industries/codex-acp
npx @agentclientprotocol/codex-acp
```

Running this once fetches the package so Condor can invoke it via `npx`. You can also install it globally with `npm install -g @zed-industries/codex-acp`.
Running this once fetches the package so Condor can invoke it via `npx`. You can also install it globally with `npm install -g @agentclientprotocol/codex-acp`.

**4. Verify installation:**

Expand Down