-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.js
107 lines (96 loc) · 3.35 KB
/
ui.js
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import {chatCompletion} from "./openaiAPI.js";
let output;
export function init(runCallback) {
const keyInput = document.getElementById('OPENAI_API_KEY');
const runButton = document.getElementById('run');
const jsonInput = document.getElementById('json');
output = document.getElementById('output');
keyInput.oninput = (e) => {
localStorage.setItem('OPENAI_API_KEY', keyInput.value);
if(keyInput.value !== '') {
deleteKey.style.display = 'block';
} else {
deleteKey.style.display = 'none';
}
};
const deleteKey = document.getElementById('delete_key');
deleteKey.onclick = () => {
keyInput.value = '';
keyInput.oninput();
};
const localKey = localStorage.getItem('OPENAI_API_KEY');
if (localKey) {
keyInput.value = localKey;
} else {
deleteKey.style.display = 'none';
}
jsonInput.oninput = (e) => {
localStorage.setItem('LAST_JSON', jsonInput.value);
};
const savedJSON = localStorage.getItem('LAST_JSON');
if (savedJSON) {
jsonInput.value = savedJSON;
} else {
jsonInput.value = `{
"messages": [
{
"role": "system",
"content": "You are JavaScript expert"
},
{
"role": "user",
"content": "Help user write a hello world in JavaScript and explain how it works"
}
],
"model": "gpt-3.5-turbo",
"max_tokens": 2000
}`;
}
runButton.onclick = async () => {
const url = "https://api.openai.com/v1/chat/completions";
log('Sending chat completion');
log('⌛️ Loading...');
try {
let jsonToSend = JSON.parse(jsonInput.value);
let runData = await chatCompletion(jsonToSend, keyInput.value);
log('Got result', runData);
if (jsonToSend.functions && JSON.stringify(runData).indexOf('function_call') > -1) {
// function call was sent and returned
const functionCall = runData.choices[0].message.function_call;
const result = JSON.parse(functionCall.arguments);
log(functionCall.name, result);
const ajv = new Ajv({allErrors: true}); // Create a new Ajv instance
const validate = ajv.compile(jsonToSend.functions.filter(f => f.name === functionCall.name)[0].parameters); // Compile the schema
const valid = validate(result); // Validate your JSON data
if (valid) {
log("JSON is valid!");
} else {
log("JSON validation errors", validate.errors);
}
}
runCallback(runData);
} catch (error) {
log('Error:', error);
}
}
}
let logArray = [];
export function log(...rest) {
logArray.push(rest);
output.innerHTML = '<hr/>' + logArray.map(line => {
let objectLog = '';
if(line[1] instanceof Error) {
objectLog = line[1].toString();
} else {
objectLog = (line[1] ? `<pre>
<code class="language-json">${JSON.stringify(line[1], null, 4)}</code>
</pre>` : '');
}
return `<h3>${line[0]}</h3>` + objectLog + '<hr/>';
}).join('');
const codeBlocks = document.querySelectorAll('pre code');
codeBlocks.forEach((block) => {
hljs.highlightBlock(block);
});
console.log(rest);
}