2023-02-13 05:36:42 +00:00
|
|
|
import dotenv from 'dotenv-safe'
|
|
|
|
import { oraPromise } from 'ora'
|
|
|
|
|
2023-02-19 07:56:19 +00:00
|
|
|
import { ChatGPTUnofficialProxyAPI } from '../src'
|
2023-02-13 05:36:42 +00:00
|
|
|
|
|
|
|
dotenv.config()
|
|
|
|
|
|
|
|
/**
|
2023-02-19 07:56:19 +00:00
|
|
|
* Demo for testing conversation support using a reverse proxy which provides
|
|
|
|
* access to the unofficial ChatGPT API.
|
2023-02-13 05:36:42 +00:00
|
|
|
*
|
|
|
|
* ```
|
|
|
|
* npx tsx demos/demo-reverse-proxy.ts
|
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
async function main() {
|
2023-02-14 06:18:21 +00:00
|
|
|
// WARNING: this method will expose your access token to a third-party. Please be
|
|
|
|
// aware of the risks before using this method.
|
2023-02-19 07:56:19 +00:00
|
|
|
const api = new ChatGPTUnofficialProxyAPI({
|
|
|
|
// optionally override the default reverse proxy URL (or use one of your own...)
|
|
|
|
// apiReverseProxyUrl: 'https://chat.duti.tech/api/conversation',
|
|
|
|
// apiReverseProxyUrl: 'https://gpt.pawan.krd/backend-api/conversation',
|
2023-02-14 06:18:21 +00:00
|
|
|
|
2023-02-19 07:56:19 +00:00
|
|
|
accessToken: process.env.OPENAI_ACCESS_TOKEN,
|
2023-02-13 05:36:42 +00:00
|
|
|
debug: false
|
|
|
|
})
|
|
|
|
|
|
|
|
const prompt = 'Write a poem about cats.'
|
|
|
|
|
|
|
|
let res = await oraPromise(api.sendMessage(prompt), {
|
|
|
|
text: prompt
|
|
|
|
})
|
|
|
|
|
|
|
|
console.log('\n' + res.text + '\n')
|
|
|
|
|
|
|
|
const prompt2 = 'Can you make it cuter and shorter?'
|
|
|
|
|
|
|
|
res = await oraPromise(
|
|
|
|
api.sendMessage(prompt2, {
|
|
|
|
conversationId: res.conversationId,
|
|
|
|
parentMessageId: res.id
|
|
|
|
}),
|
|
|
|
{
|
|
|
|
text: prompt2
|
|
|
|
}
|
|
|
|
)
|
|
|
|
console.log('\n' + res.text + '\n')
|
|
|
|
|
|
|
|
const prompt3 = 'Now write it in French.'
|
|
|
|
|
|
|
|
res = await oraPromise(
|
|
|
|
api.sendMessage(prompt3, {
|
|
|
|
conversationId: res.conversationId,
|
|
|
|
parentMessageId: res.id
|
|
|
|
}),
|
|
|
|
{
|
|
|
|
text: prompt3
|
|
|
|
}
|
|
|
|
)
|
|
|
|
console.log('\n' + res.text + '\n')
|
|
|
|
|
|
|
|
const prompt4 = 'What were we talking about again?'
|
|
|
|
|
|
|
|
res = await oraPromise(
|
|
|
|
api.sendMessage(prompt4, {
|
|
|
|
conversationId: res.conversationId,
|
|
|
|
parentMessageId: res.id
|
|
|
|
}),
|
|
|
|
{
|
|
|
|
text: prompt4
|
|
|
|
}
|
|
|
|
)
|
|
|
|
console.log('\n' + res.text + '\n')
|
|
|
|
}
|
|
|
|
|
|
|
|
main().catch((err) => {
|
|
|
|
console.error(err)
|
|
|
|
process.exit(1)
|
|
|
|
})
|