-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (37 loc) · 1.77 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>OpenAI API</title>
<link rel="icon" type="image/svg+xml" href="https://www.svgrepo.com/show/306500/openai.svg">
<!-- Load Quasar UI styles -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/quasar.prod.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="./web/styles.css" rel="stylesheet">
<!-- Set up the path for the internal imports used in the imported packages. -->
<script type="importmap">
{
"imports": {
"@vue/devtools-api": "https://cdn.jsdelivr.net/npm/@vue/[email protected]/lib/esm/index.min.js",
"openai/_shims/auto/runtime": "https://cdn.jsdelivr.net/npm/[email protected]/_shims/auto/runtime.mjs",
"openai/core": "https://cdn.jsdelivr.net/npm/[email protected]/core.mjs",
"openai/error": "https://cdn.jsdelivr.net/npm/[email protected]/error.mjs",
"openai/streaming": "https://cdn.jsdelivr.net/npm/[email protected]/streaming.mjs",
"vue": "https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.esm-browser.prod.js"
}
}
</script>
<script type="module">
/* Import local sources in development mode */
import app from './src/App.mjs';
/* Import CDN sources in production mode */
// import app from 'https://cdn.jsdelivr.net/npm/@flancer64/[email protected]/src/App.mjs';
app.mount('#app');
</script>
</head>
<body>
<div id="app"></div>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
</body>
</html>