2022-12-05 05:13:36 +00:00
|
|
|
import dotenv from 'dotenv-safe'
|
2022-12-05 07:09:24 +00:00
|
|
|
import { oraPromise } from 'ora'
|
2022-12-02 23:43:59 +00:00
|
|
|
|
2022-12-15 04:41:43 +00:00
|
|
|
import { ChatGPTAPIBrowser } from '../src'
|
2022-12-02 23:43:59 +00:00
|
|
|
|
2022-12-05 05:13:36 +00:00
|
|
|
dotenv.config()
|
|
|
|
|
2022-12-02 23:43:59 +00:00
|
|
|
/**
|
2022-12-06 22:13:11 +00:00
|
|
|
* Demo CLI for testing basic functionality.
|
2022-12-05 23:25:40 +00:00
|
|
|
*
|
|
|
|
* ```
|
2022-12-15 07:25:38 +00:00
|
|
|
* npx tsx demos/demo.ts
|
2022-12-05 23:25:40 +00:00
|
|
|
* ```
|
2022-12-02 23:43:59 +00:00
|
|
|
*/
|
|
|
|
async function main() {
|
2022-12-12 23:23:36 +00:00
|
|
|
const email = process.env.OPENAI_EMAIL
|
|
|
|
const password = process.env.OPENAI_PASSWORD
|
2022-12-12 11:28:53 +00:00
|
|
|
|
2022-12-16 06:28:30 +00:00
|
|
|
const api = new ChatGPTAPIBrowser({
|
|
|
|
email,
|
|
|
|
password,
|
|
|
|
debug: false,
|
|
|
|
minimize: true
|
|
|
|
})
|
2022-12-17 04:48:42 +00:00
|
|
|
await api.initSession()
|
2022-12-02 23:43:59 +00:00
|
|
|
|
2022-12-05 07:09:24 +00:00
|
|
|
const prompt =
|
2022-12-02 23:43:59 +00:00
|
|
|
'Write a python version of bubble sort. Do not include example usage.'
|
2022-12-05 07:09:24 +00:00
|
|
|
|
2022-12-17 04:48:42 +00:00
|
|
|
const res = await oraPromise(api.sendMessage(prompt), {
|
2022-12-05 07:09:24 +00:00
|
|
|
text: prompt
|
|
|
|
})
|
2022-12-17 04:48:42 +00:00
|
|
|
console.log(res.response)
|
2022-12-03 00:09:45 +00:00
|
|
|
|
2022-12-17 04:48:42 +00:00
|
|
|
// close the browser at the end
|
|
|
|
await api.closeSession()
|
2022-12-02 23:43:59 +00:00
|
|
|
}
|
|
|
|
|
2022-12-17 04:48:42 +00:00
|
|
|
main().catch((err) => {
|
|
|
|
console.error(err)
|
|
|
|
process.exit(1)
|
|
|
|
})
|