chatgpt-api/demos/demo.ts

43 wiersze
800 B
TypeScript
Czysty Zwykły widok Historia

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
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
/**
* 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() {
const email = process.env.OPENAI_EMAIL
const password = process.env.OPENAI_PASSWORD
const api = new ChatGPTAPIBrowser({
email,
password,
debug: false,
minimize: true
})
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
const res = await oraPromise(api.sendMessage(prompt), {
2022-12-05 07:09:24 +00:00
text: prompt
})
console.log(res.response)
2022-12-03 00:09:45 +00:00
// close the browser at the end
await api.closeSession()
2022-12-02 23:43:59 +00:00
}
main().catch((err) => {
console.error(err)
process.exit(1)
})