Shun Miyazawa пре 1 година
родитељ
комит
1d18e09f8c

+ 0 - 101
apps/app/src/features/openai/client/components/AiAssistant/AiAssistantManagementModal/AiAssistantManagementModal.tsx

@@ -178,107 +178,6 @@ const AiAssistantManagementModalSubstance = (): JSX.Element => {
         </TabPane>
       </TabContent>
     </>
-    // <div className="px-4">
-    //   <ModalBody>
-    //     <Form>
-    //       <FormGroup className="mb-4">
-    //         <Label className="mb-2 ">アシスタント名</Label>
-    //         <Input
-    //           type="text"
-    //           placeholder="アシスタント名を入力"
-    //           className="border rounded"
-    //         />
-    //       </FormGroup>
-
-  //       <FormGroup className="mb-4">
-  //         <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>
-  //         </div>
-  //         <div className="d-flex gap-4">
-  //           <FormGroup check>
-  //             <Input type="checkbox" defaultChecked />
-  //             <Label check>ナレッジアシスタント</Label>
-  //           </FormGroup>
-  //           <FormGroup check>
-  //             <Input type="checkbox" />
-  //             <Label check>エディタアシスタント</Label>
-  //           </FormGroup>
-  //           <FormGroup check>
-  //             <Input type="checkbox" />
-  //             <Label check>ラーニングアシスタント</Label>
-  //           </FormGroup>
-  //         </div>
-  //       </FormGroup>
-
-  //       <FormGroup className="mb-4">
-  //         <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>
-  //         </div>
-  //         <Input type="select" className="border rounded w-50">
-  //           <option>自分のみ</option>
-  //         </Input>
-  //       </FormGroup>
-
-  //       <FormGroup className="mb-4">
-  //         <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>
-  //         </div>
-  //         <SelectedPageList selectedPages={selectedPages} onRemove={clickRmoveSelectedPageHandler} />
-  //         <button
-  //           type="button"
-  //           className="btn btn-outline-primary d-flex align-items-center gap-1"
-  //           onClick={clickOpenPageSelectModalHandler}
-  //         >
-  //           <span>+</span>
-  //           追加する
-  //         </button>
-  //       </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-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="内容や用途のメモを表示させることができます"
-  //           className="border rounded"
-  //           rows={4}
-  //         />
-  //         <p className="mt-1 text-muted">メモ内容はアシスタントには影響しません。</p>
-  //       </FormGroup>
-  //     </Form>
-  //   </ModalBody>
-
-  //   <ModalFooter className="border-0 pt-0 mb-3">
-  //     <button type="button" className="btn btn-outline-secondary" onClick={() => {}}>キャンセル</button>
-  //     <button type="button" className="btn btn-primary" onClick={clickCreateAiAssistantHandler}>作成</button>
-  //   </ModalFooter>
-  // </div>
   );
 };