feat: New GuardRails and Response Guidelines edit page (#11932)

This commit is contained in:
Sivin Varghese
2025-07-16 21:52:25 +05:30
committed by GitHub
parent 2fec2e5993
commit 64ba23688b
16 changed files with 1254 additions and 6 deletions

View File

@@ -0,0 +1,21 @@
<script setup>
import AddNewRulesDialog from './AddNewRulesDialog.vue';
</script>
<template>
<Story
title="Captain/Assistant/AddNewRulesDialog"
:layout="{ type: 'grid', width: '800px' }"
>
<Variant title="Default">
<div class="px-4 py-4 bg-n-background h-[200px]">
<AddNewRulesDialog
button-label="Add a guardrail"
placeholder="Type in another guardrail..."
confirm-label="Create"
cancel-label="Cancel"
/>
</div>
</Variant>
</Story>
</template>