Update demo-conversation.ts

pull/26/head
simon3000 2022-12-06 16:35:57 +01:00
rodzic df94c61313
commit 8012354411
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 31FCC4A4E83CDA61
1 zmienionych plików z 13 dodań i 3 usunięć

Wyświetl plik

@ -26,7 +26,7 @@ async function main() {
console.log(response)
const prompt2 = 'Continue'
const prompt2 = 'Did they made OpenGPT?'
console.log(
await oraPromise(conversation.sendMessage(prompt2), {
@ -34,9 +34,19 @@ async function main() {
})
)
const prompt3 = 'Who founded this institute?'
console.log(
await oraPromise(conversation.sendMessage(prompt2), {
text: prompt2
await oraPromise(conversation.sendMessage(prompt3), {
text: prompt3
})
)
const prompt4 = 'Who is that?'
console.log(
await oraPromise(conversation.sendMessage(prompt4), {
text: prompt4
})
)
}