finish up....

This commit is contained in:
The Ghost of FOSS' Past 2024-10-02 15:55:09 -05:00
parent 979a393c2c
commit e2d3dacd5d
2 changed files with 4 additions and 3 deletions

View file

@ -35,7 +35,7 @@ function ask(q) {
}
// Function to run the publishing commands
async function runPublishCommands(sys) {
async function runPublishCommands() {
try {
// Execute the 'ollama create' command
const createCommand = `ollama create ${modelID} -f ${modelfilePath}`;
@ -137,11 +137,11 @@ ${c}
function createUserContextPart(c) {
return `
***USER CHATS FOR EXTRA KNOWLEDGE BEGIN***
**CHAT INTERACTION FOR EXTRA KNOWLEDGE BEGIN***
${c}
***USER CHATS FOR EXTRA KNOWLEDGE END***
***CHAT INTERACTION FOR EXTRA KNOWLEDGE END***
`
}
@ -249,6 +249,7 @@ async function talkLoop() {
userAGIInput += `AI: ${a.message.content}`;
console.log(`${a.message.content}`)
generateModelfile(contexts)
runPublishCommands()
}
}

0
start.sh Normal file → Executable file
View file