|
<!doctype html> |
|
<html style="height:100%;"> |
|
<head> |
|
<meta charset="utf-8" /> |
|
<meta name="viewport" content="width=device-width, initial-scale=1" /> |
|
<title>My static Space</title> |
|
<link rel="stylesheet" href="style.css" /> |
|
</head> |
|
<body style="margin:0; height:100%; overflow:hidden;"> |
|
<iframe src="https://partner.novamsg.org:8030/" |
|
style="width:100%; height:100%; border:none; display:block;" |
|
allowfullscreen> |
|
Your browser does not support iframes. |
|
</iframe> |
|
</body> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
const currentPath = window.location.pathname; |
|
|
|
|
|
const defaultMessages = [ |
|
"React์ Vue์ ์ฐจ์ด์ ์ ๋ฌด์์ธ๊ฐ์?", |
|
"JavaScript์์ ๋น๋๊ธฐ ํ๋ก๊ทธ๋๋ฐ์ ์ด๋ป๊ฒ ๊ตฌํํ๋์?", |
|
"TypeScript์ ์ฃผ์ ํน์ง๊ณผ ์ฅ์ ์ ๋ฌด์์ธ๊ฐ์?", |
|
"์น ์ ๊ทผ์ฑ์ ํฅ์์ํค๋ ๋ฐฉ๋ฒ์๋ ์ด๋ค ๊ฒ๋ค์ด ์๋์?", |
|
"์ต์ CSS ๊ธฐ์ ์ธ Flexbox์ Grid์ ์ฃผ์ ์ฉ๋๋ ๋ฌด์์ธ๊ฐ์?" |
|
]; |
|
|
|
|
|
const randomMessage = defaultMessages[Math.floor(Math.random() * defaultMessages.length)]; |
|
|
|
|
|
let scriptAttributes = { |
|
"data-embed-id": "dc588ca9-bf9b-406b-a511-73ea3485c175", |
|
"data-chat-icon": "chatBubble", |
|
"data-sponsor-text": "๋ฏธ๋์ด๋ก๊ทธ AX์๋ฃจ์
๊ธฐ์ TF", |
|
"data-sponsor-link": "https://www.medialog.co.kr", |
|
"data-open-on-load": "๋๋ ์ด๋ค ์ผ์ ํ ์ ์์ด?", |
|
"data-window-height": "800px", |
|
"data-window-width": "500px", |
|
"data-brand-image-url": "https://partner.novamsg.org/cms/assets/download/9192/exaone_banner.png", |
|
"data-assistant-icon": "https://partner.novamsg.org/cms/assets/download/9177/exaone.png", |
|
"data-base-api-url": "https://partner.novamsg.org:5004/api/embed", |
|
"data-assistant-name": "์ง์๊ธฐ๋ฐ ์ฑ๋ด (All in AI)", |
|
"data-greeting": "๊ธฐ์
/์๋ฃจ์
๋ด๋น AX์๋ฃจ์
๊ธฐ์ TF ์์ ์ด์ํ๋ ์ก์ฌ์ ์ฑ๋ด ์
๋๋ค.", |
|
"data-default-messages": randomMessage |
|
}; |
|
|
|
|
|
if (currentPath === "/projects/ax-tf") { |
|
scriptAttributes["data-embed-id"] = "8794b20f-68e4-4c7e-8f4c-b3fc4ffbc5d5"; |
|
scriptAttributes["data-chat-icon"] = "plus"; |
|
scriptAttributes["data-brand-image-url"] = "https://partner.novamsg.org/cms/assets/download/9192/exaone_banner.png"; |
|
scriptAttributes["data-greeting"] ="๊ธฐ์
/์๋ฃจ์
๋ด๋น AX์๋ฃจ์
๊ธฐ์ TF์์ ์ด์ํ๋ ์์ฌ์ LLM ์
๋๋ค."; |
|
} |
|
|
|
|
|
const script = document.createElement("script"); |
|
Object.entries(scriptAttributes).forEach(([key, value]) => { |
|
script.setAttribute(key, value); |
|
}); |
|
script.src = "https://partner.novamsg.org:5004/embed/anythingllm-chat-widget.min.js"; |
|
|
|
|
|
document.body.appendChild(script); |
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</html> |