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 (
The OpenAI model used to respond to chat requests.
This prompt is sent to the model on every chat request.