import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card' import { Button } from '@/components/ui/button' import { auth } from '@/auth' import { redirect } from 'next/navigation' import Link from 'next/link' import { ArrowLeft, TestTube } from 'lucide-react' import { AI_TESTER } from './ai-tester' export default async function AITestPage() { const session = await auth() if ((session?.user as any)?.role !== 'ADMIN') { redirect('/') } return (
Test your AI providers for tag generation and semantic search embeddings
đĄ Tip:
You can use different providers for tags and embeddings! For example, use Ollama (free) for tags and OpenAI (best quality) for embeddings to optimize costs and performance.