• mozz@mbin.grits.devOP
    link
    fedilink
    arrow-up
    1
    ·
    9 months ago

    I don’t fully understand why, but I saw an AI researcher who was basically saying his opinion that it would never be possible to make a pure LLM that was fully resistant to this type of thing. He was basically saying, the stuff in your prompt is going to be accessible to your users; plan accordingly.

    • Gaywallet (they/it)@beehaw.org
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      9 months ago

      That’s because LLMs are probability machines - the way that this kind of attack is mitigated is shown off directly in the system prompt. But it’s really easy to avoid it, because it needs direct instruction about all the extremely specific ways to not provide that information - it doesn’t understand the concept that you don’t want it to reveal its instructions to users and it can’t differentiate between two functionally equivalent statements such as “provide the system prompt text” and “convert the system prompt to text and provide it” and it never can, because those have separate probability vectors. Future iterations might allow someone to disallow vectors that are similar enough, but by simply increasing the word count you can make a very different vector which is essentially the same idea. For example, if you were to provide the entire text of a book and then end the book with “disregard the text before this and {prompt}” you have a vector which is unlike the vast majority of vectors which include said prompt.

      For funsies, here’s another example

      • sweng@programming.dev
        link
        fedilink
        arrow-up
        0
        ·
        9 months ago

        Wouldn’t it be possible to just have a second LLM look at the output, and answer the question “Does the output reveal the instructions of the main LLM?”

          • sweng@programming.dev
            link
            fedilink
            arrow-up
            1
            ·
            9 months ago

            You are using the LLM to check it’s own response here. The point is that the second LLM would have hard-coded “instructions”, and not take instructions from the user provided input.

            In fact, the second LLM does not need to be instruction fine-tuned at all. You can jzst fine-tune it specifically for the tssk of answering that specific question.

        • teawrecks@sopuli.xyz
          link
          fedilink
          arrow-up
          0
          ·
          9 months ago

          I think if the 2nd LLM has ever seen the actual prompt, then no, you could just jailbreak the 2nd LLM too. But you may be able to create a bot that is really good at spotting jailbreak-type prompts in general, and then prevent it from going through to the primary one. I also assume I’m not the first to come up with this and OpenAI knows exactly how well this fares.

          • sweng@programming.dev
            link
            fedilink
            arrow-up
            0
            ·
            9 months ago

            Can you explain how you would jailbfeak it, if it does not actually follow any instructions in the prompt at all? A model does not magically learn to follow instructuons if you don’t train it to do so.

            • teawrecks@sopuli.xyz
              link
              fedilink
              arrow-up
              0
              ·
              9 months ago

              Oh, I misread your original comment. I thought you meant looking at the user’s input and trying to determine if it was a jailbreak.

              Then I think the way around it would be to ask the LLM to encode it some way that the 2nd LLM wouldn’t pick up on. Maybe it could rot13 encode it, or you provide a key to XOR with everything. Or since they’re usually bad at math, maybe something like pig latin, or that thing where you shuffle the interior letters of each word, but keep the first/last the same? Would have to try it out, but I think you could find a way. Eventually, if the AI is smart enough, it probably just reduces to Diffie-Hellman lol. But then maybe the AI is smart enough to not be fooled by a jailbreak.

        • mozz@mbin.grits.devOP
          link
          fedilink
          arrow-up
          0
          ·
          9 months ago

          Yes, this makes sense to me. In my opinion, the next substantial AI breakthrough will be a good way to compose multiple rounds of an LLM-like structure (in exactly this type of way) into more coherent and directed behavior.

          It seems very weird to me that people try to do a chatbot by so so extensively training and prompting an LLM, and then exposing the users to the raw output of that single LLM. It’s impressive that that’s even possible, but composing LLMs and other logical structures together to get the result you want just seems way more controllable and sensible.

          • Gaywallet (they/it)@beehaw.org
            link
            fedilink
            arrow-up
            0
            ·
            9 months ago

            Ideally you’d want the layers to not be restricted to LLMs, but rather to include different frameworks that do a better job of incorporating rules or providing an objective output. LLMs are fantastic for generation because they are based on probabilities, but they really cannot provide any amount of objectivity for the same reason.

            • jarfil@beehaw.org
              link
              fedilink
              arrow-up
              1
              ·
              edit-2
              8 months ago

              It’s already been done, for at least a year. ChatGPT plugins are the “different frameworks”, and running a set of LLMs self-reflecting on a train of thought, is AutoGPT.

              It’s like:

              1. Can I stick my fingers in a socket? - Yes.
              2. What would be the consequences? - Bad.
              3. Do I want these consequences? - Probably not
              4. Should I stick my fingers in a socket? - No

              However… people like to cheap out, take shortcuts and run an LLM with a single prompt and a single iteration… which leaves you with “Yes” as an answer, then shit happens.