mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 09:53:45 +00:00
# What does this PR do? This better separates UI from backend code, which was a point of confusion often for our beloved AI friends. ## Test Plan CI
5 lines
131 B
TypeScript
5 lines
131 B
TypeScript
import { PromptManagement } from "@/components/prompts";
|
|
|
|
export default function PromptsPage() {
|
|
return <PromptManagement />;
|
|
}
|