import { servTrpc } from '~/app/_trpc/ServerClient' import SystemPromptForm from './_components/SystemPromptForm' import ModelSelector from './_components/ModelSelector' export default async function SystemPromptPage() { const prompt = await servTrpc.chat.getSystemPrompt() const model = await servTrpc.chat.getModel() return (

AI Model

The OpenAI model used to respond to chat requests.

AI System Prompt

This prompt is sent to the model on every chat request.

) }