|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>Chatbot Demo</title> |
|
|
<link rel="stylesheet" href="styles.css"> |
|
|
</head> |
|
|
<body> |
|
|
<header> |
|
|
<h1> Chatbot Demo</h1> |
|
|
<p>Demo #1 - 13th March 2025</p> |
|
|
</header> |
|
|
|
|
|
<main> |
|
|
|
|
|
<div id="coze-chatbot"></div> |
|
|
</main> |
|
|
|
|
|
|
|
|
<script src="https://sf-cdn.coze.com/obj/unpkg-va/flow-platform/chat-app-sdk/1.2.0-beta.5/libs/oversea/index.js"></script> |
|
|
<script> |
|
|
|
|
|
new CozeWebSDK.WebChatClient({ |
|
|
config: { |
|
|
bot_id: '7505945028296982529', |
|
|
}, |
|
|
componentProps: { |
|
|
title: 'LAYA Chatbot', |
|
|
}, |
|
|
auth: { |
|
|
type: 'token', |
|
|
token: 'pat_WIXvy1WtxB9N3ttEPG487glTZpJi2LnNSCRywrJyNmfowEAC5TKHED7GtKq8B60d', |
|
|
onRefreshToken: function () { |
|
|
return 'pat_WIXvy1WtxB9N3ttEPG487glTZpJi2LnNSCRywrJyNmfowEAC5TKHED7GtKq8B60d'; |
|
|
} |
|
|
} |
|
|
}); |
|
|
</script> |
|
|
</body> |
|
|
</html> |