chatgpt-api/demos/demo.ts

45 wiersze
791 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 { ChatGPTAPI, getOpenAIAuth } 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
*
* ```
* npx tsx src/demo.ts
* ```
2022-12-02 23:43:59 +00:00
*/
async function main() {
const email = process.env.EMAIL
const password = process.env.PASSWORD
const authInfo = await getOpenAIAuth({
email,
password
})
const api = new ChatGPTAPI({ ...authInfo })
2022-12-05 05:13:36 +00:00
await api.ensureAuth()
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 response = await oraPromise(api.sendMessage(prompt), {
text: prompt
})
2022-12-03 00:09:45 +00:00
2022-12-05 07:31:27 +00:00
return response
2022-12-02 23:43:59 +00:00
}
2022-12-05 05:13:36 +00:00
main()
.then((res) => {
console.log(res)
})
.catch((err) => {
console.error(err)
process.exit(1)
})