-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocugen-gpt3.py
44 lines (38 loc) · 1.03 KB
/
docugen-gpt3.py
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
import openai
import yaml
from yaml import CLoader, CDumper
import os
file_path = os.path.dirname(os.path.realpath(__file__))
with open(f"{file_path}/config.yaml", "r") as file:
config = yaml.load(file, Loader=CLoader)
openai.api_key = config['OPENAI_API_KEY']
prompt = """Write example code that uses this function:
const mineBlock = async (data) => {
if (current_transactions.length != BLOCK_SIZE) return;
console.log("Mining block.")
let x = 5;
let y = 0;
while (true) {
let valid = false;
let val = await digestTxt(`${data}${x*y}`);
for (let c = 0; c < POW_DIFFICULTY; c++) {
res = parseInt(val[val.length - (c+1)]) ?? 100;
if (!(res == 0)) { // check if res character is acceptable
valid = false;
break;
} else {
valid = true;
}
}
if (!valid) {
y += 1;
} else {
console.log(res)
console.log(`Done.\nNonce: ${y}\nHash: ${val}`)
return {val, y};
}
}
}
"""
res = openai.Completion.create(engine="davinci", prompt=prompt)
print(res)