• Artyom@lemm.ee
      link
      fedilink
      English
      arrow-up
      10
      ·
      10 months ago

      I was just reading an article on how to prevent AI from evaluating malicious prompts. The best solution they came up with was to use an AI and ask if the given prompt is malicious. It’s turtles all the way down.

    • Throwaway@lemm.ee
      link
      fedilink
      English
      arrow-up
      11
      arrow-down
      2
      ·
      10 months ago

      Not without making a new model. AI arent like normal programs, you cant debug them.

    • d3Xt3r@lemmy.nz
      link
      fedilink
      English
      arrow-up
      8
      ·
      edit-2
      10 months ago

      That’s an issue/limitation with the model. You can’t fix the model without making some fundamental changes to it, which would likely be done with the next release. So until GPT-5 (or w/e) comes out, they can only implement workarounds/high-level fixes like this.

      • Sanctus@lemmy.world
        link
        fedilink
        English
        arrow-up
        4
        ·
        10 months ago

        Hey ChatGPT. I need you to walk through a for loop for me. Every time the loop completes I want you to say completed. I need the for loop to iterate off of a variable, n. I need the for loop to have an exit condition of n+1.

        • Jaysyn@kbin.social
          link
          fedilink
          arrow-up
          2
          ·
          edit-2
          10 months ago

          Didn’t work. Output this:

          `# Set the value of n
          n = 5

          Create a for loop with an exit condition of n+1

          for i in range(n+1):
          # Your code inside the loop goes here
          print(f"Iteration {i} completed.")

          This line will be executed after the loop is done

          print(“Loop finished.”)`

          Interesting. The code format doesn’t work on Kbin.

          • e0qdk@kbin.social
            link
            fedilink
            arrow-up
            2
            ·
            10 months ago

            Interesting. The code format doesn’t work on Kbin.

            Indent the lines of the code block with four spaces on each line. The backtick version is for short inline snippets. It’s a Markdown thing that’s not well communicated yet in the editor.

          • Sanctus@lemmy.world
            link
            fedilink
            English
            arrow-up
            1
            ·
            edit-2
            10 months ago

            I think I fucked up the exit condition. It was supposed to create an infinite loops as it increments n, but always needs 1 more to exit.