Update index.mjs

This commit is contained in:
Sam Sneed 2024-04-30 04:03:13 +00:00 committed by GitHub
parent f0c9179229
commit b5ba807c48
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,20 +2,43 @@ import readline from 'readline';
import Ollama from 'ollama-js-client';
import fs from 'fs';
let DEBUG_MODE = true
let DEBUG_MODE = true;
async function ollamaInteraction() {
const rl = await readline.createInterface({
input: process.stdin,
output: process.stdout
output: process.stdout,
});
function isUndefined(value) {
if (typeof value == undefined || value == null) {
return true;
} else {
return false;
}
}
function ifUndefinedReturnBlankStr(value) {
if (isUndefined(value)) {
return "";
} else {
return value;
}
}
function ifUndefinedReturnBlankFunction(value) {
if (isUndefined(value)) {
return Function();
} else {
return value;
}
}
function extractFunctionName(response) {
const match = response.match(/<functioncall>([^<]+)<\/functioncall>/);
return match ? match[1] : '';
}
function generateRandomString(length = 16) {
const characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
let result = "";
@ -25,21 +48,22 @@ async function ollamaInteraction() {
return result;
}
//INTERNAL FUNCTIONS MAGIC BEGIN
async function jitsi() {
const id = generateRandomString()
// INTERNAL FUNCTIONS MAGIC BEGIN
let internalFunctions = {
jitsi: function() {
const id = generateRandomString();
const jitsiURL = `https://meet.jit.si/${id}`;
console.log(jitsiURL);
return jitsiURL;
}
async function search(q) {
q = q.replaceAll(" ", "+")
const searchURL = `https://www.google.com/search?q=${q}&sca_upv=1`
},
search: function(q) {
q = q.replaceAll(" ", "+");
const searchURL = `https://www.google.com/search?q=${q}&sca_upv=1`;
console.log(searchURL);
return searchURL;
}
//END OF INTERNAL FUNCTIONS MAGIC
};
// END OF INTERNAL FUNCTIONS MAGIC
return new Promise(async (resolve) => {
rl.question("User: ", async (userInput) => {
@ -50,15 +74,14 @@ async function ollamaInteraction() {
url: "http://127.0.0.1:11434/api/",
}); // Ensure the model name is correct
const responsePreParse = await ollama.prompt(userInput)
const responsePreParse = await ollama.prompt(userInput);
const response = responsePreParse.response;
const functionName = extractFunctionName(response);
const responseWithoutFunctionCall = response.replace(/<functioncall>.*?<\/functioncall>/, '');
const functionName = extractFunctionName(response).replaceAll("\n", '');
const responseWithoutFunctionCall = await response.replace(/<functioncall>.*?<\/functioncall>/, '');
console.log(responseWithoutFunctionCall);
let contentToAppend = `<USER>: ${userInput}
<AI AGENT>: ${responseWithoutFunctionCall}`;
await fs.appendFile('journal.txt', contentToAppend, async (err) => {
@ -69,17 +92,16 @@ async function ollamaInteraction() {
}
});
if (DEBUG_MODE) {
console.log(`DEBUG: RUN ${functionName}`)
}
if (DEBUG_MODE) { console.log(`DEBUG: RUN ${functionName}`); }
eval(function() {
if (typeof functionName == 'undefined' || functionName == null) {
return "";
} else {
return functionName;
// Call the function by name if it exists in internalFunctions
try {
if (DEBUG_MODE) { console.log(`DEBUG: ${functionName} => internalFunctions[${(functionName)})];`) }
internalFunctions[functionName]();
console.log("OK")
} catch (err) {
if (DEBUG_MODE) { console.log(`Error: ${err}`) }
}
})
resolve(); // Resolve the promise after processing
});