refactor(ux): consolidate BMAD skills, update design system, and clean up Prisma generated client

This commit is contained in:
Sepehr Ramezani
2026-04-19 19:21:27 +02:00
parent 5296c4da2c
commit 25529a24b8
2476 changed files with 127934 additions and 101962 deletions

View File

@@ -0,0 +1,11 @@
import { createOpenAI } from '@ai-sdk/openai';
import { generateText } from 'ai';
async function test() {
const customClient = createOpenAI({
baseURL: 'https://openrouter.ai/api/v1',
apiKey: process.env.OPENAI_API_KEY, // Assume I can't read it but I will use the one I fetch
});
// We need to fetch the API key from DB directly
}