this post was submitted on 16 May 2024
39 points (93.3% liked)

ChatGPT

8624 readers
2 users here now

Unofficial ChatGPT community to discuss anything ChatGPT

founded 1 year ago
MODERATORS
 

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.

you are viewing a single comment's thread
view the rest of the comments
[–] 65gmexl3 2 points 1 month ago (2 children)

I'm mindblown how it can retrieve the posts and/or user information. But also worried that OpenAI has access to Lemmy posts.

[–] [email protected] 11 points 1 month ago

But also worried that OpenAI has access to Lemmy posts.

They have always had access to Lemmy posts.

[–] [email protected] 5 points 1 month 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.