Move to threads based system.

This commit is contained in:
Gabriel Brown
2026-06-22 10:37:26 -04:00
parent 8ae6c4b533
commit 206b64176b
82 changed files with 6169 additions and 1930 deletions
@@ -0,0 +1,16 @@
import { AiProviderProfilesPanel } from '@/components/integrations/ai-provider-profiles-panel';
const AiProvidersPage = () => (
<section className='max-w-5xl space-y-4'>
<div>
<h2 className='text-xl font-semibold'>AI providers</h2>
<p className='text-muted-foreground mt-1 text-sm'>
Configure encrypted API-key profiles and OpenCode auth profiles for
agent workspaces.
</p>
</div>
<AiProviderProfilesPanel />
</section>
);
export default AiProvidersPage;