Source code

Revision control

Copy as Markdown

Other Tools

<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this file,
- You can obtain one at http://mozilla.org/MPL/2.0/. -->
<!-- Note: This is a content process level document to interact with LLM services and render LLM output -->
<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml" role="document">
<head>
<meta charset="utf-8" />
<base target="_blank" />
<meta name="referrer" content="no-referrer" />
<meta
http-equiv="Content-Security-Policy"
content="default-src resource: chrome:; object-src 'none'; img-src chrome: page-icon:;"
/>
<meta name="color-scheme" content="light dark" />
<title data-l10n-id="smartwindow-messages-document-title"></title>
<link rel="stylesheet" href="chrome://global/skin/in-content/common.css" />
<link
rel="stylesheet"
href="chrome://browser/content/aiwindow/ai-window-content.css"
/>
<link rel="localization" href="preview/aiWindow.ftl" />
<script src="chrome://browser/content/contentTheme.js"></script>
<script
type="module"
src="chrome://browser/content/aiwindow/components/ai-chat-content.mjs"
></script>
<script
type="module"
src="chrome://browser/content/aiwindow/components/ai-chat-message.mjs"
></script>
<link rel="localization" href="preview/aiWindowContent.ftl" />
<script
type="module"
src="chrome://browser/content/aiwindow/components/ai-website-chip.mjs"
></script>
<script
type="module"
src="chrome://browser/content/aiwindow/components/smartwindow-prompts.mjs"
></script>
</head>
<body id="ai-window-wrapper">
<ai-chat-content></ai-chat-content>
</body>
</html>