-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowser_example.html
40 lines (36 loc) · 1.32 KB
/
browser_example.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
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>API demo</title>
<meta http-equiv="Content-Security-Policy" content="default-src * 'unsafe-eval' 'unsafe-inline' data:" />
<style>
</style>
</head>
<body>
<script type="importmap">
{
"imports": {
"openapi-autowrapper": "./node_modules/OpenAPI-autowrapper/OpenAPI.mjs"
}
}
</script>
<script type="module">
import OobaAPI from './ooba.mjs'
const api = await OobaAPI({url:`http://${window.location.hostname}:5000`, dev:true})
const prompt = "In order to make homemade bread, follow these steps:\n1)"
document.body.innerText += prompt
let question = api['/v1/completions'].POST({prompt,stream:true})
question.ontext = token => document.body.innerText += token
question.onchunk = console.log
let answer = await question
console.log({answer})
window.api = api
console.log("dev mode gives you introspection powers in the console")
console.log("for example: api['/v1/completions'].describe() returns the following")
api['/v1/completions'].describe()
</script>
</body>
</html>