feat: add Pi agent to AI page (#2388)
Some checks failed
Multiplatform Docker build & push / build (push) Has been cancelled
Code quality - linting and typechecking / linting (push) Has been cancelled
Backend testing with Postgres / test-postgres (push) Has been cancelled

Closes #2387
This commit is contained in:
René Aaron 2026-06-02 12:15:29 +02:00 committed by GitHub
parent 23dccc6c6f
commit 56b1ce895f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View file

@ -33,6 +33,7 @@ import hermesLogo from "src/assets/suggested-apps/hermes.png";
import openclawLogo from "src/assets/suggested-apps/openclaw.png";
import opencodeLogo from "src/assets/suggested-apps/opencode.png";
import payperqLogo from "src/assets/suggested-apps/payperq.png";
import piLogo from "src/assets/suggested-apps/pi.png";
import AppHeader from "src/components/AppHeader";
import ExternalLink from "src/components/ExternalLink";
import Loading from "src/components/Loading";
@ -158,6 +159,13 @@ const agents: Agent[] = [
description: "Terminal-based AI coding assistant",
setupUrl: "",
},
{
id: "pi",
name: "Pi",
logo: piLogo,
description: "Minimal terminal coding agent, great for local LLMs",
setupUrl: "",
},
];
export function AI() {