• 0 Posts
  • 20 Comments
Joined 1 year ago
cake
Cake day: June 30th, 2023

help-circle
  • I don’t agree with any of the religious drivers in the scenario, and I definitely don’t agree with targeting children at all, but this is also retaliation for having their land and homes stolen and decimated for decades. You can’t paint an animal into a corner and not expect it to bite you. We’re talking about an army backed by the country with the biggest military budget in the world, vs people that don’t even have a roof over their heads or crops because the aforementioned army has forcefully taken them away. The only outcome of that kind of scenario is going to be desperation and violence.

    So if they’re considered the only terrorists in this scenario, they were forced into that role. These 2 sides could simply share the land like sane people, but religion has yet again become the wedge.




  • Don’t mind at all! Yeah, it does a ton of the work behind the scenes. I essentially have a prompt I spent quite a bit of time iterating on. Then from there, what the user types gets sent bundled in with my prompt bootstrap. So it reduces the work considerably for the user and dials it in.

    Edit: adding some more context/opinions.

    I think the error that a lot of tools make is that they don’t spend enough time shaping their instructions for the AI. Sure, you can offload a lot of the work to it, but you have to write your own guard rails and instructions. You can tell it things like you would a human, and it will sometimes even fill in the gaps.

    For example, I asked it to give me a data structure back that included an optional “title”. I found that if you left the title blank, ChatGPT took it upon itself to generate a title for you based on the content it wrote.

    A lot of the things I got it to do took time and a ton of test iterations. I was even able to give it a list of exactly how it should structure the content it gave back. Things that I would otherwise do on the programming side, I was able to simply instruct ChatGPT to handle instead.



  • I’ve been building a tool that uses ChatGPT behind the scenes and have found that that’s just part of the process of building a prompt and getting the results you want. It also depends on which chat model is being used. If you’re super vague, it’s going to give you rubbish every time. If you go back and forth with it though, you can keep whittling it down to give you better material. If you’re generating content, you can even tell it what format and structure to give the information back in (I learned how to make it give me JSON and markdown only).

    Additionally, you can give ChatGPT a description of what it’s role is alongside the prompt, if you’re using the API and have control of that kind of thing. I’ve found that can help shape the responses up nicely right out of the box.

    ChatGPT is very, very much a “your mileage may vary” tool. It needs to be setup well at the start, but so many companies have haphazardly jumped on using it and they haven’t put in enough work prepping it.