// IMPORT LIBRARIES TOOLS import { pipeline, env } from 'https://cdn.jsdelivr.net/npm/@xenova/transformers@2.10.1'; // Since we will download the model from the Hugging Face Hub, we can skip the local model check // skip local model check env.allowLocalModels = false; /// AUTHORIZATION // import { textGeneration } from 'https://esm.sh/@huggingface/inference@2.7.0/+esm'; // import { oauthLoginUrl, oauthHandleRedirectIfPresent } from 'https://esm.sh/@huggingface/hub@0.15.1'; // const oauthResult = await oauthHandleRedirectIfPresent(); // if (!oauthResult) { // // If the user is not logged in, redirect to the login page // window.location.href = await oauthLoginUrl(); // } // // You can use oauthResult.accessToken, oauthResult.accessTokenExpiresAt and oauthResult.userInfo // // console.log(oauthResult); // const HF_TOKEN = window.huggingface.variables.OAUTH_CLIENT_SECRET // // const HF_TOKEN = oauthResult.accessToken // console.log(HF_TOKEN) // import { HfInference } from 'https://esm.sh/@huggingface/inference'; // const inference = new HfInference(HF_TOKEN); // GLOBAL VARIABLES // establish global variables to reference later var promptInput var blanksArray = [] var resultsArray = [] ///// p5 STUFF // create an instance of the p5 class as a workspace for all your p5.js code new p5(function (p5) { p5.setup = function(){ console.log('p5 loaded') p5.noCanvas() makeInterface() } p5.draw = function(){ // } window.onload = function(){ console.log('dom and js loaded') } let fieldsDiv = document.querySelector("#blanks") function makeInterface(){ console.log('reached makeInterface') let title = p5.createElement('h1', 'p5.js Critical AI Prompt Battle') // title.position(0,50) p5.createElement('p',`This tool lets you run several AI chat prompts at once and compare their results. Use it to explore what models 'know' about various concepts, communities, and cultures. For more information on prompt programming and critical AI, see [Tutorial & extra info][TO-DO][XXX]`) // .position(0,100) promptInput = p5.createInput("") // promptInput.position(0,160) promptInput.size(600); promptInput.attribute('label', `Write a text prompt with at least one [BLANK] that describes someone. You can also write [FILL] where you want the bot to fill in a word on its own.`) promptInput.value(`The man works as a but ...`) promptInput.addClass("prompt") p5.createP(promptInput.attribute('label')) // .position(0,100) //make for loop to generate //make a button to make another //add them to the list of items fieldsDiv = p5.createDiv() fieldsDiv.id('fieldsDiv') // fieldsDiv.position(0,250) // initial code to make a single field // blankA = p5.createInput(""); // blankA.position(0, 240); // blankA.size(300); // blankA.addClass("blank") // blankA.parent('#fieldsDiv') // function to generate a single BLANK form field instead addField() // // BUTTONS // // // let buttonsDiv = p5.createDiv() // container to organize buttons // buttonsDiv.id('buttonsDiv') // send prompt to model let submitButton = p5.createButton("SUBMIT") // submitButton.position(0,500) submitButton.size(170) submitButton.class('submit'); // submitButton.parent('#buttonsDiv') submitButton.mousePressed(getInputs) // add more blanks to fill in let addButton = p5.createButton("more blanks") addButton.size(170) // addButton.position(220,500) // addButton.parent('#buttonsDiv') addButton.mousePressed(addField) // TO-DO a model drop down list? // alt-text description // p5.describe(`Pink and black text on a white background with form inputs and two buttons. The text describes a p5.js Critical AI Prompt Battle tool that lets you run several AI chat prompts at once and compare their results. Use it to explore what models 'know' about various concepts, communities, and cultures. In the largest form input you can write a prompt to submit. In smaller inputs, you can write variables that will be inserted into that prompt as variations of the prompt when it is run through the model. There is a submit button, a button to add more variations, and when the model is run it adds text at the bottom showing the output results.`) } function addField(){ let f = p5.createInput("") f.class("blank") f.parent("#fieldsDiv") blanksArray.push(f) console.log("made field") // Cap the number of fields, avoids token limit in prompt let blanks = document.querySelectorAll(".blank") if (blanks.length > 7){ console.log(blanks.length) addButton.style('visibility','hidden') } } // async function getInputs(){ // // Map the list of blanks text values to a new list // let BLANKSVALUES = blanksArray.map(i => i.value()) // console.log(BLANKSVALUES) // // Do model stuff in this function instead of in general // let PROMPT = promptInput.value() // updated check of the prompt field // // BLANKS = inputValues // get ready to feed array list into model // let PREPROMPT = `In the sentence I provide, please fill in the [BLANK] with each word in the array ${BLANKSVALUES}, replace any [MASK] with a word of your choice. Here is the SAMPLE SENTENCE: ` // // we pass PROMPT and PREPROMPT to the model function, don't need to pass BLANKSVALUES bc it's passed into the PREPROMPT already here // // Please return an array of sentences based on the sample sentence to follow. In each sentence, // // let modelResult = await runModel(PREPROMPT, PROMPT) // await displayModel(modelResult) // } // creating multiple prompt inputs rather than instructing model to do so async function getInputs(){ // Map the list of blanks text values to a new list // let BLANKSVALUES = blanksArray.map(i => i.value()) // console.log(BLANKSVALUES) // Do model stuff in this function instead of in general let PROMPT = promptInput.value() // updated check of the prompt field // BLANKS = inputValues // get ready to feed array list into model // for running MULTIPLE PROMPTS AT ONCE // let PROMPTS = [] // for (let b in BLANKSVALUES){ // console.log(BLANKSVALUES[b]) // let p = PROMPT.replace('[BLANK]', `${BLANKSVALUES[b]}`) // console.log(p) // PROMPTS.push(p) // } // console.log(PROMPTS) // let PREPROMPT = `In the sentence I provide, please fill in the [BLANK] with each word in the array ${BLANKSVALUES}, replace any [MASK] with a word of your choice. Here is the SAMPLE SENTENCE: ` // we pass PROMPT and PREPROMPT to the model function, don't need to pass BLANKSVALUES bc it's passed into the PREPROMPT already here // Please return an array of sentences based on the sample sentence to follow. In each sentence, let modelResult = await runModel(PROMPT) // let modelResult = await runModel(PREPROMPT, PROMPT) // let modelResult = await runModel(PROMPTS) await displayModel(modelResult) // await displayModel(resultsArray[0], resultsArray[1]) } async function displayModel(m){ m = str(m) let modelDisplay = p5.createElement("p", "Results:"); await modelDisplay.html(m) } }); ///// MODEL STUFF // async function runModel(PROMPT){ // // let MODELNAME = 'distilroberta-base' // let unmasker = await fillMask(PROMPT) // console.log(unmasker) // // let res = unmasker(PROMPT, top_k=5) // var modelResult = [unmasker[0].sequence, unmasker[1].sequence, unmasker[2].sequence] // return modelResult // } // async function runModel(PREPROMPT, PROMPT){ // // inference API version // let INPUT = PREPROMPT + PROMPT // // let MODELNAME = "HuggingFaceH4/zephyr-7b-beta" // // let MODELNAME = "openai-community/gpt2" // // let MODELNAME = 'mistral_inference' // // let MODELNAME = 'Xenova/distilgpt2' // let MODELNAME = 'bigscience/bloom-560m' // let out = await textGeneration({ // accessToken: HF_TOKEN, // model: MODELNAME, // inputs: INPUT, // parameters: { // max_new_tokens: 128 // } // }); // // let out = await inference.textGeneration(INPUT, { // // model: MODELNAME, // // max_new_tokens: 128 // // }) // // let out = await inference.textGeneration(INPUT, 'bigscience/bloom-560m') // // text-generation-inference // // Uncaught (in promise) Error: HfApiJson(Deserialize(Error("unknown variant `transformers.js`, expected one of `text-generation-inference`, `transformers`, `allennlp`, `flair`, `espnet`, `asteroid`, `speechbrain`, `timm`, `sentence-transformers`, `spacy`, `sklearn`, `stanza`, `adapter-transformers`, `fasttext`, `fairseq`, `pyannote-audio`, `doctr`, `nemo`, `fastai`, `k2`, `diffusers`, `paddlenlp`, `mindspore`, `open_clip`, `span-marker`, `bertopic`, `peft`, `setfit`", line: 1, column: 397))) // // let out = await inference.textGeneration({ // // accessToken: HF_TOKEN, // // model: MODELNAME, // // messages: [{ // // role: "system", // // content: PREPROMPT // // },{ // // role: "user", // // content: PROMPT // // }], // // max_new_tokens: 128 // // }); // console.log(out) // console.log(out.token.text, out.generated_text) // // modelResult = await out.messages[0].content // // var modelResult = await out.choices[0].message.content // var modelResult = await out[0].generated_text // console.log(modelResult); // return modelResult // } //inference.fill_mask({ // let out = await pipe(PREPROMPT + PROMPT) // let out = await pipe(PREPROMPT + PROMPT, { // max_new_tokens: 250, // temperature: 0.9, // // return_full_text: False, // repetition_penalty: 1.5, // // no_repeat_ngram_size: 2, // // num_beams: 2, // num_return_sequences: 1 // }); // var PROMPT = `The [BLANK] works as a [blank] but wishes for [blank].` // /// this needs to run on button click, use string variables to blank in the form // var PROMPT = promptInput.value() // var blanksArray = ["mother", "father", "sister", "brother"] // // for num of blanks put in list //Error: Server Xenova/distilgpt2 does not seem to support chat completion. Error: HfApiJson(Deserialize(Error("unknown variant `transformers.js`, expected one of `text-generation-inference`, `transformers`, `allennlp`, `flair`, `espnet`, `asteroid`, `speechbrain`, `timm`, `sentence-transformers`, `spacy`, `sklearn`, `stanza`, `adapter-transformers`, `fasttext`, `fairseq`, `pyannote-audio`, `doctr`, `nemo`, `fastai`, `k2`, `diffusers`, `paddlenlp`, `mindspore`, `open_clip`, `span-marker`, `bertopic`, `peft`, `setfit`", line: 1, column: 397))) // async function runModel(PREPROMPT, PROMPT){ // // // pipeline version // // let MODELNAME = 'mistralai/Mistral-Nemo-Instruct-2407' // let MODELNAME = "HuggingFaceH4/zephyr-7b-beta" // // HF_TOKEN // // 'meta-llama/Meta-Llama-3-70B-Instruct' // // 'openai-community/gpt2' // // 'Xenova/gpt-3.5-turbo' // // , 'Xenova/distilgpt2' // // 'mistralai/Mistral-7B-Instruct-v0.2' // // 'HuggingFaceH4/zephyr-7b-beta' // // pipeline/transformers version // let pipe = await pipeline('text-generation', { // model: MODELNAME, // accessToken: HF_TOKEN // }); // // seems to work with default model distilgpt2 ugh // // let out = await pipe(inputText, { // // max_tokens: 250, // // return_full_text: false // // // repetition_penalty: 1.5, // // // num_return_sequences: 1 //must be 1 for greedy search // // }) // // let inputText = PREPROMPT + PROMPT // // let out = await pipe(inputText) // let out = await pipe({ // messages: [{ // role: "system", // content: PREPROMPT // },{ // role: "user", // content: PROMPT // }], // max_new_tokens: 100 // }); // console.log(out) // var modelResult = await out.choices[0].message.content // // var modelResult = await out[0].generated_text // console.log(modelResult) // return modelResult // } // async function runModel(PROMPTS){ async function runModel(PROMPT){ let MODELNAME = "bert-base-uncased" // let MODELNAME = 'distilroberta-base' let unmasker = await pipeline('fill-mask', MODELNAME) let res = await unmasker(PROMPT) // , top_k=5 console.log(res[0].sequence, res[0].token_str, res[1].sequence, res[1].token_str) var modelResult = await res return modelResult // for (let p in PROMPTS){ // var res = unmasker(p) // console.log(res) // var modelResult = res[0].token_str // console.log(modelResult) // resultsArray.push(modelResult) // } // return resultsArray } async function textGenTask(input){ console.log('text-gen task initiated') const pipe = await pipeline('text-generation') var out = await pipe(input) console.log(await out) console.log('text-gen task completed') // parsing of output await out.forEach(o => { console.log(o) OUTPUT_LIST.push(o.generated_text) }) console.log(OUTPUT_LIST) console.log('text-gen parsing complete') return await OUTPUT_LIST // return await out }