aiChatContent.html (1318B)
1 <!-- This Source Code Form is subject to the terms of the Mozilla Public 2 - License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 - You can obtain one at http://mozilla.org/MPL/2.0/. --> 4 5 <!-- Note: This is a content process level document to interact with LLM services and render LLM output --> 6 <!doctype html> 7 <html xmlns="http://www.w3.org/1999/xhtml" role="document"> 8 <head> 9 <meta charset="utf-8" /> 10 <meta 11 http-equiv="Content-Security-Policy" 12 content="default-src resource: chrome:; object-src 'none'; img-src chrome:;" 13 /> 14 <meta name="color-scheme" content="light dark" /> 15 <!-- TODO : Add localization preview --> 16 <title>AI Chat Content</title> 17 <link rel="stylesheet" href="chrome://global/skin/in-content/common.css" /> 18 <link 19 rel="stylesheet" 20 href="chrome://browser/content/aiwindow/ai-window-content.css" 21 /> 22 <script src="chrome://browser/content/contentTheme.js"></script> 23 <script 24 type="module" 25 src="chrome://browser/content/aiwindow/components/ai-chat-content.mjs" 26 ></script> 27 <script 28 type="module" 29 src="chrome://browser/content/aiwindow/components/ai-chat-message.mjs" 30 ></script> 31 </head> 32 <body id="ai-window-wrapper"> 33 <ai-chat-content></ai-chat-content> 34 </body> 35 </html>