wow i forgot to loop it.
This commit is contained in:
parent
bf3e13c212
commit
f3977438cb
1 changed files with 12 additions and 10 deletions
22
index.mjs
22
index.mjs
|
@ -244,16 +244,18 @@ async function learningLoop() {
|
|||
}
|
||||
|
||||
async function talkLoop() {
|
||||
let q = await ask(`To ${modelID}: `)
|
||||
userAGIInput += `USER: ${q}`;
|
||||
let a = await ollama.chat({
|
||||
model: `${modelID}`,
|
||||
messages: [{ role: 'user', content: `${q}` }],
|
||||
})
|
||||
userAGIInput += `AI: ${a}`;
|
||||
console.log(`${a}`)
|
||||
generateModelfile(contexts)
|
||||
return [q, a]
|
||||
while (true) {
|
||||
let q = await ask(`To ${modelID}: `)
|
||||
userAGIInput += `USER: ${q}`;
|
||||
let a = await ollama.chat({
|
||||
model: `${modelID}`,
|
||||
messages: [{ role: 'user', content: `${q}` }],
|
||||
})
|
||||
userAGIInput += `AI: ${a}`;
|
||||
console.log(`${a}`)
|
||||
generateModelfile(contexts)
|
||||
return [q, a]
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue