[–] 1 point 2 weeks ago

I still remember when it was so obsessed with Castellanos for some reason, writing the instruction to exclude the name won't work you have to specify the characters name. No hate to the Castellanos out there but it was so irritating and forced me to create a name gen with thousands of names just to get rid of it.

  • source
  • [–] 1 point 10 months ago (8 children)

    Did you also change the model? I asked the AI ​​which model it was, and it said Claude 3, yesterday DeepSeek-R1, sometimes GPT-4. I'm kinda confused. Anyway, thanks for the hard work!

  • source
  •  

    I'm just wondering about the exact version of Llama used for the plugin and if the model is being upgraded regularly. Is it still using the 2.x or has it been upgraded to 3.x or even 4? I believe the devs are actively working behind the scene and it would be very helpful if there's a bit of additional notes in the plugin page such as current version, changelogs, etc.

    [–] [S] 1 point 2 years ago* (last edited 2 years ago) (1 child)

    Sorry for the late response, unfortunately, I'm just started learning coding recently, especially JS, I might need to read a bit more about this lol thanks for the link!

    EDIT: Just wanted to let you know that I've figured out a solution thanks to the AI code helper, it basically wrote the similar function:

    // Function to load data from local storage when the page loads
      function loadData() {
        userInputEl.value = localStorage.userInput || ""; // Load user input
        aiOutputEl.value = localStorage.aiOutput || ""; // Load AI output
      }
    
      // Function to save data to local storage whenever there's an input change
      function saveData() {
        localStorage.userInput = userInputEl.value; // Save user input
        localStorage.aiOutput = aiOutputEl.value; // Save AI output
      }
    
    window.onload = loadData;
    

    And just simply put the oninput="saveData() into both input and output elements.

  • source
  • parent
  • context
  • [–] [S] 1 point 2 years ago* (last edited 2 years ago)

    I’m just making random generators atm, trying to figure out how it works for later use since I’m not really active in the platform, but I’ve tried putting the output alongside with the @inputs to the plugin code like this: [remember(root, "@inputs,output")] and got an error message like this:

    It appears that you've got a mismatch in your opening and closing square brackets. For each opening square bracket, there should be a closing one. If you'd like to use a literal square bracket (i.e. you want to actually display one, rather than using them to output a random list item, then you need to put a "backslash" before it like "[ ... ]". Here's the text that seems to be causing the error:

    It seems the plugin is currently not supporting AI output text, also, thanks for the output suggestion!

    EDIT: I think I've figured out the solutions for both of my problems thanks to AI code helper 👍

  • source
  • parent
  • context
  •  

    So, I want the make generator to remember user inputs and the latest generated output using the remember plugin, it works on user input but not for the output. I know there's a solution for this since generators like AI Chat can remember the chat logs without problem but I'm too dumb to understand the code lol

    Also, how can I prevent the AI to automatically generate output on first load? I'm using the firstload = true tingy but I want to make it look cleaner when the generator loads since it 's displaying the [firstLoad ? "" : output] for a split second, is there any other method for this?