@jdan.
elements
v5
Fork
1
2
3
4
5
6
export
const
elements
=
(
async
(
)
=>
{
const
response
=
await
api
(
@
patrickjm
.
gpt3
,
{
prompt
:
"List the elements of the periodic table, one per line"
,
}
)
;
return
response
.
split
(
"
\n
"
)
;
}
)
(
)
;
…
0
0
6