Skip to content

Commit

Permalink
vSAN PDFカスタム
Browse files Browse the repository at this point in the history
  • Loading branch information
gowatana committed Nov 21, 2023
1 parent 422ac13 commit 5fc24d5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion 5.internal-document-search/src/frontend/index.html
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>企業内向けChatと社内文書検索</title>
<title>vSAN PDF検索くん</title>
</head>
<body>
<div id="root"></div>
Expand Down
Expand Up @@ -9,11 +9,11 @@ export type ExampleModel = {

const EXAMPLES: ExampleModel[] = [
{
text: "就業規則とは何ですか?",
value: "就業規則とは何ですか?"
text: "vSAN Maxとは?",
value: "vSAN Maxとは?"
},
{ text: "人事はどのような仕事をしますか?", value: "人事はどのような仕事をしますか?" },
{ text: "休暇にはどんな種類がありますか?", value: "休暇にはどんな種類がありますか?" }
{ text: "vSAN ESAのメリットは?", value: "vSAN ESAのメリットは?" },
{ text: "vSANがんばるます", value: "vSANがんばるます" }
];

interface Props {
Expand Down
Expand Up @@ -197,7 +197,7 @@ const DocSearch = () => {
<div className={styles.chatInput}>
<QuestionInput
clearOnSend
placeholder="ChatGPTが社内文書の検索をお手伝いします。何について知りたいですか?"
placeholder="ChatGPTがvSAN PDFの検索をお手伝いします。何について知りたいですか?"
disabled={isLoading}
onSend={question => makeApiRequest(question)}
/>
Expand Down
Expand Up @@ -31,7 +31,7 @@ const Layout = () => {
<header className={styles.header} role={"banner"}>
<div className={styles.headerContainer}>
<Link to="/" className={styles.headerTitleContainer}>
<h3 className={styles.headerTitleLeft}>企業内向けChatと社内文書検索</h3>
<h3 className={styles.headerTitleLeft}>vSAN PDF検索くん</h3>
</Link>
<nav>
<ul className={styles.headerNavList}>
Expand All @@ -42,7 +42,7 @@ const Layout = () => {
</li>
<li className={styles.headerNavLeftMargin}>
<NavLink to="/docsearch" className={({ isActive }) => (isActive ? styles.headerNavPageLinkActive : styles.headerNavPageLink)}>
社内文書検索
vSAN PDF検索くん
</NavLink>
</li>
</ul>
Expand Down

0 comments on commit 5fc24d5

Please sign in to comment.