Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: KnowledgeAssistantManagementModal (2) #9519

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,37 @@ const AiAssistantManegementModalSubstance = (): JSX.Element => {

<FormGroup>
<div className="d-flex align-items-center mb-2">
<Label className="mb-0">アシスタントの役割</Label>
<span className="ms-1 fs-5 material-symbols-outlined text-secondary">help</span>
<Label className="mb-0 me-2">アシスタントへの指示</Label>
<label className="form-label form-check-label">
<span className="badge text-bg-danger mt-2">
必須
</span>
</label>
</div>
<Input
type="textarea"
placeholder="アシスタントに実行して欲しい内容を具体的に記入してください"
className="border rounded"
rows={4}
/>
</FormGroup>

<FormGroup>
<div className="d-flex align-items-center mb-2">
<Label className="mb-0 me-2">アシスタントのメモ</Label>
<label className="form-label form-check-label">
<span className="badge text-bg-secondary mt-2">
必須
</span>
</label>
</div>
<Input
type="textarea"
placeholder="アシスタントの役割をいれてください"
placeholder="内容や用途のメモを表示させることができます"
className="border rounded"
rows={4}
/>
<p className="mt-1 text-muted">メモ内容はアシスタントには影響しません。</p>
</FormGroup>
</Form>
</ModalBody>
Expand Down
Loading