As the title says, I updated the bot a day or so ago, so you can chat with it in the comments. It should now also support context, meaning it knows the whole comment chain. And you don’t have to tag it if you’re replying to it.

  • Rikudou_Sage@lemmings.worldOP
    link
    fedilink
    arrow-up
    5
    ·
    2 months ago

    They don’t, that’s actually my implementation, I had to add custom functions so it can retrieve live data.

    If you’re interested in the technical implementation: I provide list of functions that I implemented to the GPT model.

    When you ask for example for your most upvoted comment, it sees that I provided a function to get your most upvoted comment, so it tells me “call the function to get most upvoted comments with these parameters and tell me the result”.

    Afterwards the code calls the function, which gets the most upvoted comment and provides it back to the model and GPT then creates an answer using the result.

    Pretty much anything can be implemented like that, that’s how it can have access to live data.