AI Providers

This commit is contained in:
Renn F
2026-05-01 03:09:11 +02:00
parent d15b7ae561
commit 7970020021
11 changed files with 2149 additions and 0 deletions
@@ -0,0 +1,16 @@
import { AIRoutingCard } from "@/components/settings/ai-routing-card";
export default function AIProvidersPage() {
return (
<div className="space-y-6 max-w-5xl">
<div>
<h1 className="text-3xl font-bold tracking-tight">AI Providers</h1>
<p className="text-muted-foreground">
Pick how roboco agents authenticate and which model each one runs on.
</p>
</div>
<AIRoutingCard />
</div>
);
}